/* ── New York font (brand guideline — titles) ── */
@font-face {
  font-family: 'New York';
  src: url('fonts/NewYork.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Brand Tokens (from brand guideline-01.pdf) ── */
:root {
  /* Colors */
  --blush-light:  #f2ebee;   /* primary bg */
  --blush-mid:    #ecd2ca;   /* secondary bg / accents */
  --rose:         #e0b3bc;   /* secondary accent */
  --mauve:        #c59ba3;   /* primary brand color */
  --brown:        #6e4d4c;   /* primary dark / headings */
  --ink:          #222222;   /* black text */
  --white:        #ffffff;

  /* Derived */
  --brown-light:  #7e5a59;   /* hover state */
  --blush-border: #ddd0d4;   /* borders on blush bg */
  --white-border: #e8dfe2;   /* borders on white bg */

  /* Typography — brand spec */
  --serif: 'New York', Georgia, serif;       /* titles: h1 h2 h3 */
  --serif-sub: 'Prata', Georgia, serif;      /* subtitles: quotes, prices, step numbers */
  --sans:  'Montserrat', system-ui, sans-serif; /* all body / UI text */

  --max: 1160px;
  --section-gap: 64px;
  --radius: 6px;
  --radius-pill: 100px;
  --t: 0.3s ease;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.section-pad { padding: var(--section-gap) 1.5rem; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mauve);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-sub {
  color: var(--mauve);
  font-size: 0.93rem;
  margin-top: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── Arch decorative shape (brand asset) ── */
.arch-deco {
  display: block;
  width: 48px;
  height: 74px;
  border: 1.5px solid var(--mauve);
  border-radius: 100px 100px 0 0;
  margin: 0 auto 1.5rem;
  opacity: 0.45;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.9rem 2.4rem;
  background: var(--brown);
  color: var(--white);
  border: 1.5px solid var(--brown);
  border-radius: var(--radius-pill);
  cursor: pointer;
  outline: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}
/* shimmer sweep — uses transform, not left, to avoid layout thrash */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: skewX(-20deg) translateX(-200%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn:hover::before { transform: skewX(-20deg) translateX(440%); }
.btn:hover {
  background: var(--brown-light);
  border-color: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(110, 77, 76, 0.28);
}
.btn:active { transform: translateY(0) scale(0.97); box-shadow: none; }

.btn-outline {
  background: transparent;
  color: var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(110, 77, 76, 0.22);
}

.btn-rose {
  background: var(--mauve);
  border-color: var(--mauve);
  color: var(--white);
}
.btn-rose:hover { background: var(--brown); border-color: var(--brown); }

.btn-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--brown);
}
.btn-light:hover {
  background: var(--blush-light);
  border-color: var(--blush-light);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.5rem;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 0.85rem 2.5rem;
  box-shadow: 0 1px 24px rgba(110, 77, 76, 0.09);
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 0;
}
.nav-logo-img {
  height: 32px !important;
  width: auto !important;
  max-height: 32px !important;
  display: block;
}
/* Default (transparent nav): show light, hide dark */
.nav-logo-light { opacity: 1; position: relative; }
.nav-logo-dark  { opacity: 0; position: absolute; pointer-events: none; width: 0; height: 0; overflow: hidden; }
/* Scrolled (white bg): hide light, show dark */
.nav.scrolled .nav-logo-light { opacity: 0; position: absolute; pointer-events: none; width: 0; height: 0; overflow: hidden; }
.nav.scrolled .nav-logo-dark  { opacity: 1; position: relative; width: auto; height: 32px; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.88);
  transition: color var(--t), opacity var(--t);
  position: relative;
}
/* sliding underline for non-CTA links */
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left center; }
.nav.scrolled .nav-links a { color: var(--brown); opacity: 0.7; }
.nav-links a:hover { color: var(--white); opacity: 1; }
.nav.scrolled .nav-links a:hover { color: var(--mauve); opacity: 1; }

.nav-links .nav-cta {
  padding: 0.5rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  color: var(--white) !important;
  opacity: 1 !important;
}
.nav.scrolled .nav-links .nav-cta {
  border-color: var(--brown);
  color: var(--brown) !important;
}
.nav-links .nav-cta:hover,
.nav.scrolled .nav-links .nav-cta:hover {
  background: var(--brown) !important;
  border-color: var(--brown) !important;
  color: var(--white) !important;
}

.nav-toggle { display: none; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--brown);
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero.loaded .hero-img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(110, 77, 76, 0.55) 0%,
    rgba(34, 20, 20, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rose);
  margin-bottom: 1.75rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 32px rgba(0,0,0,0.2);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

/* Italic second line in brand brown/rose */
.hero-content h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.75rem;
  line-height: 2;
  letter-spacing: 0.04em;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  animation: bounce 2.2s infinite;
  transition: color var(--t);
}
.hero-scroll:hover { color: var(--rose); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--blush-light);
  border-bottom: 1px solid var(--blush-border);
  padding: 1.4rem 2rem;
}
.intro-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.intro-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brown);
}
.intro-pill svg { width: 16px; height: 16px; color: var(--mauve); flex-shrink: 0; }

