/* ═══════════════════════════════════════════════════
   White Chilean Wedding Planner — Editorial Style
   ═══════════════════════════════════════════════════ */

:root {
  interpolate-size: allow-keywords;
  --bg: #1C1C1E;
  --surface: #2A2A2E;
  --surface-2: #353539;
  --ink: #F5F0EB;
  --ink-soft: rgba(245, 240, 235, 0.65);
  --accent: #C4956A;
  --accent-2: #7B9E6B;
  --line: rgba(196, 149, 106, 0.25);
  --line-strong: rgba(196, 149, 106, 0.5);
  --header-h: 80px;
  --container-pad: clamp(16px, 4vw, 32px);
  --max-w: 1320px;
  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: Georgia, 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  --radius: 4px;
}

/* ─── Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { overflow-x: hidden; max-width: 100vw; margin: 0; }
html.no-scroll, html.no-scroll body { overflow: hidden; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1vw + 0.85rem, 1.125rem);
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── Skip link ─── */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: var(--radius);
  font-size: 0.875rem; z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 8px; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 1.5vw, 1.5rem); }
p { margin-bottom: 1.2em; max-width: 68ch; }
a { color: var(--accent); text-decoration: none; transition: color 240ms ease; }
a:hover { color: var(--ink); }
strong { font-weight: 600; }
blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 1.4;
  border-left: 2px solid var(--accent);
  padding-left: clamp(1rem, 3vw, 2rem);
  margin: 2rem 0;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ─── Drop caps ─── */
.drop-cap::first-letter {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  float: left;
  font-size: 4.5em;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--accent);
}
.drop-cap-rotating::first-letter {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  float: left;
  font-size: 4.5em;
  line-height: 0.8;
  margin-right: 0.08em;
  margin-top: 0.05em;
  color: var(--accent);
  transition: opacity 600ms ease;
}

/* ─── Container ─── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  background: rgba(28, 28, 30, 0.85);
  padding: 0 var(--container-pad);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 240ms ease, box-shadow 240ms ease, height 240ms ease, padding 240ms ease;
}
.site-header.scrolled {
  background: rgba(28, 28, 30, 0.98);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.18);
  --header-h: 68px;
  height: 68px;
}
.scroll-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width 60ms linear;
  pointer-events: none;
}
.header-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.header-logo:hover { color: var(--accent); }

/* ─── Nav desktop ─── */
.nav-desktop {
  display: none;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}
.nav-desktop a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 240ms ease;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.is-active { color: var(--accent); }
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop .nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 240ms ease, color 240ms ease;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ─── Hamburger ─── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px; height: 48px;
  background: none; border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 200ms ease;
}
.nav-toggle span:nth-child(1) { margin-bottom: 6px; }
.nav-toggle span:nth-child(3) { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ─── Mobile drawer ─── */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw);
  background: var(--surface);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 2rem) var(--container-pad) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overscroll-behavior: contain;
  overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 48px; height: 48px;
  min-width: 44px; min-height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 240ms ease, border-color 240ms ease;
  z-index: 1;
}
.drawer-close:hover { color: var(--accent); border-color: var(--accent); }
.mobile-drawer a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  font-style: italic;
  color: var(--ink);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, padding-left 240ms ease;
}
.mobile-drawer a:hover { color: var(--accent); padding-left: 8px; }
.mobile-drawer a.is-active { color: var(--accent); }

/* ─── Main ─── */
main { padding-top: var(--header-h); }

/* ─── Section spacing ─── */
section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
.section-divider {
  width: 60px; height: 1px;
  background: var(--line-strong);
  margin: 0 auto 3rem;
}

