/* ============================================================
   hello lash — styles
   Aesthetic: warm, sun-kissed editorial luxe on a white base.
   Palette: cream / sand / terracotta clay / espresso ink.
   ============================================================ */

:root {
  --white:     #ffffff;
  --cream:     #faf5ef;
  --sand:      #f0e6d9;
  --sand-deep: #e7d8c6;
  --clay:      #b85c38;
  --clay-deep: #984a2b;
  --blush:     #e9c7b8;
  --espresso:  #2c2420;
  --ink:       #1b1512;
  --muted:     #8a7a6c;
  --line:      rgba(44, 36, 32, 0.12);
  --line-soft: rgba(44, 36, 32, 0.07);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 100%;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --radius: 18px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--espresso);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

::selection { background: var(--clay); color: var(--cream); }

/* ── atmosphere: grain + warm vignette ─────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

/* ── shared layout ─────────────────────────────────────────── */
.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
}

.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--blush); }
.eyebrow__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clay);
  box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.15);
}
.eyebrow--light .eyebrow__dot { background: var(--blush); box-shadow: 0 0 0 4px rgba(233,199,184,0.18); }

.section__title {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.section__title em { color: var(--clay); }

.section__sub {
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 52ch;
}

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), box-shadow 0.4s var(--ease);
}
.btn:hover { transform: translateY(-3px); }

.btn--solid {
  background: var(--espresso);
  color: var(--cream);
  box-shadow: 0 10px 30px -12px rgba(28,21,18,0.6);
}
.btn--solid:hover { background: var(--clay); box-shadow: 0 16px 36px -12px rgba(184,92,56,0.55); }

.btn--ghost { color: var(--espresso); border-color: var(--line); background: transparent; }
.btn--ghost:hover { border-color: var(--clay); color: var(--clay-deep); }

.btn--cream { background: var(--cream); color: var(--ink); }
.btn--cream:hover { background: var(--white); }

.btn--outline-light { border-color: rgba(250,245,239,0.4); color: var(--cream); }
.btn--outline-light:hover { border-color: var(--cream); background: rgba(250,245,239,0.08); }

.link-arrow {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--clay-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
  padding-bottom: 2px;
}
.link-arrow:hover { border-color: var(--clay); }

/* ── photo treatment (unifies sample images) ───────────────── */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(1.02) sepia(0.16);
  transition: transform 0.9s var(--ease);
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(184,92,56,0.16), rgba(44,36,32,0.05) 55%, rgba(233,199,184,0.18));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.photo:hover img { transform: scale(1.05); }

/* ============================================================
   HEADER  (rendered by <site-header>)
   ============================================================ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
              padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.35rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px -20px rgba(28,21,18,0.5);
}
.site-header.is-scrolled .site-header__inner { padding-block: 0.85rem; }

.logo { display: inline-flex; align-items: center; }
.logo__type {
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  text-indent: 0.42em; /* balance the trailing letter-spacing */
  line-height: 1;
  color: var(--espresso);
}

.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav__links { display: flex; gap: 1.8rem; list-style: none; }
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--espresso);
  position: relative;
  padding: 0.3rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--clay);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover { color: var(--clay-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { padding: 0.7rem 1.3rem; font-size: 0.88rem; }

/* backdrop only exists on the mobile drawer */
.nav__backdrop { display: none; }

/* hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.nav__toggle span {
  width: 17px; height: 1.6px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* header sits over the hero image — light treatment */
.site-header .logo__type { color: var(--cream); }
.site-header .nav__links a { color: var(--cream); }
.site-header .nav__links a:hover { color: var(--blush); }
.site-header .nav__toggle { border-color: rgba(250,245,239,0.45); }
.site-header .nav__toggle span { background: var(--cream); }

/* ============================================================
   HERO  (full-bleed image)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(8rem, 16vh, 12rem) var(--pad) clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}
/* background image fills the section */
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02) brightness(0.95) sepia(0.16);
}
/* scrim: darker at top (for header) and bottom (for copy) */
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(20,15,12,0.55) 0%,
    rgba(20,15,12,0.12) 24%,
    rgba(20,15,12,0.10) 50%,
    rgba(20,15,12,0.82) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: var(--cream);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 340;
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0.6rem 0 1.4rem;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(20,15,12,0.35);
}
.hero__title span { display: block; }
.hero__title em { color: var(--blush); }