/* ── ABOUT ── */
.about {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img .img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: var(--blush-mid);
  background-size: cover;
  background-position: center;
  /* Arch shape — brand asset */
  border-radius: 200px 200px var(--radius) var(--radius);
  position: relative;
}
.about-img .img-placeholder::after {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--mauve);
  border-radius: 200px 200px var(--radius) var(--radius);
  z-index: -1;
  opacity: 0.35;
}

.about-text h2 { margin-bottom: 1.25rem; }
.about-text > p { color: var(--ink); opacity: 0.65; margin-bottom: 0.85rem; font-size: 0.97rem; }

.benefits { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.benefit { display: flex; gap: 1rem; align-items: flex-start; }
.benefit-icon {
  width: 36px;
  height: 36px;
  background: var(--blush-light);
  border: 1px solid var(--blush-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.benefit strong {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 0.2rem;
}
.benefit p { font-size: 0.86rem; color: var(--ink); opacity: 0.6; margin: 0; }

/* ── TEAM ── */
.team { background: var(--blush-light); }
.team-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--blush-mid);
  background-size: cover;
  background-position: center top;
  /* Arch shape */
  border-radius: 200px 200px var(--radius) var(--radius);
  margin-bottom: 1.25rem;
}
.team-card h3 { font-size: 1.25rem; margin-bottom: 0.3rem; }
.team-role {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--mauve);
}

/* ── QUOTE BAND ── */
.quote-band {
  background: var(--brown);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Decorative oval pattern hint */
.quote-band::before,
.quote-band::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 320px;
  border: 1.5px solid rgba(197, 155, 163, 0.18);
  border-radius: 200px;
}
.quote-band::before { top: -80px; left: 10%; transform: rotate(-15deg); }
.quote-band::after  { bottom: -80px; right: 10%; transform: rotate(15deg); }

.quote-band blockquote {
  font-family: var(--serif-sub);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.quote-band cite {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mauve);
  margin-top: 1.5rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ── PROCESS ── */
.process { background: var(--white); }
.process-steps {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.step { flex: 1; text-align: center; padding: 0 1.5rem; }
.step-num {
  display: block;
  font-family: var(--serif-sub);
  font-size: 2.8rem;
  color: var(--mauve);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step h4 { margin-bottom: 0.5rem; }
.step p  { font-size: 0.85rem; color: var(--ink); opacity: 0.55; }
.step-divider {
  width: 1px;
  height: 120px;
  background: var(--blush-border);
  margin-top: 1.4rem;
  flex-shrink: 0;
}

/* ── SERVICES ── */
.services { background: var(--blush-light); }
.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--white-border);
  border-radius: 16px;
  padding: 2.5rem 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(110, 77, 76, 0.1);
}
.service-card.featured {
  background: var(--brown);
  border-color: var(--brown);
}

.service-tag {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mauve);
  margin-bottom: 0.85rem;
}
.service-card.featured .service-tag { color: var(--rose); }

.service-card h3 { margin-bottom: 1rem; }
.service-card.featured h3 { color: var(--white); }

.service-desc {
  font-size: 0.88rem;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-card.featured .service-desc { color: rgba(255,255,255,0.65); opacity: 1; }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.service-list li {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.65;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}
.service-list li::before {
  content: '♡';
  position: absolute;
  left: 0;
  color: var(--mauve);
  font-size: 0.7rem;
  top: 0.15rem;
}
.service-card.featured .service-list li { color: rgba(255,255,255,0.7); opacity: 1; }
.service-card.featured .service-list li::before { color: var(--rose); }

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--white-border);
}
.service-card.featured .service-meta { border-color: rgba(255,255,255,0.1); }

.service-hours {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--ink);
  opacity: 0.45;
  font-style: italic;
}
.service-card.featured .service-hours { color: rgba(255,255,255,0.4); opacity: 1; }

.service-price {
  font-family: var(--serif-sub);
  font-size: 1.5rem;
  color: var(--mauve);
}
.service-card.featured .service-price { color: var(--rose); }

