:root {
  --bg: #FAF6F1;
  --surface: #FFFFFF;
  --ink: #2C2420;
  --accent: #9B4D3A;
  --accent-2: #C8A882;
  --line: rgba(44, 36, 32, 0.12);
  --surface-2: rgba(200, 168, 130, 0.08);
  --header-h: 72px;
  interpolate-size: allow-keywords;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
html, body { overflow-x: hidden; max-width: 100vw; margin: 0; }
body {
  font-family: Georgia, 'Noto Serif', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--ink); color: var(--surface);
  padding: 8px 16px; z-index: 9999; font-size: 14px;
  border-radius: 0 0 4px 4px; transition: top 200ms;
}
.skip-link:focus { top: 0; outline: 2px solid var(--accent); outline-offset: 2px; }

:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-style: italic; line-height: 1.15; color: var(--ink);
}
h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1em; }

.container {
  max-width: 1080px; margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
}

.gold-rule {
  border: none; height: 1px; background: var(--accent-2);
  max-width: 120px; margin: 2.5rem auto; opacity: 0.6;
}

.eyebrow {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem; display: block;
}

.section-pad { padding: clamp(3rem, 8vw, 6rem) 0; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--ink); color: var(--surface);
  padding: 14px 36px; font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase; border: 2px solid var(--ink);
  transition: background 240ms cubic-bezier(.4,0,.2,1), color 240ms cubic-bezier(.4,0,.2,1), box-shadow 240ms;
  position: relative; overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent); color: var(--surface);
  border-color: var(--accent); box-shadow: 0 4px 20px rgba(155, 77, 58, 0.25);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.6); transform: scaleX(0);
  transform-origin: left; transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.btn-primary:active::after { transform: scaleX(1); transition-duration: 80ms; }

.btn-ghost {
  display: inline-block; background: transparent; color: var(--ink);
  padding: 14px 36px; font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.95rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--line); transition: all 240ms cubic-bezier(.4,0,.2,1);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--surface); color: var(--ink);
  border-color: var(--accent-2);
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1080;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background 360ms ease, box-shadow 360ms ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(250, 246, 241, 1);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.18);
}
body:has(.hero) .site-header:not(.scrolled) {
  background: rgba(44, 36, 32, 0.70);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
body:has(.hero) .site-header:not(.scrolled) .logo { color: var(--surface); }
body:has(.hero) .site-header:not(.scrolled) .logo__accent { color: var(--accent-2); }
body:has(.hero) .site-header:not(.scrolled) .nav__link { color: rgba(255,255,255,0.85); }
body:has(.hero) .site-header:not(.scrolled) .nav__link:hover { color: var(--accent-2); }
body:has(.hero) .site-header:not(.scrolled) .nav__link::after { background: var(--accent-2); }
body:has(.hero) .site-header:not(.scrolled) .nav-cta {
  background: var(--accent); border-color: var(--accent); color: var(--surface);
}
body:has(.hero) .site-header:not(.scrolled) .nav-toggle span { background: var(--surface); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); max-width: 1080px; margin: 0 auto;
  padding-left: clamp(16px, 4vw, 32px); padding-right: clamp(16px, 4vw, 32px);
}
.logo {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-style: italic; font-size: 1.5rem; color: var(--ink);
  letter-spacing: -0.02em;
}
.logo__accent { color: var(--accent); }

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop .nav__link {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.85rem;
  letter-spacing: 0.04em; color: var(--ink); position: relative;
  padding: 4px 0; transition: color 240ms;
}
.nav-desktop .nav__link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px; background: var(--accent-2);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.nav-desktop .nav__link:hover::after,
.nav-desktop .nav__link.is-active::after { width: 100%; }
.nav-desktop .nav__link.is-active { color: var(--accent); }
.nav-desktop .nav__link:hover { color: var(--accent); }

.nav-desktop .nav-cta {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--ink); color: var(--surface);
  padding: 10px 24px; border: 1.5px solid var(--ink);
  transition: background 240ms, color 240ms, border-color 240ms;
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover {
  background: var(--accent); color: var(--surface); border-color: var(--accent);
}
.nav-desktop .nav-cta.is-active { color: var(--surface); }

