:root {
  --paper: #f3ead7;         /* aged cream */
  --paper-2: #e6d9b8;
  --paper-3: #faf4e4;
  --ink: #0f3a2e;           /* deep emerald — signature */
  --ink-2: #12463a;
  --ink-deep: #082520;
  --muted: #7a7264;
  --line: rgba(197,165,101,.25);
  --gold: #c5a565;
  --gold-lt: #e1c88a;
  --gold-dk: #96794a;
  --rust: #a14a2a;
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --pad: clamp(24px, 6vw, 96px);
  --max: 1320px;
  --ease: cubic-bezier(.22,.7,.22,1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.78; -webkit-font-smoothing: antialiased; }
img { max-width:100%; display:block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; letter-spacing: 0; margin: 0 0 .5em; color: var(--ink); }

.rf-eyebrow { font-family: var(--sans); font-size: 10.5px; letter-spacing: .38em; text-transform: uppercase; color: var(--gold-dk); font-weight: 500; display: inline-flex; align-items: center; gap: 14px; }
.rf-eyebrow::before, .rf-eyebrow::after { content: ""; width: 20px; height: 1px; background: currentColor; }
.rf-eyebrow.left::before { display: none; }
.rf-flower { vertical-align: middle; color: var(--gold); }

/* ── Top utility (emerald) ── */
.rf-top { background: var(--ink-deep); color: var(--gold-lt); padding: 10px var(--pad); display: flex; justify-content: space-between; align-items: center; font-size: 10px; letter-spacing: .32em; text-transform: uppercase; }
.rf-top a:hover { color: #fff; }
@media (max-width: 900px) { .rf-top { display: none; } }

/* ── Nav — cream body, gold hairline ── */
.rf-nav {
  position: sticky; top: 0; z-index: 80;
  background: var(--paper);
  padding: 22px var(--pad);
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.rf-nav.scrolled { padding: 14px var(--pad); box-shadow: 0 10px 30px -22px rgba(15,58,46,.2); }
.rf-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 34px; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; font-weight: 500; color: var(--ink); }
.rf-nav .left ul { justify-content: flex-start; }
.rf-nav .right { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.rf-nav .brand { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--ink); }
.rf-nav .brand .rf-flower { color: var(--gold); }
.rf-nav .brand .wm { font-family: var(--serif); font-size: 30px; letter-spacing: .12em; font-weight: 500; line-height: 1; }
.rf-nav .brand .tag { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--gold-dk); letter-spacing: .08em; }
.rf-nav a:hover { color: var(--gold-dk); }
.rf-nav .reserve { padding: 11px 24px; background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; transition: background .25s; border: 1px solid var(--ink); }
.rf-nav .reserve:hover { background: var(--ink-2); border-color: var(--gold); }
.rf-burger { display: none; border: 0; background: transparent; color: inherit; font-size: 11px; letter-spacing: .28em; text-transform: uppercase; padding: 8px 10px; cursor: pointer; font-weight: 500; }
@media (max-width: 900px) {
  .rf-nav { grid-template-columns: 1fr auto; padding: 16px var(--pad); }
  .rf-nav .left, .rf-nav .menu { display: none; }
  .rf-nav .brand { align-items: flex-start; }
  .rf-nav .brand .tag { display: none; }
  .rf-nav .brand .wm { font-size: 24px; }
  .rf-burger { display: inline-block; }
}
.rf-panel { position: fixed; inset: 0; z-index: 300; background: var(--ink); color: var(--paper); padding: 32px var(--pad); display: flex; flex-direction: column; transform: translateY(-100%); transition: transform .5s var(--ease); visibility: hidden; overflow-y: auto; }
.rf-panel.open { transform: translateY(0); visibility: visible; }
.rf-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.rf-panel-head .wm { font-family: var(--serif); font-size: 26px; letter-spacing: .1em; color: var(--gold-lt); }
.rf-panel .close { background: transparent; border: 0; color: var(--paper); font-size: 24px; cursor: pointer; }
.rf-panel ul { list-style: none; padding: 0; margin: 0; }
.rf-panel li { border-bottom: 1px solid rgba(243,234,215,.08); }
.rf-panel a { display: block; padding: 22px 0; font-family: var(--serif); font-size: clamp(28px, 6vw, 38px); color: var(--paper); }
.rf-panel a:hover { color: var(--gold-lt); padding-left: 8px; }

/* ── Hero — centered, grand, emerald-tinted gradient ── */
.hero { position: relative; min-height: 96vh; overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.03); transform: scale(1.02); animation: slow 28s ease-in-out infinite alternate; }
@keyframes slow { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,37,32,.35) 0%, rgba(8,37,32,.15) 50%, rgba(8,37,32,.75) 100%); }
.hero-inner { position: relative; z-index: 2; max-width: 1100px; padding: 0 var(--pad); }
.hero .rf-flower { color: var(--gold-lt); margin-bottom: 22px; opacity: 0; animation: up 1.2s .3s var(--ease) forwards; }
.hero .legend { font-family: var(--serif); font-style: italic; font-size: 14px; letter-spacing: .14em; color: var(--gold-lt); margin-bottom: 10px; opacity: 0; animation: up 1.2s .45s var(--ease) forwards; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(52px, 9.5vw, 128px);
  line-height: 1;
  margin: 0 0 26px;
  color: #fff; max-width: 18ch;
  letter-spacing: .005em;
  opacity: 0; animation: up 1.3s .6s var(--ease) forwards;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.hero .sub { font-size: 16px; max-width: 52ch; margin: 0 auto 38px; color: rgba(255,255,255,.9); font-weight: 300; opacity: 0; animation: up 1.3s .8s var(--ease) forwards; }
.hero .ctas { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; opacity: 0; animation: up 1.3s 1s var(--ease) forwards; }
.rf-btn { display: inline-block; padding: 14px 30px; font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; transition: all .3s var(--ease); }
.rf-btn.primary { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.rf-btn.primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.rf-btn.ghost { color: #fff; border: 1px solid rgba(255,255,255,.65); }
.rf-btn.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.rf-btn.ink { background: var(--ink); color: var(--paper); border: 1px solid var(--ink); }
.rf-btn.ink:hover { background: var(--ink-2); border-color: var(--gold); }
.hero-stamp { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold-lt); opacity: 0; animation: fade 2s 1.4s var(--ease) forwards; }
@keyframes up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }

/* ── Chapter ── */
.chapter { padding: clamp(80px, 14vw, 180px) 0; }
.chapter.cream2 { background: var(--paper-2); }
.chapter.emerald { background: var(--ink); color: var(--paper); }
.chapter.emerald h2 { color: var(--paper); }
.chapter.emerald .rf-eyebrow { color: var(--gold-lt); }

.chapter-head { max-width: 920px; margin: 0 auto 80px; padding: 0 var(--pad); text-align: center; }
.chapter-head .rf-flower { margin-bottom: 22px; }
.chapter.emerald .chapter-head .rf-flower { color: var(--gold-lt); }
.chapter-head .legend { font-family: var(--serif); font-style: italic; font-size: 15px; letter-spacing: .1em; color: var(--gold-dk); margin-bottom: 12px; }
.chapter.emerald .chapter-head .legend { color: var(--gold-lt); }
.chapter-head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(36px, 5.6vw, 74px); max-width: 22ch; margin: 12px auto 22px; line-height: 1.06; }
.chapter-head h2 em { font-style: italic; color: var(--gold-dk); font-weight: 400; }
.chapter.emerald .chapter-head h2 em { color: var(--gold-lt); }
.chapter-head .lede { max-width: 60ch; margin: 0 auto; font-size: 17px; line-height: 1.85; color: var(--ink-2); font-weight: 300; }
.chapter.emerald .chapter-head .lede { color: rgba(243,234,215,.75); }