/* ─── Hero — split asymmetric 70/30 ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  min-height: calc(100vh - var(--header-h));
  align-items: center;
}
@media (min-width: 768px) {
  .hero { grid-template-columns: 70fr 30fr; gap: 0; }
}
.hero-content { padding: clamp(2rem, 6vw, 4rem) 0; }
.hero-content h1 {
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-content .subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero-quote {
  margin-top: 3rem;
  position: relative;
  padding-left: 2rem;
}
.hero-quote::before {
  content: '«';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.4;
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  line-height: 1;
}
.hero-decorative {
  display: none;
  position: relative;
  border-left: 1px solid var(--line-strong);
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .hero-decorative { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 2rem; }
}
.hero-decorative .deco-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.hero-decorative .deco-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}

/* ─── Hero image ─── */
.hero-editorial-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  object-fit: cover;
  grid-column: 1 / -1;
  max-height: 520px;
}
@media (min-width: 768px) {
  .hero { position: relative; overflow: hidden; }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(28,28,30,0.82) 20%, rgba(28,28,30,0.4) 55%, rgba(28,28,30,0.55) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-editorial-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    z-index: 0;
  }
  .hero-editorial-img.reveal {
    transform: none;
    transition: opacity 1500ms cubic-bezier(.2,.7,.2,1);
  }
  .hero-editorial-img.reveal.is-in {
    opacity: 0.72;
  }
  .hero-content, .hero-decorative {
    position: relative;
    z-index: 2;
  }
}

/* ─── Filosofia section ─── */
.filosofia-content { max-width: 720px; }

/* ─── Services vertical list ─── */
.services-list { list-style: none; max-width: 800px; }
.services-list li {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: baseline;
  transition: padding-left 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms ease, background 240ms ease;
}
.services-list li:hover { padding-left: 8px; background: rgba(196,149,106,0.03); border-radius: var(--radius); }
.services-list li:hover .service-num { opacity: 1; text-shadow: 0 0 24px rgba(196,149,106,0.25); }
.services-list .service-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--accent);
  opacity: 0.6;
  min-width: 2.5rem;
  transition: opacity 240ms ease, text-shadow 240ms ease;
}
.services-list .service-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.services-list .service-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ─── Testimonial ─── */
.testimonial-section blockquote {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 36ch;
  border-left: none;
  padding-left: 0;
  position: relative;
}
.testimonial-section blockquote::before {
  content: '«';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -3rem;
  left: -1rem;
  line-height: 1;
}
.testimonial-section blockquote::after {
  content: '»';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  bottom: -4rem;
  right: 0;
  line-height: 1;
}
.testimonial-author {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

/* ─── Gallery strip ─── */
.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: clamp(900px, 90%, 1280px);
  margin: 0 auto;
}
@media (min-width: 640px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}
.gallery-strip .gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-strip .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.gallery-strip .gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-strip .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,30,0.4), transparent 50%);
  pointer-events: none;
}

/* ─── Reserva (mini form) ─── */
.reserva-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 480px;
}
@media (min-width: 640px) {
  .reserva-form { grid-template-columns: 1fr 1fr; }
}
.reserva-form .field-full { grid-column: 1 / -1; }
.reserva-form input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 240ms ease;
}
.reserva-form input::placeholder { color: var(--ink-soft); }
.reserva-form input:focus {
  outline: none;
  border-color: var(--accent);
}