@media (max-width: 1024px) { .nav-desktop { display: none; } }

/* ── NAV TOGGLE ── */
.nav-toggle {
  width: 44px; height: 44px; z-index: 1100;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 0; background: none;
}
.nav-toggle span {
  display: block; width: 26px; height: 3px; background: var(--ink);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  border-radius: 2px;
}
.nav-toggle:hover span { background: var(--accent); }
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
@media (max-width: 1024px) {
  .nav-toggle {
    border: 1.5px solid rgba(44, 36, 32, 0.28); border-radius: 6px;
    background: rgba(250, 246, 241, 0.35);
    transition: border-color 240ms, background 240ms;
  }
  .nav-toggle:hover { border-color: var(--accent); background: rgba(250, 246, 241, 0.55); }
  body:has(.hero) .site-header:not(.scrolled) .nav-toggle {
    border-color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.18);
  }
  body:has(.hero) .site-header:not(.scrolled) .nav-toggle:hover {
    border-color: var(--accent-2);
    background: rgba(255,255,255,0.3);
  }
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
@media (min-width: 1025px) { .nav-toggle { display: none !important; } }

/* ── 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;
}
.drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 92vw); z-index: 1050;
  background: var(--bg); transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
  padding: calc(var(--header-h) + 2rem) clamp(24px, 6vw, 40px) 2rem;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu .nav__link {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-style: italic; font-size: 1.4rem; color: var(--ink);
  padding: 16px 0; border-bottom: 1px solid var(--line);
  transition: color 240ms, transform 240ms;
}
.mobile-menu .nav__link:hover { color: var(--accent); transform: translateX(4px); }
.mobile-menu .nav__link.is-active { color: var(--accent); }
.mobile-menu .nav-cta {
  display: inline-block; margin-top: 1.5rem;
  background: var(--ink); color: var(--surface);
  padding: 14px 32px; text-align: center;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 240ms, color 240ms;
}
.mobile-menu .nav-cta:hover { background: var(--accent); color: var(--surface); }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: absolute; bottom: 0; left: 0; height: 2px; width: 0;
  background: var(--accent-2); z-index: 1;
  transition: none; pointer-events: none;
}

/* ── DRAWER CLOSE ── */
.drawer-close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--ink);
  background: none; border: 1.5px solid var(--line); border-radius: 6px;
  transition: color 240ms cubic-bezier(.4,0,.2,1), border-color 240ms;
  z-index: 1;
}
.drawer-close:hover { color: var(--accent); border-color: var(--accent); }

main { padding-top: var(--header-h); }
main:has(.hero) { padding-top: 0; }
main section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: clamp(4rem, 12vw, 8rem) clamp(16px, 4vw, 32px);
  background: var(--ink) url('../images/dugun-sahil.jpg') center/cover no-repeat;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(44,36,32,0.38) 0%, rgba(44,36,32,0.45) 40%, rgba(44,36,32,0.55) 70%, rgba(44,36,32,0.65) 100%);
}
.hero__content {
  position: relative; z-index: 3; max-width: 800px; color: var(--surface);
  text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 0 48px rgba(0,0,0,0.3);
}
.hero .eyebrow { margin-bottom: 1.5rem; font-size: 0.8rem; letter-spacing: 0.25em; color: var(--accent-2); text-shadow: 0 1px 12px rgba(0,0,0,0.6); }
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 1.05;
  margin-bottom: 1rem; overflow: hidden; color: var(--surface);
}
.hero-title .char {
  display: inline-block; opacity: 0;
  transform: translateY(50px);
  animation: charReveal 500ms cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 40ms + 200ms);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5), 0 0 60px rgba(0,0,0,0.2);
}
.hero-title .char-space { width: 0.3em; }
@keyframes charReveal { to { opacity: 1; transform: none; } }

