/* ──────────────────────────────────────────────────────────────
   FLOR DA PELE — Editorial Wellness Landing
   Strategy: Committed (wine/blush carries 50%+ of surface)
   Type: Fraunces (display) · Dancing Script (logo only) · Inter (body) · Space Mono (labels)
   ────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600;700&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500&family=Inter:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Color (OKLCH committed palette) */
  --wine:        oklch(28% 0.10 350);   /* deep burgundy — dominant */
  --wine-soft:   oklch(40% 0.13 355);
  --rose:        oklch(60% 0.20 0);     /* action color */
  --rose-deep:   oklch(50% 0.20 0);
  --blush:       oklch(94% 0.025 5);    /* primary background */
  --blush-warm:  oklch(96% 0.018 50);
  --cream:       oklch(98% 0.010 70);
  --gold:        oklch(72% 0.095 75);   /* accent — editorial gold */
  --gold-soft:   oklch(85% 0.05 75);
  --ink:         oklch(18% 0.012 350);  /* near-black, tinted */
  --ink-soft:    oklch(35% 0.012 350);
  --ink-muted:   oklch(55% 0.010 350);
  --line:        oklch(85% 0.02 350);
  --whatsapp:    oklch(70% 0.18 145);

  /* Type */
  --display: 'Fraunces', Georgia, serif;
  --script:  'Dancing Script', cursive;
  --body:    'Inter', system-ui, sans-serif;
  --mono:    'Space Mono', ui-monospace, monospace;

  /* Spacing rhythm — varied, not uniform */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 144px;

  --container: 1280px;
  --container-narrow: 720px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--blush);
  line-height: 1.5;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease-out); }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Editorial type defaults */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* ──────────────────────────────────────────────────────────────
   NAVBAR — sticky, transparent over hero, solid on scroll
   ────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) var(--s-5);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(252, 240, 243, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  padding: var(--s-3) var(--s-5);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s-6);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: var(--s-7);
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}
.nav-links a:hover { color: var(--wine); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--wine);
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); }
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--wine);
}
.nav-burger svg { width: 22px; height: 22px; }

@media (max-width: 880px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: var(--s-3); }
  .nav-logo img { height: 42px; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px var(--s-6) var(--s-6);
    background: var(--cream);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: -20px 0 60px rgba(0,0,0,0.1);
    gap: var(--s-5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; font-family: var(--display); font-weight: 400; color: var(--wine); }
  .nav-cta { padding: 8px 14px; font-size: 10px; }
  .nav-burger { display: inline-flex; }
}

/* ──────────────────────────────────────────────────────────────
   HERO — Editorial split layout
   ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--blush);
  padding: 110px var(--s-5) var(--s-7);
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
  min-height: calc(100svh - 160px);
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-8);
  }
}

.hero-text { position: relative; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--s-6);
}
.hero-eyebrow .line {
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--display);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(48px, 9vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--wine);
  margin-bottom: var(--s-5);
}
.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}
.hero-script {
  font-family: var(--script);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  color: var(--rose);
  line-height: 1;
  display: block;
  margin-top: 8px;
  margin-left: -4px;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: var(--s-6) 0 var(--s-5);
}
.hero-divider .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero-divider .line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 60px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
  margin-bottom: var(--s-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
}
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-out-expo), background 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.btn-primary {
  background: var(--wine);
  color: var(--cream);
  box-shadow: 0 12px 40px -10px rgba(101, 26, 51, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--rose-deep);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-ghost {
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 17px 28px;
}
.btn-ghost:hover {
  background: var(--wine);
  color: var(--cream);
}
.hero-meta {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.hero-meta .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* Hero image side */
.hero-visual {
  position: relative;
  max-width: 540px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 880px) {
  .hero-visual { margin-left: auto; margin-right: auto; }
}
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
  background: var(--wine-soft);
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, transparent 40%, rgba(40, 18, 28, 0.3) 100%);
  pointer-events: none;
}
.hero-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-position: center;
  filter: saturate(0.95) contrast(1.05);
}
.hero-tag-vertical {
  position: absolute;
  top: 20px; right: -20px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 8px;
}
.hero-tag-vertical::before {
  content: '';
  display: block;
  width: 1px; height: 30px;
  background: var(--gold);
  margin: 0 auto 12px;
}
.hero-photo-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  right: 20px;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.hero-photo-caption strong { font-weight: 700; }

/* ──────────────────────────────────────────────────────────────
   MARQUEE STRIP — moving accent line
   ────────────────────────────────────────────────────────────── */