/* ─── Buttons ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms cubic-bezier(.2,.7,.2,1);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -8px rgba(196, 149, 106, 0.5), 0 0 0 1px rgba(196, 149, 106, 0.15);
}
.btn-primary:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 240ms cubic-bezier(.2,.7,.2,1), color 240ms cubic-bezier(.2,.7,.2,1), border-color 240ms cubic-bezier(.2,.7,.2,1);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--accent);
}

/* ─── Pricing packages ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease, border-color 240ms ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px rgba(196, 149, 106, 0.28), inset 0 1px 0 rgba(196, 149, 106, 0.12);
  border-color: var(--accent);
}
.pricing-card.featured { border-color: var(--accent); }
.pricing-card h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 1rem;
}
.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(196,149,106,0.1);
}
.pricing-card ul li::before {
  content: '—';
  color: var(--accent);
  margin-right: 0.5rem;
}
.pricing-card .not-included li { opacity: 0.5; text-decoration: line-through; }

/* ─── Process / Timeline ─── */
.process-timeline {
  list-style: none;
  position: relative;
  max-width: 700px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.process-timeline li {
  padding-left: 56px;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-timeline li::before {
  content: '';
  position: absolute;
  left: 14px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  transition: background 240ms ease, box-shadow 240ms ease;
}
.process-timeline .step-time {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.process-timeline h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.process-timeline p {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ─── FAQ ─── */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  list-style: none;
  transition: color 240ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item > .faq-body {
  height: 0;
  padding: 0 0;
  overflow: hidden;
  transition: height 360ms cubic-bezier(.4,0,.2,1),
              padding-block-end 360ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] > .faq-body {
  height: auto;
  padding-block-end: 1.5rem;
}
.faq-item .faq-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item > .faq-body { transition: none; }
}

/* ─── Testimonials grid ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px -8px rgba(196, 149, 106, 0.15);
}
.testimonial-card::before {
  content: '«';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem; left: 1rem;
  line-height: 1;
}
.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.testimonial-card .t-author {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ─── Contact channels ─── */
.contact-channels {
  display: grid;
  gap: 1.2rem;
  max-width: 560px;
}
.contact-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), background 240ms cubic-bezier(.2,.7,.2,1);
  border-radius: var(--radius);
  padding-left: 8px;
  padding-right: 8px;
}
.contact-row:hover {
  transform: translateX(4px);
  background: var(--surface-2);
}
.contact-row svg {
  width: 20px; height: 20px;
  color: var(--ink-soft);
  transition: color 240ms ease, transform 240ms ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-row:hover svg { color: var(--accent); transform: scale(1.08); }
.contact-row .channel-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-row .channel-value {
  font-size: 1rem;
  color: var(--ink);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.contact-row a { color: var(--ink); }
.contact-row a:hover { color: var(--accent); }

/* ─── Form ─── */
.contact-form { max-width: 600px; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 240ms ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-soft); }
.field textarea { min-height: 140px; resize: vertical; }
.field select { cursor: pointer; }
.field select option { background: var(--surface); color: var(--ink); }
.field input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 18px; height: 18px;
  min-width: 18px; min-height: 18px;
  padding: 0; border: 0; margin: 2px 0 0;
  accent-color: var(--accent);
}
.field-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.field-checkbox label {
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: 0;
  line-height: 1.4;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.is-visible { display: block; }
.form-error {
  color: #e87;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ─── Footer ─── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-col h4 {
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.footer-col a { display: block; transition: color 240ms ease, padding-left 240ms ease; }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── Cookie banner ─── */
.cookie-banner {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  z-index: 9999;
  box-shadow: 0 12px 40px -12px rgba(0,0,0,0.4);
}
@media (min-width: 768px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 1rem;
  font-style: normal;
  margin-bottom: 0.5rem;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-actions button {
  flex: 1;
  min-width: 100px;
  min-height: 44px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease;
}
.cookie-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cookie-actions button[data-consent="accept"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.cookie-actions button[data-consent="accept"]:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cookie-actions button[data-consent="reject"] {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.cookie-actions button[data-consent="reject"]:hover {
  background: rgba(196, 149, 106, 0.12);
  color: var(--ink);
  border-color: var(--accent);
}
@media (max-width: 640px) {
  .cookie-banner {
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 1rem 1.2rem;
  }
  .cookie-banner p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.45;
  }
  .cookie-actions { gap: 0.4rem; }
  .cookie-actions button { min-width: 0; padding: 10px 14px; font-size: 0.78rem; }
}

/* ─── Tables scroll ─── */
.table-scroll {
  display: block; width: 100%; max-width: 100%; min-width: 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.table-scroll > table { margin: 0 !important; min-width: 480px; width: 100%; }
:where(*:has(> .table-scroll), *:has(> * > .table-scroll), *:has(> * > * > .table-scroll)) { min-width: 0; }
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.9rem;
}
table th, table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
table th {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}
table td { color: var(--ink-soft); }

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms cubic-bezier(.22,.61,.36,1), transform 900ms cubic-bezier(.22,.61,.36,1);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
html.no-js .reveal { opacity: 1; transform: none; }

/* ─── Niche animations: Wedding ─── */

/* Warm glow on CTA */
.btn-primary { position: relative; overflow: visible; }
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius) + 3px);
  background: radial-gradient(ellipse at 50% 80%, rgba(196,149,106,0.35), transparent 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 400ms cubic-bezier(.22,.61,.36,1);
  z-index: -1;
}
.btn-primary:hover::after { opacity: 1; }

/* Veil float — ambient hero decoration */
@keyframes veil-float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  33% { transform: translateY(-12px) rotate(1deg); opacity: 0.5; }
  66% { transform: translateY(-6px) rotate(-0.5deg); opacity: 0.35; }
}
.veil-deco {
  animation: veil-float 10s ease-in-out infinite;
}

/* Floral bloom on section reveal */
@keyframes bloom {
  0% { transform: scale(0.7) rotate(-5deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.bloom-in.is-in { animation: bloom 800ms cubic-bezier(.2,.7,.2,1) forwards; }

/* Gold calligraphy stroke — heading mask reveal */
@keyframes gold-stroke {
  from { background-size: 0% 1px; }
  to { background-size: 100% 1px; }
}
.heading-reveal {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
}
.heading-reveal.is-in {
  animation: gold-stroke 1200ms cubic-bezier(.22,.61,.36,1) 200ms forwards;
}

/* Petal drift ambient */
@keyframes petal-drift {
  0% { transform: translateY(-10px) translateX(0) rotate(0deg); opacity: 0; }
  15% { opacity: 0.4; }
  50% { transform: translateY(50vh) translateX(30px) rotate(180deg); opacity: 0.3; }
  100% { transform: translateY(100vh) translateX(-10px) rotate(340deg); opacity: 0; }
}
.petal {
  position: fixed;
  width: 6px; height: 10px;
  background: var(--accent);
  border-radius: 50% 0 50% 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: petal-drift 16s ease-in-out infinite;
}
.petal:nth-child(1) { left: 8%; animation-delay: 0s; animation-duration: 15s; }
.petal:nth-child(2) { left: 25%; animation-delay: 4s; animation-duration: 18s; }
.petal:nth-child(3) { left: 65%; animation-delay: 8s; animation-duration: 14s; }
.petal:nth-child(4) { left: 88%; animation-delay: 12s; animation-duration: 20s; }

@media (prefers-reduced-motion: reduce) {
  .veil-deco, .petal { animation: none !important; opacity: 0 !important; }
  .heading-reveal.is-in { animation: none; background-size: 100% 2px; }
  .bloom-in.is-in { animation: none; transform: none; opacity: 1; }
}

/* ─── Counter animation ─── */
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  font-style: italic;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* ─── Manifesto quote ─── */
.manifesto {
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  max-width: 20ch;
  margin: 0 auto;
  line-height: 1.3;
  color: var(--ink);
}

/* ─── Trust strip ─── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.trust-badge svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ─── Policy pages ─── */
.policy-content { max-width: 760px; line-height: 1.7; }
.policy-content h2 { margin-top: 3rem; }
.policy-content h3 { margin-top: 2rem; margin-bottom: 0.8rem; font-size: 1.2rem; }
.policy-content p { color: var(--ink-soft); }
.policy-content ul, .policy-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
  color: var(--ink-soft);
}
.policy-content li { margin-bottom: 0.5rem; }

/* ─── Team ─── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px -8px rgba(196,149,106,0.15);
}
.team-card h4 { margin-bottom: 0.3rem; }
.team-card .role {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.team-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* ─── Cancellation tiers ─── */
.cancel-tiers {
  display: grid;
  gap: 1rem;
  max-width: 600px;
}
.cancel-tier {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cancel-tier .tier-days {
  font-family: var(--font-heading);
  font-weight: 800;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  min-width: 80px;
}
.cancel-tier .tier-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ─── Focus ring ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .hero { min-height: auto; padding: 2rem 0; }
  .hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .pricing-grid { gap: 1rem; }
  .pricing-card { padding: 1.2rem; }
  section { padding: clamp(3rem, 8vw, 5rem) 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 390px) {
  h1 { font-size: 2rem; }
  .trust-strip { gap: 0.5rem; }
  .trust-badge { padding: 5px 10px; font-size: 0.7rem; }
}

/* ─── Print ─── */
@media print {
  .site-header, .cookie-banner, .nav-toggle, .mobile-drawer, .drawer-backdrop,
  .petal { display: none !important; }
  body { color: #000; background: #fff; }
  main { padding-top: 0; }
}

/* ─── Smooth scroll offset for anchors ─── */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ─── Gold rule divider ─── */
.gold-rule {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
@keyframes gold-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
.gold-rule::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 50%;
  background: linear-gradient(90deg, transparent, rgba(245,240,235,0.4), transparent);
  animation: gold-shimmer 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .gold-rule::after { animation: none; }
}

/* ─── Process timeline warm glow ─── */
.process-timeline li:hover::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(196,149,106,0.4);
}

/* ─── Contact row hover warmth ─── */
.contact-row:hover {
  box-shadow: 0 2px 12px -4px rgba(196,149,106,0.15);
}

/* ─── Section divider reveal ─── */
@supports selector(:has(*)) {
  .section-divider {
    transform: scaleX(0);
    transition: transform 800ms cubic-bezier(.16,1,.3,1);
  }
  section:has(.is-in) > .section-divider {
    transform: scaleX(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section-divider { transform: scaleX(1) !important; transition: none !important; }
}


/* ─── Sitemap page ─── */
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
.sitemap-list a { font-size: 1rem; }

/* ─── Wedding-themed micro-interactions ─── */

/* Warm glow on testimonial cards */
.testimonial-card:hover {
  box-shadow: 0 8px 28px -8px rgba(196,149,106,0.2), 0 0 0 1px rgba(196,149,106,0.08);
}

/* Pricing card featured warm pulse */
.pricing-card.featured {
  box-shadow: 0 0 0 1px var(--accent), 0 8px 24px -12px rgba(196,149,106,0.18);
}

/* Gallery item warm overlay on hover */
.gallery-strip .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(196,149,106,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 500ms cubic-bezier(.22,.61,.36,1);
  z-index: 1;
  pointer-events: none;
}
.gallery-strip .gallery-item:hover::before { opacity: 1; }

/* Services list warm accent glow on hover */
.services-list li:hover {
  box-shadow: inset 3px 0 0 var(--accent);
}

/* Process timeline warm glow pulse */
.process-timeline li:hover {
  background: rgba(196,149,106,0.02);
  border-radius: var(--radius);
}

/* Team card warm border glow */
.team-card:hover {
  border-color: rgba(196,149,106,0.35);
}

/* Nav desktop link underline smoother */
.nav-desktop a::after {
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}

/* FAQ warm accent on open */
.faq-item[open] summary {
  color: var(--accent);
}

/* Mobile drawer link stagger */
.mobile-drawer a { transform: translateX(16px); transition: transform 320ms cubic-bezier(.2,.7,.2,1), color 240ms ease, padding-left 240ms ease; }
.mobile-drawer.is-open a { transform: none; }
.mobile-drawer.is-open a:nth-of-type(1) { transition-delay: 80ms; }
.mobile-drawer.is-open a:nth-of-type(2) { transition-delay: 130ms; }
.mobile-drawer.is-open a:nth-of-type(3) { transition-delay: 180ms; }
.mobile-drawer.is-open a:nth-of-type(4) { transition-delay: 230ms; }
.mobile-drawer.is-open a:nth-of-type(5) { transition-delay: 280ms; }
.mobile-drawer.is-open a:nth-of-type(6) { transition-delay: 330ms; }

@media (prefers-reduced-motion: reduce) {
  .mobile-drawer a { transform: none; transition: none; }
  .gallery-strip .gallery-item::before { transition: none; }
  .testimonial-card, .pricing-card, .team-card { transition: none; }
}