.hero-gold-line {
  width: 80px; height: 1.5px; background: var(--accent-2);
  margin: 1.5rem auto; opacity: 0;
  animation: fadeIn 600ms 0.8s forwards;
}
.hero-date {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.8rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-2); opacity: 0;
  animation: fadeIn 600ms 0.9s forwards;
}
.hero-sub {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6; max-width: 540px; margin: 1.5rem auto 2rem;
  color: rgba(255,255,255,0.9);
  opacity: 0; animation: fadeUp 600ms 1s forwards;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero .btn-primary {
  opacity: 0; animation: fadeUp 600ms 1.1s forwards;
  background: var(--accent); border-color: var(--accent); color: var(--surface);
}
.hero .btn-primary:hover {
  background: var(--accent-2); border-color: var(--accent-2); color: var(--ink);
  box-shadow: 0 6px 24px rgba(200,168,130,0.4);
}

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.hero-sub, .hero .btn-primary { transform: translateY(20px); }

/* Film grain overlay */
.hero-grain {
  position: absolute; inset: -50%; width: 200%; height: 200%;
  z-index: 2; pointer-events: none; opacity: 0.1;
  mix-blend-mode: multiply;
  animation: filmGrain 600ms steps(4) infinite;
}
@keyframes filmGrain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, -4%); }
  50% { transform: translate(4%, 2%); }
  75% { transform: translate(-2%, 3%); }
}

/* Bokeh ambient */
.hero-bokeh {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.bokeh-dot {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,130,0.35) 0%, transparent 70%);
  animation: bokehFloat var(--dur, 10s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes bokehFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(calc(var(--drift, -60px))) scale(1.15); opacity: 0.6; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title .char { opacity: 1; transform: none; animation: none !important; }
  .hero-gold-line, .hero-date, .hero-sub, .hero .btn-primary {
    opacity: 1; transform: none; animation: none !important;
  }
  .hero-grain { animation: none; }
  .bokeh-dot { animation: none; opacity: 0.3; }
}

html.no-js .hero-title .char { opacity: 1; transform: none; animation: none; }
html.no-js .hero-gold-line, html.no-js .hero-date,
html.no-js .hero-sub, html.no-js .hero .btn-primary {
  opacity: 1; transform: none; animation: none !important;
}

/* ── MANIFESTO ── */
.manifesto { background: var(--surface); }
.manifesto__body {
  max-width: 680px; margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.15rem); line-height: 1.85;
  text-align: justify; hyphens: auto;
}
.drop-cap::first-letter {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-style: italic; font-size: 4.2em; float: left;
  line-height: 0.8; margin: 0.05em 0.12em 0 0;
  color: var(--accent);
}
.manifesto .quote-inline {
  display: block; text-align: center;
  font-family: Georgia, 'Times New Roman', serif; font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--accent); margin: 2rem 0; padding: 1rem 0;
  border-top: 1px solid var(--accent-2); border-bottom: 1px solid var(--accent-2);
}

/* ── GALLERY ── */
.gallery { background: var(--bg); }
.masonry {
  column-count: 2; column-gap: clamp(12px, 2vw, 20px);
  max-width: clamp(900px, 90%, 1080px); margin: 0 auto;
}
.masonry__item {
  break-inside: avoid; margin-bottom: clamp(12px, 2vw, 20px);
  position: relative; overflow: hidden; border-radius: 2px;
  cursor: pointer;
}
.masonry__item img {
  width: 100%; display: block;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.masonry__item:hover img { transform: scale(1.04); }
.masonry__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.3) 0%, transparent 50%);
  opacity: 0; transition: opacity 360ms;
}
.masonry__item:hover::after { opacity: 1; }
.masonry__item figcaption {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.8rem; color: var(--surface);
  opacity: 0; transform: translateY(8px); visibility: hidden; z-index: 1;
}
.masonry__item:hover figcaption { opacity: 1; transform: none; visibility: visible; transition: opacity 360ms, transform 360ms; }

@media (max-width: 640px) { .masonry { column-count: 1; } }

/* ── APPROACH ── */
.approach { background: var(--surface); }
.approach__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
  max-width: 960px; margin: 0 auto;
}
.approach__text { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.8; }
.pull-quote {
  font-family: Georgia, 'Times New Roman', serif; font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); line-height: 1.4;
  color: var(--accent); padding: 2rem 0;
  border-left: 3px solid var(--accent-2); padding-left: 1.5rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .approach__grid { grid-template-columns: 1fr; }
}