.marquee {
  background: var(--wine);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
  border-block: 1px solid var(--wine-soft);
}
.marquee-track {
  display: flex;
  gap: var(--s-7);
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: var(--s-7); }
.marquee-track .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────────
   ABOUT — Editorial profile
   ────────────────────────────────────────────────────────────── */
.about {
  padding: var(--s-10) var(--s-5);
  background: var(--blush);
  position: relative;
}
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: start;
}
@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-9);
  }
}
.about-photo-col {
  position: relative;
}
.about-photo-wrap {
  overflow: hidden;
  background: var(--wine-soft);
}
.about-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-position: center;
}
.about-photo-tag {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--cream);
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wine);
  box-shadow: 0 12px 40px -10px rgba(40, 18, 28, 0.2);
}
.about-photo-tag strong { color: var(--rose); display: block; margin-top: 4px; font-family: var(--display); font-size: 14px; letter-spacing: 0.02em; text-transform: none; }

.about-text {}
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.about-eyebrow .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.about-eyebrow .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.about-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--wine);
  margin-bottom: var(--s-3);
}
.about-name em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.about-role {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--s-6);
}
.about-bio {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: var(--s-5);
  max-width: 560px;
}
.about-bio strong { font-weight: 600; color: var(--wine); }
.about-quote {
  border-top: 1px solid var(--line);
  padding-top: var(--s-5);
  margin-top: var(--s-5);
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  color: var(--wine);
  position: relative;
  padding-left: 32px;
}
.about-quote::before {
  content: '“';
  position: absolute;
  left: -8px; top: 8px;
  font-family: var(--display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  font-style: italic;
}

/* ──────────────────────────────────────────────────────────────
   SERVICES — Editorial numbered list (NOT cards)
   ────────────────────────────────────────────────────────────── */
.services {
  padding: var(--s-10) var(--s-5);
  background: var(--cream);
}
.services-header {
  max-width: var(--container);
  margin: 0 auto var(--s-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: end;
}
@media (min-width: 880px) {
  .services-header { grid-template-columns: 1fr 1fr; }
}
.services-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--wine);
}
.services-title em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.services-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 480px;
}

.services-list {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: var(--s-5);
  align-items: center;
  padding: var(--s-5) var(--s-2);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--blush) 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-out-expo);
  pointer-events: none;
}
.service-row:hover { padding-left: var(--s-5); }
.service-row:hover::before { transform: translateX(0); }
.service-row > * { position: relative; z-index: 1; }
.service-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.service-name {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
  color: var(--wine);
  letter-spacing: -0.01em;
}
.service-name em { font-style: italic; color: var(--rose-deep); }
.service-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s var(--ease-out);
}
.service-row:hover .service-cta { color: var(--rose); }
.service-cta svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-out-expo); }
.service-row:hover .service-cta svg { transform: translateX(4px); }

.services-cta-block {
  max-width: var(--container);
  margin: var(--s-7) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-5);
  padding: var(--s-6);
  background: var(--blush);
  border: 1px solid var(--gold-soft);
}
.services-cta-block p {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--wine);
  line-height: 1.3;
  max-width: 500px;
}

/* ──────────────────────────────────────────────────────────────
   GALLERY — Asymmetric editorial mosaic
   ────────────────────────────────────────────────────────────── */
.gallery {
  padding: var(--s-9) var(--s-5);
  background: var(--blush);
}
.gallery-header {
  max-width: var(--container);
  margin: 0 auto var(--s-7);
  text-align: center;
}
.gallery-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
}
.gallery-eyebrow .line { width: 30px; height: 1px; background: var(--gold); }
.gallery-eyebrow span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.gallery-title {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  color: var(--wine);
}
.gallery-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  background: var(--wine-soft);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--1 { grid-column: span 2; grid-row: span 2; }
.gallery-item--2 { grid-column: span 1; }
.gallery-item--3 { grid-column: span 1; }
.gallery-item--4 { grid-column: span 1; }
.gallery-item--5 { grid-column: span 1; }

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item--1 { grid-column: span 2; grid-row: span 2; }
  .gallery-item--2,
  .gallery-item--3,
  .gallery-item--4,
  .gallery-item--5 { grid-column: span 1; }
}

/* ──────────────────────────────────────────────────────────────
   PACKAGES — Featured + supporting (not 4 identical)
   ────────────────────────────────────────────────────────────── */
.packages {
  padding: var(--s-10) var(--s-5);
  background: var(--wine);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, oklch(40% 0.13 355) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, oklch(35% 0.15 0) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}