.hero__lede {
  color: rgba(250,245,239,0.88);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ============================================================
   FOUNDER
   ============================================================ */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.founder__media {
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 640px;
  box-shadow: 0 40px 80px -44px rgba(28,21,18,0.4);
}
.founder__text {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 1.1rem;
}
.founder__text:first-of-type { margin-top: 1.3rem; }
.founder__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--espresso);
  margin-top: 0.8rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 70px -36px rgba(28,21,18,0.55);
}
.card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem 1.5rem 1.6rem;
  color: var(--cream);
  background: linear-gradient(
    to top,
    rgba(20,15,12,0.9) 0%,
    rgba(20,15,12,0.32) 42%,
    rgba(20,15,12,0.04) 70%,
    rgba(20,15,12,0.3) 100%
  );
}
.card__top { display: flex; align-items: flex-start; gap: 0.6rem; }
.card__price {
  margin-left: auto;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--cream);
  background: rgba(250,245,239,0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(250,245,239,0.22);
  white-space: nowrap;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: var(--cream);
}
.card p {
  color: rgba(250,245,239,0.82);
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 34ch;
}
.card__meta {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush);
}
.card__tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--blush);
  padding: 0.34rem 0.8rem;
  border-radius: 100px;
}
.card--feature { outline: 2px solid var(--clay); outline-offset: -2px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1.1rem;
}
.gallery__grid .photo { width: 100%; height: 100%; }
.g-1 { grid-row: span 2; }
.g-4 { grid-row: span 2; }
.g-5 { grid-column: span 2; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { text-align: center; }
.reviews .section__head { margin-inline: auto; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  text-align: left;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  border: 1px solid var(--line);
}
.review__stars { color: var(--clay); letter-spacing: 0.15em; margin-bottom: 1rem; }
.review p {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 360;
  margin-bottom: 1.5rem;
}
.review footer { display: flex; flex-direction: column; }
.review strong { font-weight: 600; }
.review span { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   BOOKING
   ============================================================ */
.booking { padding-top: 0; }
.booking__panel {
  position: relative;
  background:
    radial-gradient(120% 120% at 85% 0%, rgba(184,92,56,0.55), transparent 55%),
    var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
}
.booking__panel::before {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 50%; height: 120%;
  background: radial-gradient(circle, rgba(233,199,184,0.22), transparent 65%);
}
.booking__title {
  font-family: var(--font-display);
  font-weight: 360;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.booking__title em { color: var(--blush); }
.booking__sub { color: rgba(250,245,239,0.72); max-width: 40ch; margin-bottom: 2rem; }
.booking__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.booking__info {
  display: grid;
  gap: 1.6rem;
  align-content: center;
  position: relative;
}
.info-block h4 {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.5rem;
}
.info-block p { color: rgba(250,245,239,0.85); font-size: 0.98rem; line-height: 1.7; }
.info-block a:hover { color: var(--blush); }

/* ============================================================
   FOOTER  (rendered by <site-footer>)
   ============================================================ */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.site-footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(3.5rem, 6vw, 5rem) var(--pad) 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.site-footer__brand .logo { margin-bottom: 1.2rem; }
.site-footer__brand p { color: var(--muted); font-size: 0.96rem; max-width: 34ch; }
.foot-col h5 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 1.1rem;
}
.foot-col ul { list-style: none; display: grid; gap: 0.65rem; }
.foot-col a, .foot-col p { color: var(--muted); font-size: 0.94rem; }
.foot-col a { transition: color 0.25s var(--ease); }
.foot-col a:hover { color: var(--clay-deep); }

.site-footer__bar {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.6rem var(--pad);
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--muted);
}
.site-footer__bar .socials { display: flex; gap: 1.2rem; }
.site-footer__bar .socials a:hover { color: var(--clay-deep); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr 0.85fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  /* nav → mobile drawer */
  .nav__toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 6rem 2rem 2rem;
    transform: translateX(105%);
    transition: transform 0.5s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(28,21,18,0.4);
    z-index: 90;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__links { flex-direction: column; gap: 0; width: 100%; }
  .nav__links li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  /* drawer is cream → links go dark again */
  .site-header .nav__links a { display: block; padding: 1rem 0; font-size: 1.1rem; color: var(--espresso); }
  .site-header .nav__links a:hover { color: var(--clay-deep); }
  .nav__links a::after { display: none; }
  .nav__cta { margin-top: 1.5rem; width: 100%; }
  /* when open, the toggle sits over the cream drawer */
  .site-header .nav__toggle.is-open { border-color: var(--line); }
  .site-header .nav__toggle.is-open span { background: var(--espresso); }
  .nav__backdrop {
    display: block;
    position: fixed; inset: 0;
    background: rgba(28,21,18,0.4);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
    z-index: 80;
  }
  .nav__backdrop.is-open { opacity: 1; visibility: visible; }

  .cards { grid-template-columns: 1fr; }

  .founder { grid-template-columns: 1fr; }
  .founder__media { max-width: 460px; margin-inline: auto; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-5 { grid-column: span 2; }

  .booking__panel { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 460px) {
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-1, .g-4, .g-5 { grid-column: auto; grid-row: auto; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .booking__cta .btn, .hero__cta .btn { width: 100%; }
}