/* ── PROCESS ── */
.process { background: var(--bg); }
.process__timeline {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  position: relative; padding-left: 40px;
}
.process__timeline::before {
  content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
  width: 1.5px; background: var(--accent-2); opacity: 0.4;
}
.process__step {
  position: relative; padding: 0 0 2.5rem 1.5rem;
}
.process__step::before {
  content: ''; position: absolute; left: -33px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--accent-2); background: var(--bg);
  transition: background 360ms, border-color 360ms;
}
.process__step:hover::before {
  background: var(--accent); border-color: var(--accent);
}
.process__step-tag {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 0.3rem;
}
.process__step h3 { margin-bottom: 0.4rem; font-size: 1.15rem; }
.process__step p { font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ── PACKAGES ── */
.packages { background: var(--surface); }
.packages__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 24px); max-width: 1080px; margin: 0 auto;
}
.pkg-card {
  background: var(--bg); border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2.5rem); position: relative;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms;
  overflow: hidden;
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px -8px rgba(155, 77, 58, 0.15);
}
.pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent-2);
  transform: scaleX(0); transition: transform 360ms cubic-bezier(.2,.7,.2,1);
}
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card__shimmer {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(200,168,130,0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms cubic-bezier(.4,0,.2,1);
}
.pkg-card:hover .pkg-card__shimmer { transform: translateX(100%); }

.pkg-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pkg-card__price {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-size: 1.8rem; color: var(--accent); margin: 0.5rem 0 1rem;
}
.pkg-card__price small { font-size: 0.5em; font-weight: 400; color: var(--ink); opacity: 0.6; }
.pkg-card__list { margin-bottom: 1rem; }
.pkg-card__list li {
  font-size: 0.88rem; line-height: 1.6; padding: 4px 0 4px 20px;
  position: relative;
}
.pkg-card__list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
}
.pkg-card__list.included li::before { background: var(--accent-2); }
.pkg-card__list.excluded li::before {
  background: none; border: 1.5px solid var(--line);
}
.pkg-card__delivery {
  font-size: 0.78rem; color: var(--accent); margin-top: 0.5rem;
  font-style: italic;
}
.pkg-disclaimer {
  text-align: center; font-size: 0.8rem; color: var(--ink);
  opacity: 0.55; margin-top: 2rem; font-style: italic;
}

@media (max-width: 768px) {
  .packages__grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px); max-width: 1080px; margin: 0 auto;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--line);
  padding: clamp(1.5rem, 3vw, 2rem); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 12px; left: 18px;
  font-family: Georgia, 'Times New Roman', serif; font-size: 4rem;
  color: var(--accent-2); opacity: 0.25; line-height: 1;
}
.testimonial-card__body {
  font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem;
  padding-top: 1.5rem; font-style: italic;
}
.testimonial-card__author {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-size: 0.85rem; color: var(--accent);
}
.testimonial-card__meta {
  font-size: 0.75rem; color: var(--ink); opacity: 0.5; margin-top: 2px;
}
@media (max-width: 768px) { .testimonials__grid { grid-template-columns: 1fr; } }

/* ── FAQ ── */
.faq { background: var(--surface); }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 2.5vw, 22px) 0;
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-style: italic; font-size: clamp(1rem, 1.8vw, 1.15rem);
  cursor: pointer; list-style: none; user-select: none;
  transition: color 240ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 1.4rem;
  color: var(--accent-2); flex-shrink: 0; margin-left: 1rem;
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
}
.faq-item[open] summary::after { content: '\2212'; transform: rotate(180deg); }
.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: 26px;
}
.faq-body p {
  font-size: 0.92rem; line-height: 1.75; margin: 0;
}
@media (prefers-reduced-motion: reduce) {
  .faq-item .faq-body { transition: none; }
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--ink); color: var(--surface);
  text-align: center; padding: clamp(3rem, 8vw, 5rem) clamp(16px, 4vw, 32px);
}
.cta-section h2 { color: var(--surface); margin-bottom: 0.8rem; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 2rem; }
.cta-section .btn-primary {
  background: var(--accent); color: var(--surface);
  border-color: var(--accent);
}
.cta-section .btn-primary:hover {
  background: var(--accent-2); color: var(--ink); border-color: var(--accent-2);
}