/* ── Classical 3-col grand cards ── */
.rf-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.rf-card { position: relative; background: var(--paper-3); border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.rf-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -20px rgba(15,58,46,.2); }
.rf-card .ph { aspect-ratio: 4/5; overflow: hidden; }
.rf-card .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform 1.5s var(--ease); }
.rf-card:hover .ph img { transform: scale(1.05); }
.rf-card .body { padding: 32px 28px; text-align: center; }
.rf-card .body .rf-flower { color: var(--gold); margin-bottom: 14px; }
.rf-card .kind { font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px; display: block; }
.rf-card h3 { font-family: var(--serif); font-size: clamp(24px, 2.5vw, 32px); font-weight: 500; margin: 0 0 10px; }
.rf-card h3 em { font-style: italic; font-weight: 400; }
.rf-card p { font-size: 14px; line-height: 1.75; color: var(--ink-2); margin: 0 0 18px; }
.rf-card .more { display: inline-block; font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 3px; transition: border-color .3s, color .3s; }
.rf-card:hover .more { color: var(--gold-dk); border-color: var(--gold-dk); }
@media (max-width: 900px) { .rf-cards { grid-template-columns: 1fr; gap: 28px; } }

/* ── Split story ── */
.rf-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); max-width: var(--max); margin: clamp(60px, 10vw, 120px) auto; padding: 0 var(--pad); align-items: center; }
.rf-story.reverse > :first-child { order: 2; }
.rf-story .ph { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.rf-story .ph img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); transition: transform 1.4s var(--ease); }
.rf-story:hover .ph img { transform: scale(1.04); }
.rf-story .ph .palm-corner { position: absolute; top: 18px; right: 18px; color: var(--paper); background: rgba(15,58,46,.55); padding: 8px; backdrop-filter: blur(6px); }
.rf-story .txt .rf-eyebrow { margin-bottom: 18px; }
.rf-story .txt h3 { font-family: var(--serif); font-size: clamp(30px, 4.2vw, 56px); font-weight: 500; margin: 8px 0 22px; max-width: 16ch; }
.rf-story .txt h3 em { font-style: italic; color: var(--gold-dk); font-weight: 400; }
.rf-story .txt .body { font-size: 16px; line-height: 1.85; color: var(--ink-2); max-width: 48ch; }
.rf-story .txt .cta { display: inline-block; margin-top: 28px; padding: 14px 26px; background: var(--ink); color: var(--paper); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; transition: background .25s; }
.rf-story .txt .cta:hover { background: var(--ink-2); }
@media (max-width: 900px) { .rf-story, .rf-story.reverse { grid-template-columns: 1fr; gap: 36px; } .rf-story.reverse > :first-child { order: 0; } }