/* ── Add-ons ── */
.addons {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1.5px solid var(--white-border);
  border-radius: 16px;
}
.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.addon-item strong { font-weight: 500; color: var(--brown); font-size: 0.85rem; }
.addon-item span { color: var(--mauve); font-weight: 500; white-space: nowrap; font-size: 0.85rem; }
.addons-note {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.5;
  text-align: center;
  border-top: 1px solid var(--white-border);
  padding-top: 1rem;
  line-height: 1.7;
}

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 0.75rem;
}
.g-item {
  background-color: var(--blush-mid);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--t);
  cursor: pointer;
}
.g-item:hover { transform: scale(1.012); }
.g-tall { grid-row: span 2; border-radius: 200px 200px 12px 12px; }
.g-wide { grid-column: span 2; }

.gallery-note {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.55;
  letter-spacing: 0.02em;
}
.gallery-note a { color: var(--mauve); opacity: 1; border-bottom: 1px solid transparent; }
.gallery-note a:hover { border-color: var(--mauve); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--blush-light); }
.testimonials-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1.5px solid var(--white-border);
  border-radius: 16px;
  padding: 2.25rem 2rem;
}
.testimonial.featured {
  background: var(--brown);
  border-color: var(--brown);
}
.stars {
  font-size: 0.78rem;
  color: var(--mauve);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.testimonial.featured .stars { color: var(--rose); }
.testimonial p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--brown);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial.featured p { color: rgba(255,255,255,0.9); }
.testimonial cite {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mauve);
  font-weight: 500;
}
.testimonial.featured cite { color: var(--rose); }

/* ── CONTACT ── */
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-img .img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: var(--blush-mid);
  background-size: cover;
  background-position: center;
  /* Arch shape */
  border-radius: 200px 200px var(--radius) var(--radius);
  position: sticky;
  top: 5.5rem;
}
.contact-content h2 { margin-bottom: 0.75rem; }
.contact-intro {
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 1.75rem;
  font-size: 0.93rem;
}

.contact-details { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--brown);
  opacity: 0.75;
  transition: opacity var(--t), color var(--t);
}
.contact-detail:hover { opacity: 1; color: var(--mauve); }
.contact-detail svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--mauve); }

.contact-form { display: flex; flex-direction: column; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brown);
  opacity: 0.6;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--blush-light);
  border: 1.5px solid var(--blush-border);
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t);
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--mauve); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c59ba3' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.contact-form .btn { margin-top: 0.5rem; align-self: flex-start; border: none; }
.form-status {
  font-size: 0.82rem;
  color: var(--mauve);
  margin-top: 0.75rem;
  min-height: 1.2em;
  font-family: var(--sans);
}

/* ── FOOTER ── */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.55);
  padding: 4.5rem 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
/* Oval pattern decoration */
.footer::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 480px;
  border: 1.5px solid rgba(197,155,163,0.12);
  border-radius: 200px;
  top: -100px;
  right: 8%;
  transform: rotate(10deg);
  pointer-events: none;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-logo span { font-style: italic; color: var(--rose); }
.footer-tagline {
  font-family: var(--sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mauve);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.footer-brand p:not(.footer-logo):not(.footer-tagline) { font-size: 0.84rem; line-height: 2; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links h5, .footer-contact h5 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--rose);
  margin-bottom: 0.6rem;
}
.footer-links a, .footer-contact a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--rose); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  font-size: 0.73rem;
  position: relative;
  z-index: 1;
}

/* ── Portfolio preview slider (homepage) ── */
.portfolio-preview { background: var(--blush-light); overflow: hidden; }

.slider-header {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.slider-controls {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
  padding-bottom: 0.25rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--blush-border);
  background: var(--white);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
  flex-shrink: 0;
}
.slider-btn:hover { background: var(--brown); border-color: var(--brown); color: var(--white); }
.slider-btn:disabled { opacity: 0.3; cursor: default; }
.slider-btn:disabled:hover { background: var(--white); border-color: var(--blush-border); color: var(--brown); }

/* Track wrapper — clips overflow */
.slider-track-wrap {
  padding: 0 1.5rem;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.slider-track-wrap:active { cursor: grabbing; }

.slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Individual slider card */
.slider-card {
  flex: 0 0 240px;
  width: 240px;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--white-border);
  background: var(--white);
  text-decoration: none;
  color: inherit;
  transition: transform var(--t), box-shadow var(--t);
  display: block;
}
.slider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(110, 77, 76, 0.12);
}

.slider-img {
  width: 240px;
  height: 300px;
  background-color: var(--blush-mid);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(110, 77, 76, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
}
.slider-card:hover .slider-overlay { opacity: 1; }
.slider-overlay span {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
}

.slider-info {
  padding: 1rem 1.1rem 1.25rem;
}
.slider-info .project-cat {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mauve);
  display: block;
  margin-bottom: 0.35rem;
}
.slider-info h3 {
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.3;
  margin: 0;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blush-border);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  padding: 0;
  /* Expand hit area to 44x44 without changing visual size */
  position: relative;
}
.slider-dot::before {
  content: '';
  position: absolute;
  inset: -19px;
}
.slider-dot.active {
  background: var(--mauve);
  transform: scale(1.4);
}