/* ── CONTACT PAGE ── */
.contact-channels {
  display: grid; grid-template-columns: auto 1fr;
  gap: 14px; align-items: start; max-width: 520px;
}
.contact-row {
  display: contents;
  transition: color 240ms cubic-bezier(.4,0,.2,1);
}
.contact-row:hover .contact-icon { color: var(--accent); transform: scale(1.08); }
.contact-row:hover .contact-info { transform: translateX(4px); }
.contact-icon {
  color: var(--accent-2); transition: color 240ms cubic-bezier(.4,0,.2,1), transform 240ms;
  padding-top: 2px;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-info {
  transition: transform 240ms cubic-bezier(.4,0,.2,1);
}
.contact-info h4 {
  font-size: 0.85rem; font-style: normal; font-weight: 700;
  margin-bottom: 2px; letter-spacing: 0.04em;
}
.contact-info p, .contact-info a {
  font-size: 0.9rem; line-height: 1.5; margin: 0;
}
.contact-info a:hover { color: var(--accent); }

/* ── FORM ── */
.form-wrap { max-width: 560px; }
.form-wrap h2 { margin-bottom: 0.5rem; }
.form-wrap p.form-intro {
  font-size: 0.9rem; margin-bottom: 1.5rem; opacity: 0.7;
}
.field { margin-bottom: 1.2rem; }
.field label {
  display: block; font-size: 0.82rem; font-weight: 500;
  margin-bottom: 4px; letter-spacing: 0.03em;
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%; padding: 12px 14px;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif; font-size: 0.92rem;
  background: var(--surface); color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 2px;
  transition: border-color 240ms, box-shadow 240ms;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.15);
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }
.field select { cursor: pointer; }

.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: flex; gap: 10px; align-items: flex-start;
}
.field-checkbox label {
  font-size: 0.82rem; line-height: 1.5; margin: 0;
  word-break: break-word; overflow-wrap: anywhere;
}

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-success, .form-error {
  padding: 14px 18px; border-radius: 4px; margin-top: 1rem;
  font-size: 0.9rem; display: none;
}
.form-success { background: rgba(155, 77, 58, 0.08); color: var(--accent); border: 1px solid var(--accent); }
.form-error { background: rgba(180, 40, 40, 0.06); color: #8B2020; border: 1px solid #8B2020; }

/* ── ABOUT PAGE ── */
.about-intro { max-width: 680px; margin: 0 auto; text-align: center; }
.about-intro p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.8; }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px); max-width: 960px; margin: 2rem auto 0;
}
.team-card {
  text-align: center;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms cubic-bezier(.2,.7,.2,1);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px -8px rgba(155, 77, 58, 0.15);
}
.team-card__img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 2px; margin-bottom: 1rem;
  filter: grayscale(0.15);
  transition: filter 360ms, transform 360ms;
}
.team-card:hover .team-card__img { filter: grayscale(0); transform: scale(1.02); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.team-card__role {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem;
}
.team-card__bio { font-size: 0.85rem; line-height: 1.65; text-align: left; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 2rem auto 0; } }

.credentials {
  max-width: 680px; margin: 0 auto;
  text-align: center;
}
.credentials__list { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1rem; }
.credentials__item {
  background: var(--surface); border: 1px solid var(--line);
  padding: 12px 20px; font-size: 0.82rem;
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
}

/* ── POLICY PAGES ── */
.policy-page { max-width: 720px; margin: 0 auto; }
.policy-page h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.policy-page .policy-date { font-size: 0.8rem; color: var(--ink); opacity: 0.5; margin-bottom: 2rem; }
.policy-page h2 {
  font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: 0.8rem;
  padding-left: 16px; border-left: 3px solid var(--accent-2);
  padding-top: 2px; padding-bottom: 2px;
}
.policy-page h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: 0.5rem; font-style: normal; }
.policy-page p { font-size: 0.92rem; line-height: 1.8; }
.policy-page ul, .policy-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-page li { font-size: 0.92rem; line-height: 1.8; list-style: disc; margin-bottom: 0.35rem; }
.policy-page ol li { list-style: decimal; }