.packages-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.packages-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}
@media (min-width: 880px) {
  .packages-header { grid-template-columns: 1fr 1fr; align-items: end; }
}
.packages-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.packages-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.packages-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.packages-intro {
  font-size: 16px;
  line-height: 1.7;
  color: oklch(85% 0.02 350);
  font-weight: 300;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 880px) {
  .packages-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: var(--s-3);
  }
}

.pkg {
  position: relative;
  padding: var(--s-6);
  background: oklch(32% 0.10 350);
  border: 1px solid oklch(45% 0.10 350);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s var(--ease-out);
}
.pkg:hover { transform: translateY(-4px); border-color: var(--gold); }
.pkg-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: var(--s-4);
}
.pkg-name {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.pkg-desc {
  font-size: 14px;
  line-height: 1.6;
  color: oklch(85% 0.02 350);
  font-weight: 300;
  margin-bottom: var(--s-5);
}
.pkg-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.4s var(--ease-out-expo);
}
.pkg:hover .pkg-arrow { gap: 14px; }

.pkg--featured {
  grid-row: span 2;
  background: linear-gradient(160deg, oklch(45% 0.20 0) 0%, oklch(35% 0.15 350) 100%);
  border: 1px solid oklch(60% 0.18 0);
  min-height: 380px;
}
.pkg--featured .pkg-name {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  font-style: normal;
}
.pkg--featured .pkg-name em { font-style: italic; }
.pkg--featured::after {
  content: 'EDITOR’S PICK';
  position: absolute;
  top: var(--s-5); right: var(--s-5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold);
}

/* ──────────────────────────────────────────────────────────────
   TESTIMONIALS — Editorial quotes (not generic carousel)
   ────────────────────────────────────────────────────────────── */
.reviews {
  padding: var(--s-10) var(--s-5);
  background: var(--cream);
  position: relative;
}
.reviews-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.reviews-header {
  text-align: center;
  margin-bottom: var(--s-8);
}
.reviews-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.reviews-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--wine);
}
.reviews-title em { font-style: italic; color: var(--rose-deep); font-weight: 400; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-5) var(--s-7);
  }
}

.review {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.review-quote {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--wine);
  font-style: italic;
  margin-bottom: var(--s-4);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.review-author-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--wine));
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.review-author-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.review-author-name strong {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--wine);
  margin-bottom: 2px;
}
.review--featured {
  grid-column: 1 / -1;
  padding: var(--s-7) 0;
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.review--featured .review-quote {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto var(--s-5);
}
.review--featured .review-author { justify-content: center; }

/* ──────────────────────────────────────────────────────────────
   LOCATION — Full-bleed map with overlay card
   ────────────────────────────────────────────────────────────── */
.location {
  position: relative;
  background: var(--blush);
  padding: var(--s-9) 0 0;
}
.location-header {
  max-width: var(--container);
  margin: 0 auto var(--s-7);
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
@media (min-width: 880px) {
  .location-header { grid-template-columns: 1fr 1fr; align-items: end; }
}
.location-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--wine);
}
.location-title em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.location-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 460px;
}