@media (max-width: 600px) {
  .slider-card { flex: 0 0 180px; width: 180px; }
  .slider-img  { width: 180px; height: 240px; }
  .slider-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.service-card:nth-child(2).fade-up,
.team-card:nth-child(2).fade-up,
.testimonial:nth-child(2).fade-up { transition-delay: 0.1s; }

.service-card:nth-child(3).fade-up,
.team-card:nth-child(3).fade-up,
.testimonial:nth-child(3).fade-up { transition-delay: 0.2s; }

.testimonial:nth-child(4).fade-up { transition-delay: 0.05s; }
.testimonial:nth-child(5).fade-up { transition-delay: 0.15s; }
.testimonial:nth-child(6).fade-up { transition-delay: 0.25s; }

.step:nth-child(3).fade-up { transition-delay: 0.1s; }
.step:nth-child(5).fade-up { transition-delay: 0.2s; }
.step:nth-child(7).fade-up { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about, .contact-section { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { order: -1; }
  .about-img .img-placeholder { aspect-ratio: 3/2; border-radius: 200px 200px var(--radius) var(--radius); }
  .about-img .img-placeholder::after { display: none; }
  .contact-img { display: none; }
  .services-grid { grid-template-columns: 1fr; max-width: 520px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
}

/* ── Hamburger nav — kicks in at 1080px to cover all tablets ── */
@media (max-width: 1080px) {
  .nav { padding: 1rem 1.5rem; }
  .nav.scrolled { padding: 0.75rem 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.25rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--brown) !important;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    opacity: 1 !important;
  }
  .nav-links .nav-cta {
    border-color: var(--mauve) !important;
    color: var(--mauve) !important;
    padding: 0.7rem 2rem;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 6px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: background var(--t), transform var(--t), opacity var(--t);
    border-radius: 2px;
  }
  .nav.scrolled .nav-toggle span { background: var(--brown); }
}

/* ── Mobile — extra layout adjustments below 700px ── */
@media (max-width: 700px) {
  :root { --section-gap: 44px; }
  .nav { padding: 0.9rem 1.25rem; }
  .nav.scrolled { padding: 0.65rem 1.25rem; }

  .intro-strip-inner { gap: 1.5rem; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-tall { grid-row: span 1; border-radius: 12px; }
  .g-wide { grid-column: span 2; }

  .process-steps { flex-direction: column; align-items: center; gap: 2rem; }
  .step-divider { width: 50px; height: 1px; margin: 0; }

  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .g-wide { grid-column: span 1; }
}

/* ═══════════════════════════════════
   TEAM 2-UP
═══════════════════════════════════ */
.team-grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 620px;
}

/* ═══════════════════════════════════
   SERVICES 2-UP (after Stepping In removed)
═══════════════════════════════════ */
.services-grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
}

/* Service text link button (replaces pill btn inside featured card) */
.service-link-btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--rose);
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  transition: color var(--t), border-color var(--t);
  display: inline-block;
}
.service-link-btn:hover { color: var(--white); border-color: var(--white); }

/* ═══════════════════════════════════
   TESTIMONIALS SLIDER
═══════════════════════════════════ */
.testi-slider-wrap {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--blush-border);
  background: var(--white);
  color: var(--brown);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.testi-btn:hover:not(:disabled) { background: var(--blush-mid); border-color: var(--mauve); }
.testi-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.testi-track-outer {
  flex: 1;
  overflow: hidden;
}
.testi-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testi-track .testimonial {
  flex: 0 0 calc(33.333% - 0.84rem);
  min-width: 0;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* Circular event photo on testimonial */
.testi-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--blush-mid);
  background-size: cover;
  background-position: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(110,77,76,0.15);
}
.testimonial.featured .testi-photo {
  border-color: var(--brown);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid--two { grid-template-columns: 1fr; max-width: 520px; }
  .team-grid--two { grid-template-columns: 1fr 1fr; max-width: 480px; }
  .testi-track .testimonial { flex: 0 0 calc(50% - 0.625rem); }
}
@media (max-width: 600px) {
  .team-grid--two { grid-template-columns: 1fr; max-width: 280px; }
  .testi-track .testimonial { flex: 0 0 100%; }
  .testi-btn { width: 36px; height: 36px; }
}

/* ═══════════════════════════════════
   MOTION & MICRO-INTERACTIONS
═══════════════════════════════════ */

/* ── Hero scroll arrow bounce ── */
@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(7px); opacity: 1; }
}
.hero-scroll { animation: bounce-arrow 2s ease-in-out infinite; }