/* ── TABLE 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; }
th, td {
  padding: 10px 14px; text-align: left; font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
th {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.04em;
  background: var(--surface-2);
}

/* ── SITEMAP PAGE ── */
.sitemap-list { max-width: 480px; margin: 0 auto; }
.sitemap-list a {
  display: block; padding: 10px 0;
  font-size: 0.95rem; border-bottom: 1px solid var(--line);
  transition: color 240ms, transform 240ms;
}
.sitemap-list a:hover { color: var(--accent); transform: translateX(4px); }

/* ── 404 PAGE ── */
.page-404 {
  min-height: 60vh; display: flex; align-items: center;
  justify-content: center; text-align: center;
}
.page-404 h1 { font-size: clamp(4rem, 12vw, 8rem); margin-bottom: 0.5rem; color: var(--accent-2); }
.page-404 p { margin-bottom: 2rem; font-size: 1.1rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: clamp(2.5rem, 6vw, 4rem) 0 1.5rem;
}
.site-footer a { color: rgba(255,255,255,0.7); transition: color 240ms; }
.site-footer a:hover { color: var(--accent-2); }
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.footer__brand .logo { color: var(--surface); margin-bottom: 0.8rem; display: inline-block; }
.footer__brand p { font-size: 0.85rem; line-height: 1.6; }
.footer__stats {
  font-size: 0.78rem; letter-spacing: 0.05em; color: var(--accent-2);
  margin-top: 0.5rem;
}
.site-footer h4 {
  font-family: Georgia, 'Times New Roman', serif; font-weight: 700;
  font-style: italic; font-size: 0.95rem; color: var(--surface);
  margin-bottom: 0.8rem;
}
.site-footer .footer__nav a,
.site-footer .footer__legal a {
  display: block; font-size: 0.85rem; padding: 3px 0;
}
.footer__contact p { font-size: 0.85rem; line-height: 1.5; margin-bottom: 0.5rem; }
.footer__bottom {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-size: 0.78rem;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── 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);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 20px 24px; z-index: 9999;
  transform: translateY(140%); opacity: 0;
  transition: transform 280ms cubic-bezier(.2,.7,.2,1), opacity 240ms;
  border-radius: 4px;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 0.95rem; margin-bottom: 0.4rem;
  font-style: normal; font-weight: 700;
}
.cookie-banner p { font-size: 0.82rem; line-height: 1.5; margin-bottom: 1rem; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-btns button {
  flex: 1; min-width: 100px; min-height: 44px;
  padding: 10px 16px; font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  font-size: 0.82rem; border-radius: 2px;
  transition: background 240ms, color 240ms;
  cursor: pointer;
}
.cookie-btns .cookie-accept {
  background: var(--ink); color: var(--surface); border: 1.5px solid var(--ink);
}
.cookie-btns .cookie-accept:hover { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.cookie-btns .cookie-reject {
  background: transparent; color: var(--ink); border: 1.5px solid var(--ink);
}
.cookie-btns .cookie-reject:hover { background: var(--ink); color: var(--surface); border-color: var(--ink); }
.cookie-btns .cookie-settings {
  background: transparent; color: var(--ink); border: 1.5px solid var(--line);
}
.cookie-btns .cookie-settings:hover { background: var(--surface-2); color: var(--ink); }

@media (max-width: 639px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0; max-width: none;
    border-radius: 12px 12px 0 0; padding: 18px 20px 20px;
  }
  .cookie-btns { flex-direction: row; }
  .cookie-btns button { min-height: 46px; font-size: 0.84rem; }
}
@media (min-width: 640px) {
  .cookie-banner { left: 24px; right: auto; max-width: 420px; }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 600ms cubic-bezier(.2,.7,.2,1), transform 600ms cubic-bezier(.2,.7,.2,1);
}
.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 PHOTOGRAPHY ── */

/* Shutter flash on CTA click */
@keyframes shutterFlash {
  0% { opacity: 0; }
  15% { opacity: 0.6; }
  100% { opacity: 0; }
}
.btn-primary:active::before {
  content: ''; position: absolute; inset: -20%;
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, transparent 60%);
  animation: shutterFlash 300ms ease-out forwards;
  pointer-events: none;
}

