/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --cream:   #faf6f1;
  --blush:   #f2ddd5;
  --rose:    #e8b4a8;
  --rosegold:#c9897a;
  --deep:    #7a4a3f;
  --charcoal:#2c2019;
  --white:   #ffffff;
  --gold:    #c8a97e;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', system-ui, sans-serif;

  --nav-h: 72px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ─── NOISE OVERLAY ──────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1000;
  opacity: .4;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,126,0.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 40px rgba(122,74,63,0.08); }

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
}
.nav-links a {
  color: var(--charcoal); opacity: .7;
  transition: opacity .2s, color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 100%;
  height: 1px; background: var(--rosegold);
  transition: right .3s ease;
}
.nav-links a:hover { opacity: 1; color: var(--deep); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--rosegold); color: var(--white);
  padding: .55rem 1.5rem; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--deep); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--charcoal); transition: transform .3s, opacity .3s;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid; grid-template-columns: 1fr 1fr;
  padding: clamp(3rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; right: -10%; top: 5%;
  width: 60vw; height: 90%;
  background: radial-gradient(ellipse 70% 80% at 60% 50%,
    rgba(242,221,213,0.6) 0%, rgba(232,180,168,0.3) 40%, transparent 70%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rosegold); margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: 1.05; color: var(--charcoal);
  margin-bottom: 1.6rem;
}
.hero h1 em { color: var(--rosegold); font-style: italic; }

.hero-sub {
  font-size: .95rem; line-height: 1.8; color: var(--charcoal);
  opacity: .65; max-width: 38ch; margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--rosegold); color: var(--white);
  padding: .9rem 2.2rem; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: 2px;
  transition: background .2s, transform .15s;
  font-family: var(--sans);
}
.btn-primary:hover { background: var(--deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--deep);
  padding: .9rem 2.2rem; font-size: .82rem;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--rosegold); cursor: pointer; border-radius: 2px;
  transition: background .2s, color .2s, transform .15s;
  font-family: var(--sans);
}
.btn-ghost:hover {
  background: var(--blush); transform: translateY(-2px);
}

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(200,169,126,0.25);
}
.stat-num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--deep); line-height: 1;
}
.stat-label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-top: .3rem; }

/* Hero visual */
.hero-visual {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 1rem; height: clamp(360px, 50vw, 580px);
}
.hero-img {
  border-radius: 4px; overflow: hidden;
  position: relative;
}
.hero-img:nth-child(1) { grid-row: 1 / 3; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: opacity 0.7s ease;
}
.hero-img img.fading { opacity: 0; }
.hero-img-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(250,246,241,0.85); backdrop-filter: blur(8px);
  padding: .35rem .8rem; border-radius: 2px;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--deep);
}
.hero-badge {
  position: absolute; bottom: .8rem; left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--blush);
  padding: .8rem 1.2rem; border-radius: 4px;
  box-shadow: 0 8px 40px rgba(122,74,63,0.12);
  text-align: center; white-space: nowrap; z-index: 3;
}
.hero-badge-label { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; opacity: .5; }
.hero-badge-val   { font-family: var(--serif); font-size: 1.1rem; color: var(--deep); margin-top: .2rem; }

/* ─── SECTION COMMONS ────────────────────────────────── */
section { padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem); }

.section-label {
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rosegold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .8rem;
}
.section-label::before {
  content: ''; display: block; width: 36px; height: 1px; background: var(--rosegold);
}

.section-heading {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15; color: var(--charcoal); margin-bottom: 1rem;
}
.section-heading em { color: var(--rosegold); font-style: italic; }

.section-sub {
  font-size: .95rem; line-height: 1.8; opacity: .65;
  max-width: 50ch;
}

/* ─── ABOUT ───────────────────────────────────────────── */
#about {
  background: var(--charcoal);
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
#about .section-label { color: var(--rose); }
#about .section-label::before { background: var(--rose); }
#about .section-heading { color: var(--cream); }
#about .section-sub { color: var(--cream); opacity: .6; }

.about-img-wrap {
  width: clamp(280px, 40vw, 500px);
  flex-shrink: 0;
  align-self: start;
}
.about-img-overlay {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 45%; aspect-ratio: 1;
  background: linear-gradient(135deg, #e8b4a8 0%, #c9897a 100%);
  border-radius: 4px;
  border: 6px solid var(--charcoal);
}
.about-img-label {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: rgba(44,32,25,0.7); color: var(--cream);
  padding: .35rem .8rem; border-radius: 2px;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
}

.about-content { padding-top: 1rem; }
.about-quote {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  font-weight: 300; color: var(--rose);
  line-height: 1.6; margin: 2rem 0;
  padding-left: 1.5rem; border-left: 2px solid var(--rosegold);
}
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2rem;
}
.about-feature {
  display: flex; align-items: flex-start; gap: .8rem;
}
.about-feature-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rosegold));
}
.about-feature-text { font-size: .85rem; color: var(--cream); opacity: .7; line-height: 1.5; }