/* ── Team photo hover — lift + zoom ── */
.team-photo {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.5s ease;
}
.team-card:hover .team-photo {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 56px rgba(110, 77, 76, 0.18);
}
.team-card h3 {
  transition: color 0.3s ease;
}
.team-card:hover h3 { color: var(--mauve); }

/* ── Service cards — refined hover ── */
.service-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(110, 77, 76, 0.14);
}
.service-card.featured:hover {
  box-shadow: 0 28px 64px rgba(110, 77, 76, 0.35);
}

/* ── Testimonial cards — hover border + lift ── */
.testimonial {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}
.testimonial:not(.featured):hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(110, 77, 76, 0.1);
  border-color: var(--mauve);
}
.testimonial.featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(110, 77, 76, 0.35);
}

/* ── Slider cards — lift on hover ── */
.slider-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}
.slider-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(110, 77, 76, 0.14);
}

/* ── Process steps — number color on hover ── */
.step {
  transition: transform 0.35s ease;
}
.step:hover { transform: translateY(-4px); }
.step:hover .step-num {
  opacity: 0.7;
  color: var(--brown);
  transition: opacity 0.35s ease, color 0.35s ease;
}

/* ── Benefit items ── */
.benefit {
  transition: transform 0.3s ease;
}
.benefit:hover { transform: translateX(4px); }

/* ── Service list items — subtle indent on hover ── */
.service-list li {
  transition: padding-left 0.25s ease, color 0.25s ease;
}
.service-list li:hover { padding-left: 4px; }

/* ── Nav CTA button pulse on load ── */
@keyframes nav-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,77,76,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(110,77,76,0); }
}
.nav.scrolled .nav-cta { animation: nav-pulse 3s ease-in-out 2s 2; }

/* ── Testi arrow buttons — refined hover ── */
.testi-btn, .slider-btn {
  transition: background 0.3s ease, border-color 0.3s ease,
              transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.testi-btn:hover:not(:disabled),
.slider-btn:hover:not(:disabled) {
  transform: scale(1.1);
}
.slider-btn:active, .testi-btn:active { transform: scale(0.93); }

/* ── Project cards in portfolio ── */
.project-card {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s ease;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(110, 77, 76, 0.14);
}

/* ── Fade-up with stagger on sibling elements ── */
.service-card.fade-up:nth-child(1) { transition-delay: 0s; }
.service-card.fade-up:nth-child(2) { transition-delay: 0.1s; }
.service-card.fade-up:nth-child(3) { transition-delay: 0.2s; }
.testimonial.fade-up:nth-child(1)  { transition-delay: 0s; }
.testimonial.fade-up:nth-child(2)  { transition-delay: 0.1s; }
.testimonial.fade-up:nth-child(3)  { transition-delay: 0.2s; }
.step.fade-up:nth-child(odd)       { transition-delay: 0.05s; }
.step.fade-up:nth-child(even)      { transition-delay: 0.15s; }
.benefit.fade-up:nth-child(1)      { transition-delay: 0s; }
.benefit.fade-up:nth-child(2)      { transition-delay: 0.08s; }
.benefit.fade-up:nth-child(3)      { transition-delay: 0.16s; }

/* ── Smooth image load on team photos ── */
.team-photo, .slider-img, .project-img {
  background-attachment: scroll;
}

/* ── Quote band text shimmer on hover ── */
.quote-band:hover blockquote {
  text-shadow: 0 0 40px rgba(224, 179, 188, 0.3);
  transition: text-shadow 0.6s ease;
}

/* ── Footer links hover ── */
.footer-links a, .footer-contact a {
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--rose) !important;
  transform: translateX(3px);
}

/* ══════════════════════════════════════════════
   INSTAGRAM SECTION
══════════════════════════════════════════════ */
.instagram-section {
  background: var(--blush-light);
}
.instagram-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.instagram-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.instagram-inner h2 em {
  font-family: var(--serif-sub);
  font-style: italic;
}
.instagram-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--mauve);
  text-align: center;
  margin-bottom: 2rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
.instagram-post {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--blush-mid);
  border-radius: 0.8rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
}
.instagram-post:hover {
  transform: scale(1.03);
  opacity: 0.9;
}
@media (max-width: 600px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

/* ══════════════════════════════════════════════
   ACCESSIBILITY — Focus Visible
══════════════════════════════════════════════ */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}
.nav-links a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════
   REDUCED MOTION
══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .hero-scroll { animation: none; }
}

/* ══════════════════════════════════════════════
   HAMBURGER → ✕ ANIMATION
══════════════════════════════════════════════ */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════════════════════════════════════════
   PLACEHOLDER FALLBACK — missing photos
   Shows a blush gradient with monogram/icon
   when review/instagram images haven't been
   uploaded yet