/* Golden veil sway on section dividers */
@keyframes veilSway {
  0%, 100% { transform: scaleX(1) translateX(0); }
  25% { transform: scaleX(1.03) translateX(3px); }
  75% { transform: scaleX(0.97) translateX(-3px); }
}
.gold-rule { animation: veilSway 8s ease-in-out infinite; }

/* Warm golden glow on gallery hover (lens warmth) */
.masonry__item::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,168,130,0.2) 0%, transparent 70%);
  opacity: 0; transition: opacity 500ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.masonry__item:hover::before { opacity: 1; }

/* Testimonials soft background float */
.testimonials { position: relative; overflow: hidden; }
.testimonials::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,130,0.08) 0%, transparent 70%);
  top: -80px; right: -60px; pointer-events: none;
  animation: bokehFloat 14s ease-in-out infinite;
}
.testimonials::after {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(155,77,58,0.06) 0%, transparent 70%);
  bottom: -40px; left: -40px; pointer-events: none;
  animation: bokehFloat 11s ease-in-out infinite reverse;
}

/* Testimonial card lift + warm border */
.testimonial-card {
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px -6px rgba(155,77,58,0.12);
}

/* Process timeline dot golden pulse on hover */
@keyframes goldenPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,130,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(200,168,130,0); }
}
.process__step:hover::before {
  animation: goldenPulse 1.2s ease-in-out infinite;
}

/* FAQ open/close smoother cubic bezier */
.faq-item summary { transition: color 240ms cubic-bezier(.2,.7,.2,1); }
.faq-item summary::after {
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), color 320ms;
}
.faq-item[open] summary { color: var(--accent); }

/* Credentials item hover */
.credentials__item {
  transition: transform 240ms cubic-bezier(.2,.7,.2,1), box-shadow 240ms, border-color 240ms;
}
.credentials__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(155,77,58,0.1);
  border-color: var(--accent-2);
}

/* Warm glow pulse on hero CTA */
@keyframes warmGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,168,130,0.2); }
  50% { box-shadow: 0 6px 32px rgba(200,168,130,0.45); }
}
.hero .btn-primary { animation: fadeUp 600ms 1.1s forwards, warmGlow 3.5s 2.5s ease-in-out infinite; }

/* CTA section subtle golden shimmer */
.cta-section { position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,130,0.1) 0%, transparent 70%);
  top: -60px; right: 10%; pointer-events: none;
  animation: bokehFloat 12s ease-in-out infinite;
}

/* Footer link underline reveal */
.site-footer a {
  position: relative;
}
.site-footer .footer__nav a::after,
.site-footer .footer__legal a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent-2);
  transition: width 280ms cubic-bezier(.2,.7,.2,1);
}
.site-footer .footer__nav a:hover::after,
.site-footer .footer__legal a:hover::after { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .gold-rule { animation: none; }
  .btn-primary:active::before { animation: none; display: none; }
  .hero .btn-primary { animation: none; opacity: 1; transform: none; }
  .masonry__item::before { transition: none; }
  .testimonials::before, .testimonials::after { animation: none; }
  .testimonial-card { transition: none; }
  .process__step:hover::before { animation: none; }
  .credentials__item { transition: none; }
  .cta-section::before { animation: none; }
}

/* ── STAGGER REVEAL FOR CARDS ── */
@keyframes staggerRevealIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.reveal-stagger > * { opacity: 0; }
.reveal-stagger:not(.is-in) > * { transform: translateY(22px); }
.reveal-stagger.is-in > * {
  opacity: 1;
  animation: staggerRevealIn 520ms cubic-bezier(.2,.7,.2,1) backwards;
}
.reveal-stagger.is-in > *:nth-child(1) { animation-delay: 0ms; }
.reveal-stagger.is-in > *:nth-child(2) { animation-delay: 120ms; }
.reveal-stagger.is-in > *:nth-child(3) { animation-delay: 240ms; }
.reveal-stagger.is-in > *:nth-child(4) { animation-delay: 360ms; }
.reveal-stagger.is-in > *:nth-child(5) { animation-delay: 480ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal-stagger > * { opacity: 1 !important; transform: none !important; animation: none !important; }
}
html.no-js .reveal-stagger > * { opacity: 1; transform: none; animation: none; }

/* ── CONTACT PAGE LAYOUT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

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