/* ── Pull-quote ── */
.rf-quote { max-width: 960px; margin: 0 auto; padding: clamp(80px, 14vw, 160px) var(--pad); text-align: center; }
.rf-quote .rf-flower { color: var(--gold); margin-bottom: 30px; }
.rf-quote p { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(28px, 4vw, 52px); line-height: 1.3; max-width: 26ch; margin: 0 auto 30px; color: var(--ink); }
.rf-quote p em { color: var(--gold-dk); }
.rf-quote cite { font-style: normal; font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }

/* ── Destination / celebration band ── */
.rf-band { position: relative; height: clamp(60vh, 82vh, 760px); overflow: hidden; color: #fff; display: flex; align-items: center; justify-content: center; text-align: center; }
.rf-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); }
.rf-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,37,32,.3), rgba(8,37,32,.8)); }
.rf-band .inner { position: relative; z-index: 2; max-width: 880px; padding: 0 var(--pad); }
.rf-band .rf-flower { color: var(--gold-lt); margin-bottom: 16px; }
.rf-band h2 { font-family: var(--serif); font-size: clamp(40px, 6vw, 76px); font-weight: 500; margin: 14px 0 18px; color: #fff; }
.rf-band h2 em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.rf-band p { font-size: 16px; color: rgba(255,255,255,.9); max-width: 56ch; margin: 0 auto 30px; font-weight: 300; }

/* ── Contact ── */
.rf-contact { background: var(--ink); color: var(--paper); padding: clamp(80px, 14vw, 160px) var(--pad); }
.rf-contact-inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.rf-contact-inner .rf-flower { color: var(--gold-lt); margin-bottom: 18px; }
.rf-contact-inner h2 { font-family: var(--serif); font-size: clamp(34px, 5vw, 60px); font-weight: 500; margin: 0 0 30px; max-width: 18ch; color: var(--paper); }
.rf-contact-inner h2 em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.rf-contact-inner .row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 18px 0; border-top: 1px solid rgba(243,234,215,.12); font-size: 14px; }
.rf-contact-inner .row:last-child { border-bottom: 1px solid rgba(243,234,215,.12); }
.rf-contact-inner .row .k { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-lt); padding-top: 3px; font-weight: 500; }
.rf-contact-inner .row .v { color: rgba(243,234,215,.85); line-height: 1.75; }
.rf-contact-inner .row .v a:hover { color: var(--gold-lt); }
.rf-contact-inner .map { aspect-ratio: 4/5; overflow: hidden; }
.rf-contact-inner .map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.4) brightness(.85) sepia(.15); }
@media (max-width: 900px) { .rf-contact-inner { grid-template-columns: 1fr; gap: 40px; } }