══════════════════════════════════════════════ */
.testi-photo {
  background-color: var(--blush-mid);
  background-image:
    radial-gradient(circle at 60% 35%, var(--rose) 0%, transparent 55%),
    linear-gradient(135deg, var(--blush-light) 0%, var(--blush-mid) 100%);
}
/* Override only when a real image is set (non-empty bg url) */
.testi-photo[style*="url("] {
  background-image: var(--testi-photo-bg, none);
}

.instagram-post {
  background-color: var(--blush-mid);
  /* Subtle grid pattern as placeholder */
  background-image:
    linear-gradient(135deg, var(--blush-light) 25%, transparent 25%),
    linear-gradient(-135deg, var(--blush-light) 25%, transparent 25%),
    linear-gradient(135deg, transparent 75%, var(--blush-light) 75%),
    linear-gradient(-135deg, transparent 75%, var(--blush-light) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 10px 0, 10px -10px, 0 10px;
}
/* When a real image is set, it covers the pattern */
.instagram-post[style*="url("] {
  background-color: var(--blush-mid);
}

/* ══════════════════════════════════════════════
   BEHOLD INSTAGRAM WIDGET — brand overrides
══════════════════════════════════════════════ */
.behold-wrap {
  max-width: 960px;
  margin: 0 auto 2rem;
}

/* Force 3-column square grid, no extras */
behold-widget {
  --behold-columns: 3;
  --behold-gap: 1rem;
  --behold-border-radius: 0.8rem;
  --behold-background: transparent;
  display: block;
}

/* Hide Behold branding / load more / username */
behold-widget::part(footer),
behold-widget::part(load-more),
behold-widget::part(username),
behold-widget::part(header) {
  display: none !important;
}

/* Each post cell */
behold-widget::part(post) {
  border-radius: 0.8rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
behold-widget::part(post):hover {
  transform: scale(1.03);
  opacity: 0.9;
}

@media (max-width: 600px) {
  behold-widget { --behold-columns: 3; --behold-gap: 0.5rem; }
}

/* ══════════════════════════════════════════════
   ZODIAC PERSONALISED MESSAGE
══════════════════════════════════════════════ */
.zodiac-msg {
  font-family: var(--serif-sub);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--rose);
  line-height: 1.6;
  margin-top: 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
}
.zodiac-msg--visible {
  max-height: 80px;
  opacity: 1;
}

/* ══════════════════════════════════════════════
   COOKIE CONSENT BANNER
══════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--brown);
  color: rgba(255,255,255,0.9);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.cookie-visible {
  transform: translateY(0);
}
.cookie-banner p {
  font-family: var(--sans);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-banner a {
  color: var(--rose);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-btn:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.cookie-btn--accept {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}
.cookie-btn--accept:hover { background: var(--mauve); border-color: var(--mauve); }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.25rem; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════════
   FLOATING DOCK — Quick Navigation
══════════════════════════════════════════════ */
.site-dock {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9100;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.7rem;
}

/* ── Main toggle button ── */
.site-dock-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brown);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(110,77,76,0.38), 0 1px 4px rgba(110,77,76,0.2);
  transition: background 0.25s ease, box-shadow 0.25s ease,
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
  outline: none;
}
.site-dock-toggle:hover {
  background: var(--brown-light);
  box-shadow: 0 8px 32px rgba(110,77,76,0.42);
  transform: scale(1.08);
}
.site-dock-toggle:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}
.site-dock-toggle svg {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-dock-toggle.open svg {
  transform: rotate(45deg);
}

/* Discovery pulse — fires once on load */
@keyframes dock-discover {
  0%   { box-shadow: 0 4px 20px rgba(110,77,76,0.38); }
  50%  { box-shadow: 0 4px 20px rgba(110,77,76,0.38), 0 0 0 10px rgba(110,77,76,0.12); }
  100% { box-shadow: 0 4px 20px rgba(110,77,76,0.38); }
}
.site-dock-toggle:not(.open) {
  animation: dock-discover 1.8s ease-in-out 1.5s 2;
}

/* ── Items container ── */
.site-dock-items {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 0.55rem;
}

/* ── Individual item ── */
.site-dock-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px) scale(0.82);
  pointer-events: none;
  transition:
    opacity  0.35s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.site-dock-items.open .site-dock-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Stagger: bottom item (closest to button) first */
