:root {
  --blue: #123f72;
  --blue-dark: #0c315b;
  --blue-light: #dce7f3;
  --ivory: #fbf8f1;
  --paper: #fffdf8;
  --ink: #15375f;
  --muted: #5e6f82;
  --line: rgba(18, 63, 114, .18);
  --shadow: 0 18px 45px rgba(23, 43, 68, .12);
  --header-height: 82px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Italiana", "Times New Roman", serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 253, 248, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1380px, calc(100% - 44px));
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 120px 1fr 90px;
  align-items: center;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--blue);
  width: fit-content;
}
.brand-monogram { font-family: var(--display); font-size: 34px; line-height: 1; }
.brand-amp { font-family: var(--serif); font-size: 20px; margin: 0 1px; }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(17px, 2.5vw, 42px);
}
.main-nav a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .035em;
  white-space: nowrap;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -12px;
  height: 1px;
  background: var(--blue);
  transition: left .25s, right .25s;
}
.main-nav a:hover::after, .main-nav a.active::after { left: 0; right: 0; }
.language-switcher {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-family: var(--serif);
  font-size: 14px;
}
.language-switcher button {
  border: 0;
  padding: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  opacity: .55;
}
.language-switcher button.active { opacity: 1; font-weight: 700; }
.menu-toggle { display: none; }

.home-hero, .page-hero {
  position: relative;
  overflow: hidden;
  background: #203d55;
}
.home-hero { height: clamp(520px, calc(100vh - var(--header-height)), 820px); }
.page-hero { height: clamp(280px, 38vw, 430px); }
.home-hero img, .page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero img { object-position: center 43%; }
.wedding-hero img { object-position: center 45%; }
.information-hero img { object-position: center center; }
.logistics-hero img { object-position: center center; }
.home-hero-shade, .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 23, 37, .3), rgba(5, 23, 37, .02) 55%, rgba(5, 23, 37, .15));
}
.page-hero-overlay { background: linear-gradient(0deg, rgba(7, 34, 58, .48), rgba(7, 34, 58, .08) 70%); }
.home-hero-copy {
  position: absolute;
  left: clamp(32px, 7vw, 110px);
  bottom: clamp(45px, 8vw, 105px);
  color: white;
  text-shadow: 0 3px 25px rgba(0,0,0,.32);
}
.home-hero-copy h1 {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 122px);
  font-weight: 400;
  font-style: italic;
  line-height: .95;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.blue { color: var(--blue); }