/* ─── SERVICES ────────────────────────────────────────── */
#services { background: var(--white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1px; background: var(--blush);
  border: 1px solid var(--blush); border-radius: 4px; overflow: hidden;
}

.service-card {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background .2s;
  cursor: default; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--rosegold);
  transition: right .4s ease;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { right: 0; }

.service-icon {
  width: 48px; height: 48px;
  background: var(--blush);
  border-radius: 50%; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.service-name {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 400;
  color: var(--charcoal); margin-bottom: .5rem;
}
.service-desc { font-size: .85rem; line-height: 1.7; opacity: .6; margin-bottom: 1.5rem; flex: 1; }
.service-footer { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: .3rem .75rem; margin-top: auto; }
.service-duration { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .45; flex-shrink: 0; }
.service-price {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 300;
  color: var(--rosegold); text-align: right;
}

.offer-banner {
  display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
  margin: 2.5rem 2rem 0;
  background: linear-gradient(135deg, var(--deep) 0%, #5a3030 100%);
  border-radius: 16px; padding: 1.6rem 2rem;
  color: #fff;
}
.offer-badge {
  background: var(--rose); color: var(--deep);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 20px; white-space: nowrap; flex-shrink: 0;
}
.offer-text { flex: 1; display: flex; flex-direction: column; gap: .3rem; min-width: 180px; }
.offer-text strong { font-size: 1rem; font-weight: 600; }
.offer-text span { font-size: .85rem; opacity: .75; }
@media (max-width: 600px) {
  .offer-banner { margin: 2rem 1rem 0; padding: 1.3rem 1.4rem; }
}

/* ─── GALLERY ─────────────────────────────────────────── */
#gallery { background: var(--cream); }
.gallery-header { margin-bottom: 3rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}
.gallery-item {
  border-radius: 4px; overflow: hidden;
  position: relative; cursor: pointer;
}
.gallery-item:nth-child(1) { grid-row: 1/3; }

.gallery-thumb {
  width: 100%; height: 100%;
  transition: transform .5s ease;
  overflow: hidden;
}
.gallery-item:hover .gallery-thumb { transform: scale(1.04); }
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.7s ease;
}
.gallery-thumb img.fading { opacity: 0; }

.gallery-placeholder-label { display: none; }

/* ─── NAIL STUDIO TEASER ──────────────────────────────── */
#nail-studio-teaser { background: var(--cream); padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.studio-teaser {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1.8rem;
}
.studio-teaser-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap;
  width: 100%;
}
.studio-teaser-text {
  max-width: 56ch; flex: 1 1 360px;
}
.studio-teaser-text p {
  font-size: .95rem; line-height: 1.7; color: var(--charcoal); opacity: .75;
  margin: 1.2rem 0 0;
}

.studio-teaser-visual {
  flex: 0 0 auto;
  width: clamp(120px, 16vw, 180px);
}
.studio-teaser-visual img {
  width: 100%; display: block;
  filter: drop-shadow(0 18px 30px rgba(122,74,63,0.22));
}

.studio-teaser .btn-ghost { display: inline-block; white-space: nowrap; }

/* ─── TESTIMONIALS ────────────────────────────────────── */
#testimonials { background: var(--blush); }
.testimonials-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start;
}
.testimonials-sticky { position: sticky; top: calc(var(--nav-h) + 2rem); }

.stars { color: var(--rosegold); font-size: 1.1rem; letter-spacing: .15em; margin-bottom: 1rem; }

