/* ============================================================
   THE LASH Co. — stylesheet
   Palette: warm neutrals (cream, sand, taupe, mocha) + soft blush
   ============================================================ */

:root {
  --cream:      #F7F2EC;
  --sand:       #EFE6DC;
  --taupe:      #D8C7B6;
  --mocha:      #A98C73;
  --mocha-deep: #8A6F58;
  --espresso:   #4A3F36;
  --ink:        #3A322C;
  --blush:      #E7D3CA;
  --blush-deep: #CDA99B;
  --white:      #FFFFFF;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  --maxw: 1180px;
  --radius: 2px;
  --shadow: 0 18px 50px -28px rgba(74, 63, 54, 0.45);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

/* ---------- Shared section bits ---------- */
section { position: relative; }

.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; padding: 0 24px; }

.section__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--mocha);
  font-weight: 500;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.1;
  color: var(--espresso);
  margin-bottom: 18px;
}

.section__lead { color: #6f6358; font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn--solid {
  background: var(--mocha-deep);
  color: var(--cream);
  border-color: var(--mocha-deep);
}
.btn--solid:hover { background: var(--espresso); border-color: var(--espresso); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 242, 236, 0.7);
}
.btn--ghost:hover { background: rgba(247, 242, 236, 0.14); border-color: var(--cream); }

.btn--text {
  padding: 0;
  border: none;
  color: var(--mocha-deep);
  letter-spacing: 0.12em;
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--text:hover { color: var(--espresso); border-color: var(--mocha); }

.btn--full { width: 100%; text-align: center; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(247, 242, 236, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(168, 140, 115, 0.18);
}
.nav.scrolled .nav__inner { padding-top: 14px; padding-bottom: 14px; }

/* brand wordmark */
.nav__brand { display: flex; align-items: baseline; gap: 7px; line-height: 1; }
.nav__brand-the {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mocha);
}
.nav__brand-lash {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--espresso);
}
.nav__brand-co {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--mocha-deep);
}
/* keep wordmark readable over the hero image before scroll */
.nav:not(.scrolled) .nav__brand-the { color: rgba(247,242,236,0.85); }
.nav:not(.scrolled) .nav__brand-lash { color: var(--cream); }
.nav:not(.scrolled) .nav__brand-co { color: var(--blush); }

.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: color 0.3s var(--ease);
}
.nav:not(.scrolled) .nav__links a { color: rgba(247, 242, 236, 0.92); }
.nav__links a:hover { color: var(--mocha); }
.nav:not(.scrolled) .nav__links a:hover { color: var(--blush); }

.nav__cta {
  border: 1px solid currentColor;
  padding: 9px 22px !important;
}
.nav.scrolled .nav__cta { color: var(--mocha-deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease);
}
.nav.scrolled .nav__toggle span { background: var(--espresso); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(58,50,44,0.34) 0%, rgba(58,50,44,0.10) 52%, rgba(138,111,88,0) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  color: var(--cream);
}
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--blush);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero__sub {
  max-width: 460px;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(247, 242, 236, 0.9);
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   Trust strip
   ============================================================ */
.strip {
  background: var(--espresso);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 22px 24px;
}
.strip__item {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 300;
}
.strip__divider { width: 5px; height: 5px; border-radius: 50%; background: var(--mocha); }

/* ============================================================
   About
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 6vw, 90px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) 28px;
}
.about__media { position: relative; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about__media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--taupe);
  z-index: -1;
}
.about__text p { margin-bottom: 20px; color: #5e544b; }
.about__text .section__title { margin-bottom: 10px; }
.about__role {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mocha) !important;
  margin-bottom: 24px !important;
}

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--sand); padding: clamp(80px, 11vw, 140px) 0; }
.menu {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.menu__card {
  background: var(--cream);
  padding: 40px 38px;
  border: 1px solid rgba(168, 140, 115, 0.18);
}
.menu__cat {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
}
.menu__note { font-size: 0.86rem; color: var(--mocha-deep); font-style: italic; margin-bottom: 22px; }
.menu__list { list-style: none; }
.menu__list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(168, 140, 115, 0.14);
  font-size: 0.98rem;
}
.menu__list li:last-child { border-bottom: none; }
.menu__list em { font-style: italic; color: #8a7d70; font-size: 0.85rem; }
.menu__dots {
  flex: 1;
  border-bottom: 1px dotted var(--taupe);
  transform: translateY(-3px);
  min-width: 18px;
}
.menu__price {
  font-weight: 500;
  color: var(--mocha-deep);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.services__disclaimer {
  max-width: 660px;
  margin: 44px auto 0;
  padding: 0 28px;
  text-align: center;
  font-size: 0.84rem;
  color: #7c6f63;
  font-style: italic;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { padding: clamp(80px, 11vw, 140px) 0; }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery__item { overflow: hidden; margin: 0; position: relative; }
.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 16px;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-align: center;
  background: linear-gradient(to top, rgba(58,50,44,0.55), rgba(58,50,44,0));
  pointer-events: none;
}
.gallery__cta {
  text-align: center;
  margin-top: 40px;
  letter-spacing: 0.06em;
  color: #6f6358;
}
.gallery__cta a {
  color: var(--mocha-deep);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 2px;
  margin-left: 6px;
}
.gallery__cta a:hover { color: var(--espresso); }

/* ============================================================
   Booking
   ============================================================ */
.book { background: var(--blush); padding: clamp(80px, 11vw, 140px) 0; }
.book__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.book__intro p { color: #5e524a; }
.book__intro .section__title { margin-bottom: 20px; }
.book__contacts { list-style: none; margin-top: 36px; }
.book__contacts li { margin-bottom: 22px; }
.book__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mocha-deep);
  margin-bottom: 4px;
}
.book__contacts a, .book__contacts span { color: var(--espresso); font-size: 1.05rem; }
.book__contacts a:hover { color: var(--mocha-deep); }

