:root {
  --ink: #1a1714;
  --ink-soft: #635b54;
  --muted: #998e85;
  --paper: #f8f6f0;
  --cream: #ede8df;
  --cream-deep: #e0d8cc;
  --line: rgba(26, 23, 20, 0.1);
  --accent: #b07d53;
  --accent-deep: #8e623f;
  --accent-soft: #dbab86;
  --night: #151311;
  --night-soft: #211e1b;
  --white-warm: #fdfbf8;
  --shadow-sm: 0 10px 30px rgba(21, 19, 17, 0.06);
  --shadow: 0 30px 60px rgba(21, 19, 17, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.2rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--font-body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body::selection { background: var(--accent); color: var(--white-warm); }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.grain { position: fixed; inset: 0; z-index: 80; pointer-events: none; opacity: 0.035; mix-blend-mode: multiply; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* Utility bar + navigation */
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 2.2rem; padding: 0.4rem 4vw; background: var(--night); color: rgba(253, 251, 248, 0.65); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;}
.topbar p { margin: 0; }
.topbar-links { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.topbar-links a { transition: color 0.3s ease; }
.topbar-links a:hover { color: var(--accent-soft); }
.topbar-links span { color: var(--accent-soft); }
.site-header { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); padding: 0 4vw; background: rgba(248, 246, 240, 0.75); border-bottom: 1px solid transparent; backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.site-header.is-scrolled { background: rgba(248, 246, 240, 0.95); border-bottom-color: var(--line); box-shadow: 0 10px 40px rgba(21, 19, 17, 0.04); }
.brand { display: inline-flex; align-items: center; gap: 0.85rem; }
.brand-mark { display: grid; place-items: center; width: 2.8rem; height: 2.8rem; overflow: hidden; border: 1px solid rgba(26, 23, 20, 0.15); border-radius: 50%; background: var(--white-warm); box-shadow: var(--shadow-sm); }
.brand-logo { width: 2.5rem; height: 2.5rem; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; letter-spacing: -0.02em; }
.brand-text small { margin-top: 0.25rem; color: var(--muted); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.5rem); }
.site-nav > a { position: relative; color: var(--ink-soft); font-size: 0.8rem; font-weight: 500; transition: color 0.3s ease; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -0.5rem; left: 0; height: 1px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease); }
.site-nav > a:hover { color: var(--ink); }
.site-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.25rem; border: 1px solid var(--ink); border-radius: 2rem; color: var(--ink) !important; font-weight: 600; transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease) !important; }
.nav-cta:hover { background: var(--ink); color: var(--white-warm) !important; transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.nav-cta span { color: var(--accent); font-size: 1rem; }
.nav-toggle { display: none; width: 3rem; height: 3rem; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: background 0.3s ease; }
.nav-toggle:hover { background: var(--cream); }
.nav-toggle span { display: block; width: 1.1rem; height: 1.5px; margin: 0.3rem auto; background: var(--ink); transition: transform 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.2rem) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.2rem) rotate(-45deg); }

/* Shared */
.section { padding: 8rem 7vw; }
.eyebrow { display: flex; align-items: center; gap: 0.8rem; margin: 0 0 1.2rem; color: var(--accent-deep); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }
.eyebrow::before { display: inline-block; width: 2.5rem; height: 1px; background: currentColor; content: ""; }
.eyebrow-light { color: var(--accent-soft); }
.section h2, .intro-copy h2, .detail-copy h2, .location-copy h2, .contact-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 400; line-height: 0.95; letter-spacing: -0.03em; }
h2 em, h1 em { color: var(--accent); font-style: italic; font-weight: 300; }
.section-lead { max-width: 36rem; margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem; min-height: 3.5rem; padding: 0.9rem 1.6rem; border: 1px solid transparent; border-radius: 2rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; transition: transform 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease; }
.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.btn span { font-size: 1.2rem; font-weight: 300; line-height: 1; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--white-warm); box-shadow: 0 12px 30px rgba(176, 125, 83, 0.25); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn-light { border-color: rgba(253, 251, 248, 0.4); color: var(--white-warm); backdrop-filter: blur(8px); }
.btn-light:hover { border-color: var(--white-warm); background: rgba(253, 251, 248, 0.15); }