/* ── Page hero ── */
.page-hero { position: relative; height: 58vh; min-height: 420px; color: #fff; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,37,32,.4), rgba(8,37,32,.7)); }
.page-hero .wrap { position: relative; z-index: 2; max-width: 900px; padding: 0 var(--pad); }
.page-hero .rf-flower { color: var(--gold-lt); margin-bottom: 14px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(46px, 7vw, 98px); font-weight: 500; margin: 10px 0; color: #fff; }
.page-hero h1 em { font-style: italic; color: var(--gold-lt); font-weight: 400; }
.prose { max-width: 780px; margin: 0 auto; padding: clamp(80px, 12vw, 140px) var(--pad); font-size: 17px; line-height: 1.9; font-weight: 300; color: var(--ink-2); }
.prose h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 42px); font-weight: 400; font-style: italic; margin: 2em 0 .6em; color: var(--gold-dk); }
.prose h3 { font-family: var(--serif); font-size: clamp(22px, 2.8vw, 30px); margin: 2em 0 .5em; color: var(--ink); font-weight: 500; }
.prose a { color: var(--gold-dk); border-bottom: 1px solid var(--line); }

/* ── Footer ── */
.rf-footer { background: var(--ink-deep); color: var(--paper); padding: 100px var(--pad) 40px; }
.rf-footer-top { text-align: center; max-width: var(--max); margin: 0 auto 60px; }
.rf-footer-top .rf-flower { color: var(--gold-lt); margin-bottom: 14px; }
.rf-footer-top .wm { font-family: var(--serif); font-size: 36px; letter-spacing: .12em; font-weight: 500; }
.rf-footer-top .tag { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold-lt); margin-top: 6px; }
.rf-footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 60px 0; border-top: 1px solid rgba(243,234,215,.12); border-bottom: 1px solid rgba(243,234,215,.12); }
.rf-footer-grid h5 { font-family: var(--sans); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; color: var(--gold-lt); }
.rf-footer-grid ul { list-style: none; padding: 0; margin: 0; line-height: 2; font-size: 14px; color: rgba(243,234,215,.78); }
.rf-footer-grid a:hover { color: var(--gold-lt); }
.rf-footer-bot { max-width: var(--max); margin: 0 auto; padding-top: 30px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: rgba(243,234,215,.4); display: flex; justify-content: space-between; gap: 16px; }
@media (max-width: 900px) { .rf-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .rf-footer-bot { flex-direction: column; text-align: center; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
body.menu-open { overflow: hidden; }