/* form */
.book__form {
  background: var(--cream);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mocha-deep);
  margin-bottom: 8px;
}
.field__opt { text-transform: none; letter-spacing: 0; font-style: italic; color: #9c8f82; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mocha);
  box-shadow: 0 0 0 3px rgba(169, 140, 115, 0.15);
}
.field textarea { resize: vertical; }
.book__pay-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: #8a7d70;
  text-align: center;
  font-style: italic;
}
.book__success {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--sand);
  border: 1px solid var(--taupe);
  color: var(--espresso);
  font-size: 0.92rem;
  text-align: center;
}

/* ============================================================
   Contact / Location
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 460px;
}
.contact__info {
  background: var(--espresso);
  color: var(--sand);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__info .section__eyebrow { color: var(--blush-deep); }
.contact__info .section__title { color: var(--cream); }
.contact__block { margin-top: 30px; }
.contact__block h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  margin-bottom: 8px;
}
.contact__block p { color: rgba(239, 230, 220, 0.9); font-weight: 300; }
.contact__block a { color: rgba(239, 230, 220, 0.9); border-bottom: 1px solid rgba(205,169,155,0.4); }
.contact__block a:hover { color: var(--white); }
.contact__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; filter: grayscale(0.25); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--sand);
  text-align: center;
  padding: 64px 28px 48px;
}
.footer__brand { display: flex; justify-content: center; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.footer__brand .nav__brand-the { color: var(--mocha); }
.footer__brand .nav__brand-lash { color: var(--cream); font-size: 1.7rem; }
.footer__brand .nav__brand-co { color: var(--blush-deep); }
.footer__tag { font-size: 0.92rem; color: rgba(239,230,220,0.7); margin-bottom: 26px; letter-spacing: 0.04em; }
.footer__links { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 30px; }
.footer__links a {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
  transition: color 0.3s var(--ease);
}
.footer__links a:hover { color: var(--blush-deep); }
.footer__copy { font-size: 0.74rem; color: rgba(239,230,220,0.45); letter-spacing: 0.08em; }

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin: 0 auto; }
  .about__media::after { inset: 14px -14px -14px 14px; }
  .book__inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact__map iframe { min-height: 340px; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 0 40px;
    background: var(--cream);
    box-shadow: -10px 0 40px -20px rgba(58,50,44,0.5);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a,
  .nav:not(.scrolled) .nav__links a { color: var(--espresso); font-size: 0.95rem; }
  .nav__cta { color: var(--mocha-deep) !important; }
  .nav__toggle { display: flex; }
  .nav:not(.scrolled) .nav__toggle span { background: var(--cream); }
  .nav.menu-open:not(.scrolled) .nav__toggle span { background: var(--espresso); }

  .menu { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .strip { gap: 14px; }
  .strip__divider { display: none; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 440px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; text-align: center; padding-left: 14px; padding-right: 14px; }
}