.page-hero-copy {
  position: absolute;
  inset: auto 24px 34px;
  color: white;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.page-hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.page-hero-copy p { margin: 8px auto 0; max-width: 780px; font-size: clamp(18px, 2vw, 24px); }

.paper-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 10%, rgba(255,255,255,.95), transparent 35%),
    linear-gradient(135deg, #fffdf8, #f8f2e8);
  border-top: 1px solid rgba(18, 63, 114, .08);
}
.content-wide, .content-narrow {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: auto;
  padding: 78px 0;
}
.content-narrow { width: min(780px, calc(100% - 48px)); }
.center { text-align: center; }
.lead { font-size: clamp(20px, 2.3vw, 27px); line-height: 1.55; }
.display-name {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: .04em;
}
.section-heading { text-align: center; max-width: 850px; margin: 0 auto 50px; }
.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 400;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.section-heading p { margin: 12px auto 0; font-size: 22px; }
.small-ornament { margin: 9px 0; color: var(--blue); letter-spacing: .18em; }
.section-kicker {
  margin: 55px 0 30px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.floral-corner {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 450px;
  opacity: .24;
  pointer-events: none;
}
.floral-corner::before, .floral-corner::after {
  content: "";
  position: absolute;
  border: 2px solid var(--blue);
  border-radius: 50% 0 50% 0;
  transform: rotate(-35deg);
}
.floral-corner::before { width: 130px; height: 230px; top: 40px; left: 55px; border-width: 1px; }
.floral-corner::after { width: 180px; height: 300px; top: 100px; left: 100px; border-width: 1px; }
.floral-left { left: -120px; top: 30px; transform: rotate(-20deg); }
.floral-right { right: -120px; top: 10px; transform: scaleX(-1) rotate(-20deg); }

.countdown-heading { margin: 50px 0 20px; font-family: var(--display); font-size: 28px; font-weight: 400; text-transform: uppercase; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0 auto 35px; max-width: 650px; }
.countdown > div { padding: 20px 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.countdown strong { display: block; font-family: var(--display); font-size: clamp(36px, 5vw, 58px); font-weight: 400; line-height: 1; }
.countdown span { display: block; margin-top: 7px; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.button-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 49px;
  padding: 12px 25px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .12em;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: white; background: var(--blue); }
.button.secondary { color: var(--blue); background: rgba(255,255,255,.35); }
.button.disabled { opacity: .55; pointer-events: none; }

.schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.schedule-item { position: relative; padding: 20px 24px; text-align: center; }
.schedule-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 23%; bottom: 20%; width: 1px; background: var(--line); }
.schedule-symbol { font-size: 42px; line-height: 1; }
.schedule-time { margin-top: 16px; font-family: var(--display); font-size: 28px; }
.schedule-item h4 { margin: 6px 0 9px; font-size: 22px; line-height: 1.15; }
.schedule-item p { margin: 0; font-size: 17px; }
.venue-feature { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; margin-top: 80px; padding-top: 65px; border-top: 1px solid var(--line); }
.venue-feature img { width: 100%; height: 420px; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.venue-copy .section-heading { margin-bottom: 25px; }
.venue-copy p { font-size: 20px; text-align: center; }
.closing-cta { margin-top: 80px; text-align: center; }
.closing-cta h3 { font-family: var(--display); font-size: clamp(30px, 4vw, 48px); font-weight: 400; text-transform: uppercase; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.info-card { padding: 40px 38px; border: 1px solid var(--line); background: rgba(255,255,255,.38); text-align: center; }
.info-icon { font-size: 42px; }
.info-card h3 { margin: 8px 0 0; font-family: var(--display); font-size: 28px; font-weight: 400; text-transform: uppercase; }
.rich-copy p { margin: 13px 0 0; font-size: 17px; }

.address-block { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; padding: 30px 0 40px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.address-block h3 { margin: 0; font-size: 29px; }
.address-block p { margin: 8px 0 0; }
.warning-copy { padding-left: 28px; border-left: 3px solid #a24a40; }
.map-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 25px; align-items: stretch; }
.map-card { margin: 0; padding: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.map-card figcaption { padding: 8px 7px 15px; font-family: var(--display); font-size: 22px; text-align: center; text-transform: uppercase; }
.map-card img { width: 100%; height: 430px; object-fit: contain; background: white; }
.center-row { margin: 32px 0 60px; }
.logistics-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.logistics-grid article { position: relative; padding: 32px 38px 34px 70px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logistics-grid .wide-detail { grid-column: 1 / -1; }
.detail-icon { position: absolute; left: 28px; top: 28px; font-size: 27px; }
.logistics-grid h3 { margin: 0 0 7px; font-family: var(--display); font-size: 25px; font-weight: 400; text-transform: uppercase; }
.logistics-grid p { margin: 0; font-size: 17px; }
.time-chips { display: flex; gap: 9px; margin-top: 14px; }
.time-chips span { padding: 6px 12px; border: 1px solid var(--line); font-family: var(--sans); font-size: 12px; }

.simple-page { min-height: calc(100vh - var(--header-height) - 100px); }
.simple-content { padding-top: 130px; padding-bottom: 130px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 22px 0; cursor: pointer; font-family: var(--display); font-size: 23px; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; float: right; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin: 0 0 25px; }

.site-footer {
  min-height: 104px;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  text-transform: uppercase;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .08em;
  text-align: center;
}
.footer-ornament { flex-basis: 100%; line-height: 1; }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 90px 1fr 82px; width: min(100% - 28px, 1000px); }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 12px; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-item:nth-child(2)::after { display: none; }
  .schedule-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  :root { --header-height: 68px; }
  body { font-size: 17px; }
  .site-header { height: var(--header-height); }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 14px; }
  .brand-monogram { font-size: 29px; }
  .menu-toggle {
    display: grid;
    width: 36px;
    height: 36px;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { width: 24px; height: 1px; background: var(--blue); }
  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 4px; font-size: 14px; }
  .main-nav a::after { display: none; }
  .language-switcher { grid-column: 2; grid-row: 1; }
  .menu-toggle { grid-column: 3; grid-row: 1; }
  .home-hero { height: 68vh; min-height: 480px; }
  .home-hero img { object-position: 42% center; }
  .page-hero { height: 290px; }
  .content-wide, .content-narrow { width: min(100% - 32px, 720px); padding: 58px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading p { font-size: 19px; }
  .schedule-grid, .info-grid, .venue-feature, .address-block, .map-grid, .logistics-grid { grid-template-columns: 1fr; }
  .schedule-item { padding: 26px 18px; border-bottom: 1px solid var(--line); }
  .schedule-item::after { display: none; }
  .schedule-item:last-child { border-bottom: 0; }
  .venue-feature { gap: 28px; margin-top: 45px; padding-top: 45px; }
  .venue-feature img { height: 320px; }
  .address-block { gap: 24px; }
  .warning-copy { padding-left: 18px; }
  .map-card img { height: auto; max-height: 520px; }
  .logistics-grid { border-left: 1px solid var(--line); }
  .logistics-grid .wide-detail { grid-column: auto; }
}

@media (max-width: 520px) {
  .language-switcher span { display: none; }
  .language-switcher { gap: 0; }
  .language-switcher button { font-size: 12px; }
  .home-hero-copy { left: 24px; right: 24px; bottom: 42px; }
  .home-hero-copy h1 { font-size: 58px; }
  .page-hero-copy h1 { font-size: 36px; }
  .page-hero-copy p { font-size: 17px; }
  .countdown { gap: 4px; }
  .countdown > div { padding: 17px 3px; }
  .countdown strong { font-size: 34px; }
  .countdown span { font-size: 8px; letter-spacing: .06em; }
  .button { width: 100%; }
  .info-card { padding: 30px 22px; }
  .logistics-grid article { padding: 30px 24px 32px 60px; }
  .detail-icon { left: 22px; }
  .floral-corner { opacity: .15; }
}