.testimonials-list { display: flex; flex-direction: column; gap: 1.5rem; }
.testimonial-card {
  background: var(--white); padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 20px rgba(122,74,63,0.06);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--serif); font-size: 5rem; font-weight: 300;
  color: var(--blush); line-height: 1;
  position: absolute; top: -.5rem; left: 1.2rem;
  pointer-events: none;
}
.testimonial-text {
  font-size: .9rem; line-height: 1.8; opacity: .75;
  margin-bottom: 1.5rem; padding-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-avatar:nth-of-type(1) { background: linear-gradient(135deg,#f2c4bc,#c9897a); }

.testimonial-name { font-weight: 500; font-size: .9rem; }
.testimonial-meta { font-size: .75rem; opacity: .5; margin-top: .1rem; }
.testimonial-stars { color: var(--rosegold); font-size: .75rem; }

/* ─── BOOKING ─────────────────────────────────────────── */
#booking { background: var(--white); }
.booking-inner {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}

.booking-info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.booking-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: var(--cream); border-radius: 4px;
}
.booking-info-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.booking-info-text { font-size: .85rem; line-height: 1.6; opacity: .7; }
.booking-info-text strong { opacity: 1; color: var(--deep); }

/* Booking form */
.booking-form {
  background: var(--cream); border-radius: 6px;
  padding: 2.5rem; border: 1px solid rgba(200,169,126,0.2);
}
.form-heading {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--charcoal); margin-bottom: 1.8rem;
}

.form-group { margin-bottom: 1.3rem; }
.form-group > label {
  display: block; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .5rem; opacity: .6;
}
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid rgba(200,169,126,0.3);
  background: var(--white); border-radius: 2px;
  font-family: var(--sans); font-size: .9rem; color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rosegold);
  box-shadow: 0 0 0 3px rgba(201,137,122,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.addons-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem;
  margin-top: .5rem;
}
.addon-check {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; cursor: pointer; padding: .5rem .75rem;
  border-radius: 8px; border: 1px solid var(--blush);
  background: var(--cream); transition: all .15s;
  font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 1;
}
.addon-check:hover { border-color: var(--rosegold); background: var(--blush); }
.addon-check input[type="checkbox"] {
  width: auto; margin: 0; accent-color: var(--rosegold);
  width: 15px; height: 15px; flex-shrink: 0;
}
.addon-check:has(input:checked) {
  border-color: var(--rosegold); background: var(--blush);
}

/* Slot picker */
.slots-label {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  opacity: .6; margin-bottom: .8rem;
}
.slots-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin-bottom: 1.3rem;
}
.slot {
  padding: 1rem; border: 1px solid rgba(200,169,126,0.3);
  border-radius: 2px; background: var(--white); cursor: pointer;
  text-align: center; transition: all .2s;
}
.slot:hover { border-color: var(--rosegold); background: var(--blush); }
.slot.selected { border-color: var(--rosegold); background: var(--rosegold); color: var(--white); }
.slot.unavailable { opacity: .35; cursor: not-allowed; pointer-events: none; background: #f5f0eb; }
.slot-time { font-family: var(--serif); font-size: 1rem; }
.slot-desc { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; opacity: .6; margin-top: .2rem; }
.slot.selected .slot-desc { opacity: .8; }

.slots-loading {
  text-align: center; padding: 1.5rem; opacity: .4;
  font-size: .85rem; letter-spacing: .05em;
}
.slots-empty {
  text-align: center; padding: 1.5rem;
  font-size: .85rem; color: var(--rosegold);
}

.form-notice {
  font-size: .78rem; line-height: 1.6; opacity: .55;
  margin-top: -.5rem; margin-bottom: 1.3rem;
}

.form-submit {
  width: 100%; padding: 1rem;
  background: var(--rosegold); color: var(--white);
  border: none; border-radius: 2px; cursor: pointer;
  font-family: var(--sans); font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--deep); transform: translateY(-1px); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.form-success {
  display: none; text-align: center; padding: 2rem;
}
.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--serif); font-weight: 300; font-size: 1.6rem; color: var(--deep); }
.form-success p  { font-size: .9rem; opacity: .65; margin-top: .5rem; }

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--charcoal); color: var(--cream);
  padding: clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,4rem) 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(250,246,241,0.1);
}
.footer-logo img {
  height: 52px; width: auto; margin-bottom: 1rem;
  filter: brightness(0) invert(1) opacity(0.9);
}
.footer-brand p { font-size: .85rem; line-height: 1.8; opacity: .5; max-width: 28ch; }

.footer-col h4 {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { font-size: .85rem; opacity: .5; transition: opacity .2s; }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; opacity: .35; flex-wrap: wrap; gap: .5rem;
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + .8rem); top: 50%; transform: translateY(-50%);
  background: var(--charcoal); color: var(--white);
  padding: .45rem 1rem; border-radius: 4px;
  font-size: .75rem; letter-spacing: .04em; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.whatsapp-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--charcoal);
}
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ─── SCROLL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu { display: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .mobile-menu {
    position: fixed; inset: 0; top: var(--nav-h);
    background: var(--cream); z-index: 850;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 2.5rem;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    font-family: var(--serif); font-size: 2rem; font-weight: 300;
    color: var(--charcoal);
  }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; align-items: start; }
  .hero-visual {
    display: flex; flex-direction: row;
    height: 180px; gap: .6rem;
    overflow: hidden;
  }
  .hero-img { flex: 1; min-width: 0; }
  .hero-img:nth-child(1) { grid-row: auto; }
  .hero-badge { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-img-wrap { width: min(100%, 400px); margin: 0 auto; }
  .booking-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .testimonials-inner { grid-template-columns: 1fr; }
  .testimonials-sticky { position: static; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-row: auto; }
  .gallery-item { aspect-ratio: 1 / 1; }
  .services-header { flex-direction: column; gap: 1rem; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { aspect-ratio: 1 / 1; }
  .about-features { grid-template-columns: 1fr; }
}
