/* ===========================
   RESET & BASE
=========================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Montserrat', sans-serif; background: #FAF7F4; color: #2C1F14; }

/* ===========================
   NAV
=========================== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #EDE0D4;
  border-bottom: 1px solid #C8B09A;
  position: sticky;
  top: 0;
  z-index: 100;
}
.mono {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  letter-spacing: 2px;
  font-style: italic;
  color: #3D1508;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 0.75rem;
}
.links { display: flex; gap: 0.6rem; align-items: center; flex-wrap: nowrap; }
.nb {
  font-family: 'Libre Baskerville', serif;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #3D1508;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid transparent;
  cursor: pointer;
  padding: 2px 0;
  white-space: nowrap;
  transition: color 0.2s;
}
.nb:hover { color: #8C4010; }
.nb.on { color: #8C4010; border-bottom: 1.5px solid #8C4010; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: #3D1508; transition: all 0.2s; }
@media (max-width: 620px) {
  .hamburger { display: flex; }
  .links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #EDE0D4;
    border-bottom: 1px solid #C8B09A;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
  }
  .links.open { display: flex; }
  .nb { width: 100%; padding: 0.75rem 1.25rem; border-bottom: none; font-size: 10px; }
  .nb.on { border-bottom: none; color: #8C4010; background: rgba(160,82,45,0.07); }
}

/* ===========================
   PAGES
=========================== */
.page { display: none; }
.page.active { display: block; }