/* Hero */
.hero { position: relative; display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); min-height: min(48rem, calc(100svh - 7.5rem)); margin: 1.5rem 2vw 0; overflow: hidden; border-radius: 1.5rem; background: var(--night); color: var(--white-warm); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 8rem) clamp(2.5rem, 6vw, 7rem); }
.hero-kicker { display: flex; align-items: center; gap: 0.8rem; margin: 0 0 1.5rem; color: var(--accent-soft); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0; transform: translateY(1.5rem); animation: rise 1s 0.1s var(--ease) forwards; }
.hero-kicker span { width: 2.5rem; height: 1px; background: currentColor; }
.hero h1 { max-width: 11ch; margin: 0 0 1.7rem; color: var(--white-warm); font-family: var(--font-display); font-size: clamp(3.6rem, 6.5vw, 7rem); font-weight: 400; line-height: 0.92; letter-spacing: -0.04em; opacity: 0; transform: translateY(1.8rem); animation: rise 1s 0.25s var(--ease) forwards; }
.hero h1 em { display: block; color: var(--accent-soft); font-style: italic; }
.hero-lead { max-width: 35rem; margin: 0; color: rgba(253, 251, 248, 0.75); font-size: 1.05rem; line-height: 1.8; opacity: 0; transform: translateY(1.5rem); animation: rise 1s 0.4s var(--ease) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; opacity: 0; transform: translateY(1.2rem); animation: rise 1s 0.55s var(--ease) forwards; }
.hero-foot { display: flex; flex-wrap: wrap; align-items: end; gap: clamp(2rem, 4vw, 4rem); margin-top: auto; padding-top: 5rem; opacity: 0; transform: translateY(1rem); animation: rise 1s 0.7s var(--ease) forwards; }
.hero-stat, .hero-credit { display: flex; flex-direction: column; gap: 0.2rem; }
.hero-stat strong { color: var(--white-warm); font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.hero-stat span, .hero-credit span { color: rgba(253, 251, 248, 0.5); font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; }
.hero-credit { margin-left: auto; text-align: right; }
.hero-credit strong { color: var(--accent-soft); font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; font-style: italic; }
.hero-visual { position: relative; min-height: 100%; overflow: visible; background: #3c2a1c; }
.hero-photo-frame { position: absolute; inset: 1.2rem; overflow: hidden; border-radius: 1.2rem; background: #4a3625; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.hero-photo-frame::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 19, 17, 0.05) 30%, rgba(21, 19, 17, 0.8) 100%); content: ""; }
.hero-img-main { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; filter: saturate(0.9) contrast(1.1); animation: slowZoom 22s var(--ease) forwards; }
.hero-photo-caption { position: absolute; right: 2rem; bottom: 1.5rem; left: 2rem; z-index: 1; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(253, 251, 248, 0.3); color: rgba(253, 251, 248, 0.8); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hero-photo-caption span:first-child { color: var(--accent-soft); font-weight: 600; }
.hero-float-card { position: absolute; bottom: 3rem; left: -3.5rem; z-index: 2; display: flex; align-items: center; gap: 1rem; width: 14rem; padding: 0.7rem; border-radius: 0.8rem; background: rgba(253, 251, 248, 0.95); backdrop-filter: blur(12px); color: var(--ink); box-shadow: var(--shadow); transform: rotate(-4deg); animation: floatIn 1.2s 0.85s var(--ease) both; }
.hero-float-card img { width: 4rem; height: 5.2rem; object-fit: cover; border-radius: 0.4rem; }
.hero-float-card div { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-float-card span { color: var(--muted); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-float-card strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; line-height: 1.1; }
.hero-side-note { position: absolute; top: 2.5rem; right: 2.5rem; z-index: 2; display: flex; flex-direction: column; gap: 0.25rem; color: var(--white-warm); text-align: right; }
.hero-side-note span { color: rgba(253, 251, 248, 0.7); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero-side-note strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; line-height: 0.95; font-style: italic; }
.hero-scroll { position: absolute; right: 50%; bottom: 1.5rem; z-index: 3; display: inline-flex; align-items: center; gap: 0.65rem; color: rgba(253, 251, 248, 0.6); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; transform: translateX(50%); font-weight: 500; }
.hero-scroll i { color: var(--accent-soft); font-size: 1.2rem; font-style: normal; animation: bob 2s var(--ease) infinite; }

/* Manifesto */
.manifesto { padding: 6.5rem 7vw; background: var(--night); color: var(--white-warm); }
.manifesto-inner { display: grid; grid-template-columns: 0.7fr 1.5fr 0.8fr; align-items: end; gap: 2.5rem; max-width: 1280px; margin: 0 auto; }
.manifesto-line { max-width: 12ch; margin: 0; font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 300; line-height: 0.98; letter-spacing: -0.03em; }
.manifesto-line em { color: var(--accent-soft); font-style: italic; }
.manifesto-points { display: grid; gap: 0.85rem; align-self: end; color: rgba(253, 251, 248, 0.65); font-size: 0.75rem; letter-spacing: 0.02em; }
.manifesto-points span { display: flex; align-items: center; gap: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(253, 251, 248, 0.15); }
.manifesto-points b { color: var(--accent-soft); font-size: 0.65rem; font-weight: 700; }

/* Intro */
.intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); align-items: center; gap: clamp(4rem, 9vw, 10rem); background: var(--paper); }
.intro-visual { position: relative; min-height: 42rem; }
.intro-photo { position: absolute; overflow: hidden; background: var(--cream-deep); box-shadow: var(--shadow); border-radius: 1rem; }
.intro-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.intro-photo:hover img { transform: scale(1.05); }
.intro-photo-main { top: 0; right: 12%; bottom: 10%; left: 0; }
.intro-photo-small { right: 0; bottom: 0; width: 45%; height: 48%; border: 0.8rem solid var(--paper); border-radius: 1.5rem; }
.intro-stamp { position: absolute; top: 4%; right: -2%; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 8rem; height: 8rem; border: 1px solid var(--accent); border-radius: 50%; background: var(--paper); color: var(--accent-deep); text-align: center; transform: rotate(12deg); box-shadow: var(--shadow-sm); }
.intro-stamp span { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; }
.intro-stamp strong { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 0.2rem; }
.intro-copy { padding-right: 2rem; }
.intro-copy h2 { max-width: 10ch; margin-bottom: 1.8rem; }
.intro-copy h2 em { display: block; }
.intro-copy > p:not(.eyebrow) { max-width: 40rem; margin: 0 0 1.2rem; color: var(--ink-soft); font-size: 1.02rem; }
.intro-lead { font-size: 1.15rem !important; color: var(--ink) !important; font-weight: 500; }
.process-list { display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.process-list > div { display: grid; grid-template-columns: 3rem 1fr; gap: 0.4rem 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.process-list span { grid-row: span 2; color: var(--accent-deep); font-size: 0.72rem; font-weight: 700; padding-top: 0.3rem;}
.process-list strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.process-list p { margin: 0; color: var(--ink-soft); font-size: 0.85rem; }

/* Events */
.events { background: var(--cream); }
.section-head-wide { display: flex; justify-content: space-between; align-items: end; gap: 4rem; margin-bottom: 4rem; }
.section-head-wide h2 { max-width: 11ch; }
.section-head-wide h2 em { display: inline; }
.event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.event-card { display: flex; flex-direction: column; min-width: 0; background: var(--paper); border: 1px solid rgba(26, 23, 20, 0.08); border-radius: 1rem; overflow: hidden; transition: transform 0.5s var(--ease), box-shadow 0.5s ease, border-color 0.4s ease; }
.event-card:hover { border-color: rgba(176, 125, 83, 0.4); box-shadow: var(--shadow); transform: translateY(-0.5rem); }
.event-card figure { position: relative; height: 17rem; margin: 0; overflow: hidden; background: var(--night-soft); }
.event-card figure::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(21, 19, 17, 0.4)); content: ""; opacity: 0; transition: opacity 0.5s ease; }
.event-card:hover figure::after { opacity: 1; }
.event-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease), filter 0.5s ease; }
.event-card:hover img { filter: saturate(1.1); transform: scale(1.08); }
.event-card-featured { grid-row: span 2; }
.event-card-featured figure { height: 100%; min-height: 25rem; }
.event-card-copy { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.5rem 1.5rem 1.8rem; }
.event-num { color: var(--accent-deep); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; }
.event-card h3 { margin: 0.6rem 0 0.5rem; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; letter-spacing: -0.02em; }
.event-card p { margin: 0; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.6; }
.event-card a, .package-card a { display: inline-flex; align-items: center; gap: 0.6rem; margin-top: auto; padding-top: 1.5rem; color: var(--accent-deep); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.event-card a span, .package-card a span, .text-link span { font-size: 1.1rem; font-weight: 400; transition: transform 0.3s var(--ease); }
.event-card a:hover span, .package-card a:hover span, .text-link:hover span { transform: translate(0.25rem, -0.25rem); }

/* Detail */
.detail-section { background: var(--paper); }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); align-items: center; gap: clamp(4rem, 10vw, 11rem); }
.detail-gallery { position: relative; min-height: 38rem; }
.detail-img { position: absolute; margin: 0; overflow: hidden; box-shadow: var(--shadow); background: var(--cream-deep); border-radius: 1rem; }
.detail-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.detail-img:hover img { transform: scale(1.05); }
.detail-img-large { top: 0; right: 18%; bottom: 0; left: 0; }
.detail-img-small { right: 0; bottom: 8%; width: 45%; height: 55%; border: 0.8rem solid var(--paper); border-radius: 1.5rem; }
.detail-quote { position: absolute; bottom: -2rem; left: -2rem; display: flex; flex-direction: column; justify-content: center; width: 12.5rem; height: 12.5rem; padding: 1.5rem; border-radius: 50%; background: var(--accent); color: var(--white-warm); font-family: var(--font-display); font-size: 1.6rem; line-height: 1; box-shadow: var(--shadow-sm); transform: rotate(-6deg); text-align: center; }
.detail-quote em { color: var(--night); font-style: italic; }
.detail-copy h2 { max-width: 10ch; margin-bottom: 1.8rem; }
.detail-copy h2 em { display: block; }
.detail-copy > p:not(.eyebrow) { max-width: 40rem; margin: 0 0 1.8rem; color: var(--ink-soft); font-size: 1.05rem; }
.amen-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0 0 2rem; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.amen-list li { position: relative; padding: 0.85rem 0 0.85rem 1.2rem; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 0.82rem; }
.amen-list li::before { position: absolute; top: 1.25rem; left: 0; width: 0.38rem; height: 0.38rem; border-radius: 50%; background: var(--accent); content: ""; }
.text-link { display: inline-flex; align-items: center; gap: 0.8rem; color: var(--ink); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.text-link::after { display: block; width: 2.5rem; height: 1px; background: var(--accent); content: ""; transition: width 0.3s ease; }
.text-link:hover::after { width: 3.5rem; }

/* Packages */
.packages { background: var(--cream); }
.package-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 25rem; padding: 2rem 1.8rem 1.8rem; border: 1px solid rgba(26, 23, 20, 0.1); border-radius: 1rem; background: rgba(248, 246, 240, 0.6); backdrop-filter: blur(8px); transition: background 0.4s ease, border-color 0.4s ease, transform 0.5s var(--ease), box-shadow 0.5s ease; }
.package-card:hover { border-color: rgba(176, 125, 83, 0.4); background: var(--paper); box-shadow: var(--shadow); transform: translateY(-0.5rem); }
.package-card-featured { border-color: var(--accent); background: var(--night); color: var(--white-warm); box-shadow: var(--shadow); }
.package-card-featured:hover { background: var(--night-soft); }
.package-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; }
.package-top span { color: var(--accent-deep); font-size: 0.72rem; font-weight: 700; }
.package-card-featured .package-top span, .package-card-featured .package-top p { color: var(--accent-soft); }
.package-top p { margin: 0; color: var(--accent-deep); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.package-card h3 { margin: 0 0 0.6rem; font-family: var(--font-display); font-size: 1.9rem; font-weight: 500; letter-spacing: -0.02em; }
.package-card > p:not(.package-top p) { margin: 0; color: var(--ink-soft); font-size: 0.85rem; line-height: 1.6; }
.package-card-featured > p:not(.package-top p) { color: rgba(253, 251, 248, 0.7); }
.package-card ul { display: grid; gap: 0.6rem; margin: 1.5rem 0 0; padding: 1.2rem 0 0; list-style: none; border-top: 1px solid var(--line); }
.package-card-featured ul { border-color: rgba(253, 251, 248, 0.15); }
.package-card li { position: relative; padding-left: 1.2rem; color: var(--ink-soft); font-size: 0.8rem; }
.package-card-featured li { color: rgba(253, 251, 248, 0.75); }
.package-card li::before { position: absolute; top: 0.65rem; left: 0; width: 0.4rem; height: 1px; background: var(--accent); content: ""; }
.package-card-featured a { color: var(--accent-soft); }
.package-note { margin: 2rem 0 0; color: var(--ink-soft); font-size: 0.85rem; text-align: center; }
.package-note a { color: var(--accent-deep); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(142, 98, 63, 0.3); text-underline-offset: 4px; transition: text-decoration-color 0.3s ease; }
.package-note a:hover { text-decoration-color: var(--accent-deep); }

/* Gallery */
.gallery-section { padding-bottom: 8.5rem; background: var(--night); color: var(--white-warm); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 4rem; margin-bottom: 4rem; }
.gallery-heading h2 { max-width: 12ch; }
.gallery-heading > p { max-width: 22rem; margin: 0; color: rgba(253, 251, 248, 0.7); font-size: 0.95rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 9.5rem; gap: 0.8rem; }
.gallery-item { position: relative; overflow: hidden; margin: 0; background: var(--night-soft); border-radius: 0.6rem; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: transform 0.8s var(--ease), filter 0.5s ease; }
.gallery-item:hover img { filter: saturate(1.1); transform: scale(1.08); }
.gallery-one { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-two { grid-column: 3; grid-row: 1 / 2; }
.gallery-three { grid-column: 4; grid-row: 1 / 3; }
.gallery-four { grid-column: 3; grid-row: 2 / 4; }
.gallery-five { grid-column: 1; grid-row: 3 / 5; }
.gallery-six { grid-column: 2; grid-row: 3 / 5; }
.gallery-seven { grid-column: 4; grid-row: 3 / 5; }
.gallery-eight { grid-column: 3 / 5; grid-row: 4 / 6; }
.gallery-follow { margin: 2.2rem 0 0; color: rgba(253, 251, 248, 0.6); font-size: 0.85rem; text-align: center; }
.gallery-follow a { color: var(--accent-soft); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(219, 171, 134, 0.3); text-underline-offset: 4px; transition: text-decoration-color 0.3s ease; }
.gallery-follow a:hover { text-decoration-color: var(--accent-soft); }

/* Location */
.location-section { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: stretch; gap: clamp(3rem, 8vw, 8rem); }
.location-copy { padding: 1.5rem 0; }
.location-copy h2 { max-width: 9ch; margin-bottom: 1.8rem; }
.location-copy h2 em { display: block; }
.location-copy > p:not(.eyebrow) { max-width: 32rem; margin: 0 0 1rem; color: var(--ink-soft); }
.location-lead { font-size: 1.08rem; font-weight: 500; color: var(--ink) !important; }
.location-note { font-size: 0.88rem; }
.contact-details { display: grid; gap: 0; max-width: 32rem; margin: 2rem 0; border-top: 1px solid var(--line); }
.contact-details a { display: flex; flex-direction: column; gap: 0.2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); transition: color 0.3s ease, padding-left 0.3s var(--ease); }
.contact-details a:hover { padding-left: 0.5rem; color: var(--accent-deep); }
.contact-details span { color: var(--muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.contact-details strong { font-size: 0.9rem; font-weight: 500; }
.location-media { position: relative; min-height: 38rem; margin: 0; overflow: hidden; border-radius: 1.2rem; background: var(--cream-deep); box-shadow: var(--shadow); }
.location-media iframe { display: block; width: 100%; height: 100%; min-height: 38rem; border: 0; filter: grayscale(0.2) sepia(0.1) contrast(0.95); }
.location-media figcaption { position: absolute; right: 1.2rem; bottom: 1.2rem; left: 1.2rem; padding: 0.85rem 1.2rem; border-radius: 0.6rem; background: rgba(21, 19, 17, 0.9); backdrop-filter: blur(8px); color: var(--white-warm); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; text-align: center; }

/* Contact */
.contact-section { padding-top: 7.5rem; padding-bottom: 7.5rem; background: var(--night); color: var(--white-warm); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(4rem, 9vw, 10rem); }
.contact-copy h2 { max-width: 10ch; margin-bottom: 1.8rem; color: var(--white-warm); }
.contact-copy h2 em { display: block; color: var(--accent-soft); }
.contact-copy > p:not(.eyebrow) { max-width: 26rem; margin: 0; color: rgba(253, 251, 248, 0.7); font-size: 1rem; line-height: 1.7; }
.contact-signoff { display: flex; flex-direction: column; gap: 0.2rem; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(253, 251, 248, 0.15); max-width: 26rem; }
.contact-signoff span { color: var(--accent-soft); font-family: var(--font-display); font-size: 1.8rem; font-style: italic; }
.contact-signoff strong { color: rgba(253, 251, 248, 0.6); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; padding: clamp(2rem, 5vw, 3.5rem); border-radius: 1.2rem; background: var(--paper); color: var(--ink); box-shadow: var(--shadow); }
.form-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.5rem; }
.form-eyebrow { margin: 0; color: var(--accent-deep); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.form-heading > span { color: var(--muted); font-size: 0.7rem; letter-spacing: 0.12em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.45rem; color: var(--ink-soft); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 0.4rem; outline: none; background: var(--cream); color: var(--ink); font-size: 0.9rem; font-weight: 400; transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent-deep) 50%), linear-gradient(135deg, var(--accent-deep) 50%, transparent 50%); background-position: calc(100% - 1.2rem) 52%, calc(100% - 0.9rem) 52%; background-repeat: no-repeat; background-size: 0.35rem 0.35rem, 0.35rem 0.35rem; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent); background: var(--white-warm); box-shadow: 0 0 0 3px rgba(176, 125, 83, 0.15); }
.contact-form textarea { min-height: 8rem; resize: vertical; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note { margin: 0; color: var(--muted); font-size: 0.72rem; line-height: 1.6; text-align: center; }

/* Footer + floating contact */
.site-footer { padding: 3rem 7vw 4.5rem; background: var(--paper); border-top: 1px solid var(--line); }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 2rem; border-bottom: 1px solid var(--line); }
.footer-brand { display: inline-flex; align-items: center; gap: 0.8rem; font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; }
.footer-brand .brand-mark { width: 2.5rem; height: 2.5rem; border: 1px solid rgba(26, 23, 20, 0.15); border-radius: 50%; box-shadow: var(--shadow-sm); }
.footer-brand .brand-logo { width: 2.2rem; height: 2.2rem; }
.footer-arrow { display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid var(--line); border-radius: 50%; color: var(--accent-deep); font-size: 1.2rem; transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease); }
.footer-arrow:hover { background: var(--ink); color: var(--accent-soft); transform: translateY(-4px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2.5rem; padding: 1.8rem 0; }
.footer-bottom p { margin: 0; color: var(--muted); font-size: 0.75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 1.2rem; }
.footer-links a { color: var(--ink-soft); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--accent-deep); }
.icon-ig { width: 1.15em; height: 1.15em; fill: currentColor; transform: translateY(-1px); }
.footer-note { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: 0.75rem; }
.footer-note p { margin: 0; color: var(--muted); }
.nubihost-link { color: var(--accent-deep); font-weight: 700; transition: color 0.3s ease; text-decoration: underline; text-decoration-color: rgba(142, 98, 63, 0.3); text-underline-offset: 4px; }
.nubihost-link:hover { color: var(--accent); text-decoration-color: var(--accent); }
.whatsapp-float { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 45; display: grid; place-items: center; width: 4rem; height: 4rem; border: 3px solid var(--paper); border-radius: 50%; background: #25D366; color: #fff; box-shadow: 0 16px 35px rgba(21, 19, 17, 0.25); transition: transform 0.4s var(--ease), box-shadow 0.4s ease; }
.whatsapp-float:hover { box-shadow: 0 22px 45px rgba(21, 19, 17, 0.35); transform: translateY(-5px) scale(1.05); }
.whatsapp-float svg { width: 1.8rem; height: 1.8rem; }

/* Lightbox + reveal */
.lightbox { position: fixed; inset: 0; z-index: 70; display: none; align-items: center; justify-content: center; padding: 2.5rem; background: rgba(10, 8, 7, 0.96); backdrop-filter: blur(10px); cursor: zoom-out; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); border-radius: 0.5rem; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; border: 0; background: transparent; color: var(--white-warm); font-size: 2.8rem; line-height: 1; cursor: pointer; transition: color 0.3s ease, transform 0.3s ease; }
.lightbox-close:hover { color: var(--accent-soft); transform: scale(1.1); }
.reveal { opacity: 0; transform: translateY(2rem) scale(0.98); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes floatIn { from { opacity: 0; transform: translate(-1.5rem, 2rem) rotate(-4deg); } to { opacity: 1; transform: rotate(-4deg); } }
@keyframes slowZoom { from { transform: scale(1.1); } to { transform: scale(1); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(0.5rem); } }

/* Responsive */
@media (max-width: 1200px) {
  .site-nav { gap: 1.2rem; }
  .hero h1 { font-size: clamp(3.4rem, 6.2vw, 5.5rem); }
  .hero-float-card { left: 1rem; }
  .intro, .detail-grid { gap: 5rem; }
}
@media (max-width: 980px) {
  .section { padding: 6.5rem 5vw; }
  .hero { grid-template-columns: 1fr 1fr; min-height: 46rem; margin-right: 2vw; margin-left: 2vw; }
  .hero-copy { padding: 3.5rem 4rem; }
  .hero h1 { font-size: clamp(3.2rem, 5.8vw, 5rem); }
  .hero-foot { gap: 1.8rem; padding-top: 3rem; }
  .hero-credit { margin-left: 0; text-align: left; }
  .manifesto { padding-right: 5vw; padding-left: 5vw; }
  .manifesto-inner { grid-template-columns: 0.8fr 1.2fr 1fr; }
  .intro, .detail-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-visual, .detail-gallery { max-width: 42rem; width: 100%; min-height: 38rem; margin: 0 auto; }
  .intro-copy, .detail-copy { max-width: 46rem; margin: 0 auto; padding-right: 0; }
  .event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .event-card-featured { grid-row: span 1; }
  .event-card-featured figure { min-height: 18rem; height: 18rem; }
  .package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .package-card { min-height: 26rem; }
  .location-copy { max-width: 46rem; }
  .location-media, .location-media iframe { min-height: 32rem; }
  .contact-copy { max-width: 40rem; }
  .contact-signoff { margin-top: 2.5rem; }
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 0.8rem 5vw 1.5rem; border-bottom: 1px solid var(--line); background: rgba(248, 246, 240, 0.98); box-shadow: 0 20px 35px rgba(21, 19, 17, 0.08); backdrop-filter: blur(15px); }
  .site-nav.is-open { display: flex; }
  .site-nav > a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 0.9rem;}
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 1rem; justify-content: center; }
}
@media (max-width: 760px) {
  .topbar { align-items: flex-start; padding: 0.6rem 5vw; font-size: 0.65rem; }
  .topbar-links { gap: 1rem; }
  .site-header { padding-right: 5vw; padding-left: 5vw; }
  .hero { display: flex; flex-direction: column; min-height: 0; margin: 1rem 0 0; border-radius: 0; box-shadow: none;}
  .hero-copy { min-height: 42rem; padding: 4.5rem 8vw 3rem; }
  .hero h1 { max-width: 9ch; font-size: clamp(3.6rem, 15vw, 5.2rem); }
  .hero-lead { font-size: 0.95rem; }
  .hero-foot { gap: 1.5rem; padding-top: 3.2rem; }
  .hero-stat strong { font-size: 1.5rem; }
  .hero-stat span, .hero-credit span { font-size: 0.65rem; }
  .hero-credit strong { font-size: 0.95rem; }
  .hero-visual { min-height: 38rem; }
  .hero-photo-frame { inset: 0; border-radius: 0; }
  .hero-float-card { bottom: 1.5rem; left: 1.2rem; width: 13rem; }
  .hero-side-note { top: 1.5rem; right: 1.5rem; }
  .hero-scroll { display: none; }
  .manifesto { padding: 5rem 8vw; }
  .manifesto-inner { display: block; }
  .manifesto-line { max-width: 11ch; margin: 1.8rem 0 2.5rem; font-size: clamp(2.6rem, 11vw, 3.8rem); }
  .manifesto-points { gap: 0.6rem; }
  .section { padding: 5.5rem 8vw; }
  .section h2, .intro-copy h2, .detail-copy h2, .location-copy h2, .contact-copy h2 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .section-head-wide, .gallery-heading { display: block; margin-bottom: 2.5rem; }
  .section-head-wide .section-lead, .gallery-heading > p { margin-top: 1.8rem; }
  .intro-visual, .detail-gallery { min-height: 32rem; }
  .intro-photo-main { right: 8%; }
  .intro-stamp { width: 6.5rem; height: 6.5rem; right: 0; }
  .intro-stamp span { font-size: 1.05rem; }
  .event-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; gap: 1rem; padding-bottom: 1.5rem; margin-right: -8vw; margin-left: -8vw; padding-left: 8vw; padding-right: 8vw; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .event-grid::-webkit-scrollbar { display: none; }
  .event-card, .event-card-featured { flex: 0 0 82%; scroll-snap-align: center; }
  .event-card figure, .event-card-featured figure { height: 20rem; min-height: 0; }
  .event-card-copy { min-height: 13rem; }
  .detail-quote { left: -0.5rem; width: 10rem; height: 10rem; font-size: 1.3rem; }
  .amen-list { grid-template-columns: 1fr; }
  .package-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; gap: 1rem; padding-bottom: 1.5rem; margin-right: -8vw; margin-left: -8vw; padding-left: 8vw; padding-right: 8vw; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .package-grid::-webkit-scrollbar { display: none; }
  .package-card, .package-card-featured { flex: 0 0 85%; scroll-snap-align: center; min-height: 0; }
  .package-top { margin-bottom: 2.5rem; }
  .gallery-grid { display: flex; flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; gap: 0.8rem; padding-bottom: 1.5rem; margin-right: -8vw; margin-left: -8vw; padding-left: 8vw; padding-right: 8vw; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item { flex: 0 0 75%; height: 60vh; max-height: 25rem; scroll-snap-align: center; }
  .gallery-one, .gallery-two, .gallery-three, .gallery-four, .gallery-five, .gallery-six, .gallery-seven, .gallery-eight { grid-column: auto; grid-row: auto; }
  .location-media, .location-media iframe { min-height: 25rem; }
  .location-media figcaption { right: 0.8rem; bottom: 0.8rem; left: 0.8rem; }
  .contact-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .footer-bottom { display: block; }
  .footer-links { justify-content: start; margin-top: 1.5rem; }
}
@media (max-width: 420px) {
  .brand-text small { display: none; }
  .hero-copy { min-height: 40rem; padding-right: 7vw; padding-left: 7vw; }
  .hero h1 { font-size: clamp(3.2rem, 16vw, 4.4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 32rem; }
  .hero-float-card { width: 12.5rem; }
  .section, .manifesto { padding-right: 7vw; padding-left: 7vw; }
  .intro-visual, .detail-gallery { min-height: 28rem; }
  .intro-photo-small { border-width: 0.6rem; }
  .detail-quote { left: -0.6rem; width: 8.5rem; height: 8.5rem; padding: 1.2rem; font-size: 1.15rem; }
  .form-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .whatsapp-float { right: 1.2rem; bottom: 1.2rem; width: 3.5rem; height: 3.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