.location-mapwrap {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.location-mapwrap iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}
.location-card {
  position: absolute;
  bottom: var(--s-6); left: var(--s-6);
  max-width: 380px;
  background: var(--cream);
  padding: var(--s-6);
  box-shadow: 0 30px 80px -20px rgba(40, 18, 28, 0.3);
}
@media (min-width: 880px) {
  .location-card { left: 8%; }
}
@media (max-width: 720px) {
  .location-mapwrap { height: 420px; }
  .location-card {
    left: var(--s-4);
    right: var(--s-4);
    max-width: none;
    bottom: var(--s-4);
    padding: var(--s-4);
  }
  .about-photo-tag {
    left: 0;
    bottom: 0;
  }
  .service-row {
    gap: var(--s-3);
    grid-template-columns: 40px 1fr auto;
  }
}
.location-card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.location-card-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  color: var(--wine);
  margin-bottom: var(--s-4);
}
.location-card-name em { font-style: italic; }
.location-info {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.location-hours {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-2);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hour-block { text-align: center; }
.hour-day { display: block; color: var(--ink-muted); margin-bottom: 4px; }
.hour-time { display: block; color: var(--wine); font-weight: 700; font-size: 11px; }
.hour-block--closed .hour-time { opacity: 0.5; }

/* ──────────────────────────────────────────────────────────────
   CTA FINAL — Drenched (color carries the surface)
   ────────────────────────────────────────────────────────────── */
.cta-final {
  background: var(--wine);
  color: var(--cream);
  padding: var(--s-10) var(--s-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: 'flor';
  position: absolute;
  top: -40px; left: -20px;
  font-family: var(--script);
  font-size: 280px;
  line-height: 1;
  color: oklch(35% 0.10 350);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}
.cta-final::after {
  content: 'pele';
  position: absolute;
  bottom: -80px; right: -20px;
  font-family: var(--script);
  font-size: 280px;
  line-height: 1;
  color: oklch(35% 0.10 350);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.cta-final-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cta-final-eyebrow::before,
.cta-final-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.cta-final-title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-5);
}
.cta-final-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.cta-final-sub {
  font-size: 17px;
  line-height: 1.6;
  color: oklch(88% 0.025 5);
  font-weight: 300;
  margin-bottom: var(--s-7);
}
.cta-final .btn-primary {
  background: var(--cream);
  color: var(--wine);
  font-size: 15px;
  padding: 22px 40px;
}
.cta-final .btn-primary:hover { background: var(--gold); color: var(--wine); }
.cta-final-meta {
  margin-top: var(--s-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(80% 0.025 5);
}
.cta-final-meta a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }
.cta-final-meta a:hover { color: var(--gold); }

/* ──────────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────────── */
.footer {
  background: oklch(15% 0.01 350);
  color: oklch(70% 0.02 350);
  padding: var(--s-7) var(--s-5);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: auto 1fr auto; }
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
}
.footer-credit {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: oklch(50% 0.02 350);
  text-align: right;
}
@media (max-width: 720px) {
  .footer-inner { text-align: center; }
  .footer-meta, .footer-credit { text-align: center; }
}

/* ──────────────────────────────────────────────────────────────
   FLOATING WHATSAPP — sleeker
   ────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 14px;
  background: var(--whatsapp);
  color: oklch(20% 0.05 145);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 16px 40px -12px oklch(50% 0.18 145 / 0.5);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.wa-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 24px 50px -12px oklch(50% 0.18 145 / 0.6); }
.wa-float-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: oklch(20% 0.05 145);
  color: var(--whatsapp);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.wa-float-icon svg { width: 18px; height: 18px; }
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; padding: 12px 16px 12px 12px; font-size: 12px; }
}

/* ──────────────────────────────────────────────────────────────
   REVEAL ON SCROLL
   ────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* Focus styles */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ──────────────────────────────────────────────────────────────
   POLISH — selection, scrollbar, image fallback aesthetic
   ────────────────────────────────────────────────────────────── */
::selection {
  background: var(--rose);
  color: var(--cream);
}
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb {
  background: var(--wine-soft);
  border: 2px solid var(--blush);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background: var(--wine); }

/* Graceful image fallback — when img fails, container still reads as art */
.gallery-item,
.about-photo-wrap,
.hero-photo-wrap {
  background-color: oklch(40% 0.10 350);
  background-image:
    linear-gradient(135deg, oklch(40% 0.10 350) 0%, oklch(28% 0.08 350) 100%);
}

/* Image error — show subtle floral pattern as backdrop */
.gallery-item img[style*="opacity"] {
  position: relative;
}

/* Hero photo frame — subtle inner border for editorial framing */
.hero-photo-wrap {
  box-shadow:
    inset 0 0 0 1px oklch(60% 0.05 350 / 0.3),
    0 30px 80px -20px oklch(30% 0.08 350 / 0.35);
}

/* Make .nav-cta arrow nudge on hover */
.nav-cta svg { transition: transform 0.4s var(--ease-out-expo); }
.nav-cta:hover svg { transform: translateX(3px); }

/* Btn primary arrow nudge */
.btn-primary svg { transition: transform 0.4s var(--ease-out-expo); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-ghost svg { transition: transform 0.4s var(--ease-out-expo); }
.btn-ghost:hover svg { transform: translateY(3px); }

/* Hero headline — letter spacing nuance for big serif */
.hero-headline em {
  text-shadow: 0 0 1px oklch(50% 0.20 0 / 0.05);
}

/* Refine tag-vertical placement on small screens */
@media (max-width: 880px) {
  .hero-tag-vertical { right: 8px; top: 12px; font-size: 9px; }
  .hero-photo-caption { font-size: 9px; }
  .marquee-track { font-size: 18px; }
}

/* iPad / mid-range polish */
@media (min-width: 720px) and (max-width: 1024px) {
  .hero { padding-top: 130px; }
  .nav-links { gap: var(--s-5); }
}

/* Print baseline */
@media print {
  .nav, .wa-float, .marquee { display: none; }
  body { background: white; color: black; }
}