/* ===========================
   HERO
=========================== */
.hero { background: #FAF7F4; text-align: center; padding: 2.5rem 1.5rem 2rem; }
.hero-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 5px; color: #A0522D; text-transform: uppercase; font-weight: 400; margin-bottom: 1.25rem; }
.hero-star { color: #C4937A; font-size: 13px; margin-bottom: 0.2rem; }
.hero-name { font-family: 'Cormorant Garamond', serif; font-size: clamp(62px, 12vw, 108px); font-weight: 300; line-height: 0.92; color: #1E140D; letter-spacing: -1px; }
.hero-divider { display: flex; align-items: center; gap: 12px; margin: 0.9rem 0; justify-content: center; }
.hero-line { width: 44px; height: 0.5px; background: #C4937A; }
.hero-amp { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; font-style: italic; color: #A0522D; }
.hero-heart { color: #C4937A; font-size: 12px; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 300; font-style: italic; color: #6B5548; margin-top: 1rem; }
.hero-sub { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2px; color: #A08878; margin-top: 4px; }
.hero-cards { display: inline-flex; margin-top: 1.5rem; border: 1px solid #DDD0C4; border-radius: 10px; overflow: hidden; background: #fff; }
.hero-card { padding: 0.85rem 1.4rem; display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 400; color: #3D1F0A; white-space: nowrap; }
.hero-card + .hero-card { border-left: 1px solid #DDD0C4; }
.hci { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 500px) {
  .hero-cards { display: flex; flex-direction: column; width: 100%; max-width: 260px; }
  .hero-card + .hero-card { border-left: none; border-top: 1px solid #DDD0C4; }
  .hero-card { justify-content: center; padding: 0.7rem 1rem; }
}

/* ===========================
   SECTIONS
=========================== */
.sw { max-width: 860px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.sw.n { max-width: 600px; }
.eyebrow { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #A0522D; font-weight: 400; text-align: center; margin-bottom: 0.6rem; }
.sh { font-family: 'Cormorant Garamond', serif; font-size: clamp(30px, 5vw, 44px); font-weight: 300; text-align: center; color: #1E140D; line-height: 1.1; }
.rule { width: 32px; height: 0.5px; background: #C4937A; margin: 0.6rem auto 1.75rem; }

/* ===========================
   VENUE
=========================== */
.vgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
@media (max-width: 560px) { .vgrid { grid-template-columns: 1fr; gap: 1.5rem; } }
.vimg { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; position: relative; background: #EDE0D4; }
.vimg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vimg-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(20,10,5,0.5); color: #F5EDE6; padding: 7px 11px; border-radius: 6px; }
.vimg-title { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; }
.vimg-sub { font-family: 'Montserrat', sans-serif; font-size: 9px; color: rgba(245,237,230,0.7); margin-top: 2px; font-weight: 300; }
.vbody h2 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: #1E140D; line-height: 1.25; margin-bottom: 0.85rem; }
.vbody p { font-family: 'Montserrat', sans-serif; font-size: 12px; line-height: 1.9; color: #7A6255; font-weight: 300; margin-bottom: 0.65rem; }
.vtags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.85rem; }
.vtag { font-family: 'Montserrat', sans-serif; border: 0.5px solid #C4937A; color: #7A3E1A; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.vaddr { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #A08878; margin-top: 0.85rem; display: flex; align-items: center; gap: 6px; font-weight: 300; }

/* ===========================
   EXPLORE BAND
=========================== */
.xband { background: #F3EDE7; padding: 2.5rem 1.5rem; }
.cgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: #DDD0C4; border: 1px solid #DDD0C4; border-radius: 10px; overflow: hidden; max-width: 760px; margin: 0 auto; }
@media (max-width: 500px) { .cgrid { grid-template-columns: repeat(2, 1fr); } }
.dcard { background: #FAF7F4; padding: 1.75rem 1rem; text-align: center; cursor: pointer; transition: background 0.2s; }
.dcard:hover { background: #fff; }
.dicon { width: 44px; height: 44px; border-radius: 50%; background: #EDE3DC; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.85rem; }
.dtitle { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 400; color: #1E140D; margin-bottom: 2px; }
.dsub { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #A08878; }

/* ===========================
   SCHEDULE
=========================== */
.tlist { list-style: none; max-width: 460px; margin: 0 auto; }
.ti { display: grid; grid-template-columns: 64px 12px 1fr; gap: 0 0.85rem; padding: 1.1rem 0; border-bottom: 0.5px solid #E8DED6; align-items: start; }
.ti:last-child { border-bottom: none; }
.tt { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 1px; color: #A0522D; font-weight: 500; padding-top: 3px; text-align: right; }
.tdcol { display: flex; flex-direction: column; align-items: center; padding-top: 5px; }
.tdot { width: 6px; height: 6px; border-radius: 50%; background: #C4937A; flex-shrink: 0; }
.tline { width: 1px; background: #E8DED6; flex: 1; margin-top: 4px; min-height: 14px; }
.tbody h4 { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 400; color: #1E140D; }
.tbody p { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #A08878; margin-top: 4px; font-weight: 300; line-height: 1.75; }
.tbody p.tnote { font-style: italic; color: #B89A86; margin-top: 6px; }
.tnotes { max-width: 460px; margin: 2rem auto 0; border-top: 0.5px solid #E8DED6; padding-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tnotes-title { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 400; color: #1E140D; letter-spacing: 0.5px; margin-bottom: 0.25rem; }
.tnote-item { font-family: 'Montserrat', sans-serif; font-size: 11px; color: #7A6255; font-weight: 300; line-height: 1.75; padding-left: 14px; position: relative; }
.tnote-item::before { content: '·'; position: absolute; left: 0; color: #A0522D; }
.tnote-label { font-weight: 500; color: #5A3828; }

/* ===========================
   HOTELS
=========================== */
.hcard { background: #fff; border: 0.5px solid #DDD0C4; border-radius: 10px; padding: 1.25rem; margin-bottom: 0.65rem; }
.hname { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: #1E140D; }
.hdist { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #A0522D; margin-top: 3px; }
.hdetail { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #7A6255; font-weight: 300; margin-top: 8px; line-height: 1.75; }
.hbadge { font-family: 'Montserrat', sans-serif; display: inline-block; background: #F0E4DC; color: #7A3E1A; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; margin-top: 8px; }
.hamenities { margin-top: 10px; display: flex; flex-direction: column; gap: 5px; }
.hamen { font-family: 'Montserrat', sans-serif; font-size: 11.5px; color: #7A6255; font-weight: 300; padding-left: 14px; position: relative; line-height: 1.6; }
.hamen::before { content: '·'; position: absolute; left: 0; color: #A0522D; }

/* ===========================
   DRESS CODE
=========================== */
.dcwrap { text-align: center; max-width: 480px; margin: 0 auto; }
.dcwrap p { font-family: 'Montserrat', sans-serif; font-size: 12px; line-height: 1.95; color: #7A6255; font-weight: 300; margin-bottom: 0.85rem; }
.swatches { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 1.25rem 0; }
.sww { text-align: center; }
.swc { width: 40px; height: 40px; border-radius: 50%; border: 0.5px solid #DDD0C4; margin: 0 auto; }
.swl { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 1px; color: #A08878; margin-top: 4px; }

/* ===========================
   REGISTRY
=========================== */
.ri { font-family: 'Montserrat', sans-serif; text-align: center; font-size: 12px; line-height: 1.9; color: #7A6255; font-weight: 300; max-width: 380px; margin: 0 auto 1.75rem; }
.rgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.65rem; }
.rcard { background: #fff; border: 0.5px solid #DDD0C4; border-radius: 10px; padding: 1.5rem 1rem; text-align: center; cursor: pointer; transition: border-color 0.2s; }
.rcard:hover { border-color: #C4937A; }
.ricon { margin-bottom: 0.5rem; display: flex; justify-content: center; }
.rname { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: #1E140D; }
.rsub { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: #A08878; margin-top: 3px; }

/* ===========================
   RSVP
=========================== */
.rfwrap { max-width: 440px; margin: 0 auto; }
.flabel { font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #5A3E2B; display: block; margin-bottom: 6px; font-weight: 500; }
.finput { width: 100%; padding: 11px 13px; border: 0.5px solid #DDD0C4; border-radius: 8px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 300; background: #fff; color: #1E140D; transition: border-color 0.2s; }
.finput:focus { outline: none; border-color: #A0522D; }
.frow { margin-bottom: 1.35rem; }
.rrow { display: flex; gap: 1.25rem; margin-top: 7px; flex-wrap: wrap; }
.ropt { display: flex; align-items: center; gap: 6px; font-family: 'Montserrat', sans-serif; font-size: 11px; color: #5A3E2B; cursor: pointer; font-weight: 300; }
.rsub-btn { width: 100%; background: #2C1508; color: #FAF7F4; border: none; padding: 13px; font-family: 'Montserrat', sans-serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; border-radius: 8px; cursor: pointer; transition: background 0.2s; font-weight: 500; }
.rsub-btn:hover { background: #A0522D; }
.rdone { text-align: center; padding: 2.5rem 1rem; display: none; }
.rdone-heart { font-size: 32px; color: #C4937A; margin-bottom: 0.6rem; }
.rdone h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 300; color: #1E140D; margin-bottom: 0.4rem; }
.rdone p { font-family: 'Montserrat', sans-serif; font-size: 12px; color: #A08878; font-weight: 300; }

/* ===========================
   FOOTER
=========================== */
.foot { background: #EDE0D4; border-top: 0.5px solid #C8B09A; text-align: center; padding: 1.75rem 1.5rem; }
.fnames { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; font-style: italic; color: #8C4A20; }
.fheart { color: #C4937A; margin: 0 7px; }
.fdate { font-family: 'Montserrat', sans-serif; font-size: 10px; letter-spacing: 2px; color: #7A5540; margin-top: 5px; font-weight: 300; }
.fquote { font-family: 'Montserrat', sans-serif; font-size: 10px; color: #A08070; font-style: italic; margin-top: 5px; font-weight: 300; }