.site-dock-items.open .site-dock-item:nth-last-child(1) { transition-delay: 0s; }
.site-dock-items.open .site-dock-item:nth-last-child(2) { transition-delay: 0.05s; }
.site-dock-items.open .site-dock-item:nth-last-child(3) { transition-delay: 0.10s; }
.site-dock-items.open .site-dock-item:nth-last-child(4) { transition-delay: 0.15s; }
.site-dock-items.open .site-dock-item:nth-last-child(5) { transition-delay: 0.20s; }
.site-dock-items.open .site-dock-item:nth-last-child(6) { transition-delay: 0.25s; }
.site-dock-items.open .site-dock-item:nth-last-child(7) { transition-delay: 0.30s; }
.site-dock-items.open .site-dock-item:nth-last-child(8) { transition-delay: 0.35s; }

/* Closing: reverse stagger */
.site-dock-items:not(.open) .site-dock-item:nth-last-child(1) { transition-delay: 0.21s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(2) { transition-delay: 0.18s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(3) { transition-delay: 0.15s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(4) { transition-delay: 0.12s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(5) { transition-delay: 0.09s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(6) { transition-delay: 0.06s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(7) { transition-delay: 0.03s; }
.site-dock-items:not(.open) .site-dock-item:nth-last-child(8) { transition-delay: 0s; }

/* ── Icon button ── */
.site-dock-item-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(110,77,76,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}
.site-dock-item:hover .site-dock-item-btn {
  background: var(--brown);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(110,77,76,0.28);
  transform: scale(1.12);
}

/* ── Label ── */
.site-dock-item-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown);
  background: var(--white);
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(110,77,76,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
/* Always visible when dock is open */
.site-dock-items.open .site-dock-item .site-dock-item-label {
  opacity: 1;
  transform: translateX(0);
}
/* Highlight on hover */
.site-dock-item:hover .site-dock-item-label {
  background: var(--blush-mid);
}

/* ── Backdrop ── */
.site-dock-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9099;
  background: rgba(30, 15, 15, 0.1);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.site-dock-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .site-dock { bottom: 1rem; right: 1rem; }
  .site-dock-toggle { width: 48px; height: 48px; }
  .site-dock-item-btn { width: 42px; height: 42px; }
  .site-dock-item-label { font-size: 0.6rem; padding: 0.22rem 0.55rem; letter-spacing: 0.03em; }
}
@media (prefers-reduced-motion: reduce) {
  .site-dock-item, .site-dock-toggle svg, .site-dock-item-btn,
  .site-dock-backdrop { transition-duration: 0.01ms !important; }
  .site-dock-toggle { animation: none !important; }
}

/* ══════════════════════════════════════════════
   HERO — Floating Bokeh Particles + Parallax
══════════════════════════════════════════════ */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: bokeh-rise linear infinite;
  will-change: transform, opacity;
}

/* Size & color variants */
.hero-particle:nth-child(odd)  { background: radial-gradient(circle, rgba(224,179,188,0.9) 0%, rgba(224,179,188,0) 70%); }
.hero-particle:nth-child(even) { background: radial-gradient(circle, rgba(197,155,163,0.7) 0%, rgba(197,155,163,0) 70%); }

/* Position, size, timing for each particle */
.hero-particle:nth-child(1)  { left:  6%; bottom: -5%; width: 8px;  height: 8px;  animation-duration: 11s; animation-delay: 0s; }
.hero-particle:nth-child(2)  { left: 14%; bottom: -8%; width: 5px;  height: 5px;  animation-duration:  8s; animation-delay: 1.5s; }
.hero-particle:nth-child(3)  { left: 23%; bottom: -3%; width: 12px; height: 12px; animation-duration: 14s; animation-delay: 0.8s; }
.hero-particle:nth-child(4)  { left: 35%; bottom: -6%; width: 6px;  height: 6px;  animation-duration:  9s; animation-delay: 3s; }
.hero-particle:nth-child(5)  { left: 47%; bottom: -4%; width: 10px; height: 10px; animation-duration: 12s; animation-delay: 0.4s; }
.hero-particle:nth-child(6)  { left: 58%; bottom: -7%; width: 4px;  height: 4px;  animation-duration:  7s; animation-delay: 2s; }
.hero-particle:nth-child(7)  { left: 66%; bottom: -5%; width: 14px; height: 14px; animation-duration: 16s; animation-delay: 1s; }
.hero-particle:nth-child(8)  { left: 75%; bottom: -3%; width: 7px;  height: 7px;  animation-duration: 10s; animation-delay: 4s; }
.hero-particle:nth-child(9)  { left: 83%; bottom: -6%; width: 5px;  height: 5px;  animation-duration:  8s; animation-delay: 0.6s; }
.hero-particle:nth-child(10) { left: 91%; bottom: -4%; width: 9px;  height: 9px;  animation-duration: 13s; animation-delay: 2.5s; }
.hero-particle:nth-child(11) { left: 30%; bottom: -9%; width: 6px;  height: 6px;  animation-duration: 11s; animation-delay: 5s; }
.hero-particle:nth-child(12) { left: 55%; bottom: -5%; width: 11px; height: 11px; animation-duration: 15s; animation-delay: 3.5s; }

@keyframes bokeh-rise {
  0%   { transform: translateY(0)     translateX(0)    scale(0.3); opacity: 0;   }
  8%   { opacity: 0.85; }
  40%  { transform: translateY(-30vh) translateX(12px) scale(1);   opacity: 0.6; }
  70%  { transform: translateY(-60vh) translateX(-8px) scale(0.8); opacity: 0.35;}
  95%  { opacity: 0; }
  100% { transform: translateY(-90vh) translateX(5px)  scale(0.4); opacity: 0;   }
}

/* Hero parallax — text moves slightly on scroll */
.hero-content {
  will-change: transform;
  transition: transform 0.05s linear;
}

/* Small sparkle accent ✦ on the eyebrow */
.hero-eyebrow::before {
  content: '✦';
  margin-right: 0.5rem;
  color: var(--rose);
  font-size: 0.6em;
  opacity: 0.7;
  animation: sparkle-pulse 3s ease-in-out infinite;
}
.hero-eyebrow::after {
  content: '✦';
  margin-left: 0.5rem;
  color: var(--rose);
  font-size: 0.6em;
  opacity: 0.7;
  animation: sparkle-pulse 3s ease-in-out 1.5s infinite;
}
@keyframes sparkle-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50%       { opacity: 0.9; transform: scale(1.15); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-particle { animation: none !important; opacity: 0 !important; }
  .hero-eyebrow::before, .hero-eyebrow::after { animation: none !important; }
  .hero-content { will-change: auto; transition: none; }
}

/* ══════════════════════════════════════════════
   HERO VIDEO BACKGROUND
══════════════════════════════════════════════ */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* Fade the video in once loaded */
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity;
}

.hero-video.loaded {
  opacity: 1;
}

/* Hide the static image once video is playing */
.hero.video-ready .hero-img {
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* Layered moody overlay:
   1. Bottom: dark brown gradient rising from base
   2. Middle: semi-transparent brown wash (dims the video, preserves colour)
   3. Top: subtle vignette edges */
.hero-overlay--video {
  background:
    /* strong vignette edges */
    radial-gradient(ellipse at center, transparent 25%, rgba(30,12,10,0.65) 100%),
    /* heavy layered gradient — cinematic, deep, moody */
    linear-gradient(to bottom,
      rgba(40, 18, 16, 0.70) 0%,
      rgba(60, 30, 25, 0.50) 30%,
      rgba(50, 22, 18, 0.62) 60%,
      rgba(20,  8,  6, 0.90) 100%
    );
}

/* Slow Ken Burns on the video itself for extra cinema feel */
@keyframes hero-video-drift {
  0%   { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1);    }
}
.hero-video.loaded {
  animation: hero-video-drift 12s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
  .hero-video.loaded { opacity: 0.6; }
}

/* ══════════════════════════════════════════════
   SAFE AREA — Dynamic Island & Notch fixes
   Eliminates the white line at the top on all
   modern iPhones (Dynamic Island, notch, etc.)
══════════════════════════════════════════════ */

/* 1. Dark background behind the status bar area */
html {
  background-color: #1a0a08;
}

/* 2. Nav padding accounts for safe area top
      (Dynamic Island phones have ~59px, notch ~44px) */
.nav {
  padding-top: max(1.4rem, calc(0.75rem + env(safe-area-inset-top)));
}
.nav.scrolled {
  padding-top: max(0.85rem, calc(0.5rem + env(safe-area-inset-top)));
}

/* 3. Hero extends behind the entire screen top
      including safe area — no gap */
.hero {
  min-height: 100dvh; /* dvh respects browser chrome on mobile */
  /* Extend hero up behind the status bar */
  margin-top: calc(-1 * env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
}

/* 4. Gradient overlay — extra dark band at the very top
      covers the Dynamic Island / notch zone */
.hero-overlay--video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: calc(env(safe-area-inset-top, 44px) + 60px);
  background: linear-gradient(to bottom,
    rgba(15, 5, 4, 0.98) 0%,
    rgba(20, 8, 6, 0.85) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* 5. Floating dock — clear of home indicator at bottom */
.site-dock {
  bottom: max(1.5rem, calc(0.75rem + env(safe-area-inset-bottom)));
  right: max(1.5rem, calc(0.75rem + env(safe-area-inset-right)));
}

/* 6. Cookie banner — clear of home indicator */
.cookie-banner {
  padding-bottom: max(1rem, calc(0.75rem + env(safe-area-inset-bottom)));
}
