:root {
  --ink: #102540;
  --ink-deep: #081a2f;
  --blue: #1e67b9;
  --blue-soft: #dcecfb;
  --gold: #efb700;
  --red: #d83c32;
  --paper: #f8f5ed;
  --white: #ffffff;
  --muted: #657183;
  --line: rgba(16, 37, 64, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.shell { width: var(--shell); margin: 0 auto; }
.section { padding: 108px 0; }
.skip-link { position: fixed; left: 16px; top: -50px; z-index: 99; background: var(--gold); color: var(--ink-deep); padding: 10px 14px; border-radius: 10px; font-weight: 800; }
.skip-link:focus { top: 16px; }

.site-header { position: absolute; inset: 0 0 auto; z-index: 10; padding: 20px 0; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 144px; height: 52px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.site-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.84); font-size: 14px; font-weight: 700; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--gold); }
.nav-cta { color: var(--ink-deep); background: var(--gold); border-radius: 999px; padding: 11px 16px; font-size: 13px; font-weight: 850; white-space: nowrap; }

.hero { min-height: 760px; position: relative; overflow: hidden; color: var(--white); background: radial-gradient(circle at 74% 31%, #2e73bb 0, #1c589a 20%, #102f52 47%, #071b31 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 660px; height: 660px; right: -150px; top: 100px; border: 1px solid rgba(255,255,255,.13); box-shadow: 0 0 0 50px rgba(255,255,255,.035), 0 0 0 130px rgba(255,255,255,.025); }
.hero::after { width: 420px; height: 420px; left: -240px; bottom: 40px; background: rgba(239,183,0,.13); filter: blur(8px); }
.hero-noise { position: absolute; inset: 0; opacity: .22; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E"); pointer-events: none; }
.hero-grid { min-height: 760px; position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .72fr; gap: 80px; align-items: center; padding: 128px 0 88px; }
.eyebrow, .section-kicker { margin: 0 0 17px; font-weight: 850; font-size: 12px; letter-spacing: .115em; text-transform: uppercase; }
.eyebrow { color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 26px; height: 3px; background: var(--gold); border-radius: 999px; }
.hero h1 { margin: 0; max-width: 740px; font-size: clamp(3.6rem, 7.6vw, 6.7rem); line-height: .91; letter-spacing: -.073em; font-weight: 850; }
.hero h1 em { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
.hero-intro { max-width: 590px; margin: 30px 0 0; font-size: clamp(1rem, 1.65vw, 1.22rem); line-height: 1.65; color: rgba(255,255,255,.81); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 51px; border-radius: 999px; padding: 0 21px; border: 1px solid transparent; font-size: 14px; font-weight: 850; transition: transform .2s ease, background .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink-deep); background: var(--gold); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.05); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 54px; }
.hero-facts div { display: grid; gap: 4px; padding-left: 15px; border-left: 2px solid var(--red); }
.hero-facts strong { font-size: 15px; }
.hero-facts span { color: rgba(255,255,255,.66); font-size: 13px; }
.meeting-card { position: relative; overflow: hidden; padding: 26px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); background: rgba(255,255,255,.95); box-shadow: 0 24px 70px rgba(0,0,0,.25); color: var(--ink); transform: rotate(1.4deg); }
.meeting-card::after { content: ""; position: absolute; right: -42px; bottom: -58px; width: 180px; height: 180px; border-radius: 50%; background: rgba(30,103,185,.08); }
.meeting-card-top { position: relative; z-index: 1; display: flex; align-items: center; gap: 9px; color: var(--blue); font-size: 12px; letter-spacing: .09em; font-weight: 850; text-transform: uppercase; }
.meeting-dot { width: 9px; height: 9px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 5px rgba(216,60,50,.14); }
.meeting-date { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; margin-top: 23px; }
.date-weekday { grid-column: 1 / -1; color: var(--muted); font-size: 16px; font-weight: 700; }
.meeting-date strong { font-size: clamp(5.6rem, 9vw, 7.5rem); line-height: .78; letter-spacing: -.08em; }
.date-month { padding-bottom: 5px; color: var(--blue); font-size: 18px; font-weight: 850; }
.meeting-full-date { position: relative; z-index: 1; margin: 18px 0 0; font-weight: 800; }
.meeting-time-row, .meeting-place-row { position: relative; z-index: 1; display: flex; align-items: center; gap: 11px; padding: 16px 0; border-top: 1px solid var(--line); }
.meeting-time-row { margin-top: 24px; }
.meeting-time-row strong { margin-right: auto; font-size: 18px; }
.meeting-time-row span:last-child { color: var(--muted); font-size: 12px; }
.clock, .pin { color: var(--red); font-size: 23px; line-height: 1; }
.meeting-place-row div { display: grid; gap: 4px; }
.meeting-place-row strong { font-size: 15px; }
.meeting-place-row span { color: var(--muted); font-size: 12px; }
.meeting-link { position: relative; z-index: 1; display: inline-flex; gap: 8px; margin-top: 18px; color: var(--blue); font-size: 13px; font-weight: 850; }
.hero-curve { position: absolute; z-index: 2; bottom: -1px; left: -4%; width: 108%; height: 104px; background: var(--paper); border-radius: 52% 48% 0 0 / 32% 35% 0 0; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .48fr 1.1fr .65fr; align-items: start; gap: 52px; }
.section-kicker { color: var(--blue); }
.section-kicker.light { color: var(--gold); }
h2 { margin: 0; letter-spacing: -.058em; font-size: clamp(2.4rem, 5vw, 4.6rem); line-height: .98; }
.about-grid > div:nth-child(2) { max-width: 680px; }
.about-grid p:not(.section-kicker) { font-size: 17px; line-height: 1.72; color: var(--muted); }
.about-note { position: relative; min-height: 220px; padding: 39px 32px 30px; background: var(--gold); border-radius: var(--radius-md); color: var(--ink-deep); transform: rotate(-2deg); }
.about-note p { margin: 0; color: var(--ink-deep) !important; font-family: Georgia, "Times New Roman", serif; font-size: 26px !important; line-height: 1.22 !important; }
.quote-mark { position: absolute; top: 12px; left: 22px; font-family: Georgia, serif; font-size: 70px; line-height: 1; color: rgba(16,37,64,.22); }

.next-meeting { position: relative; overflow: hidden; background: var(--ink-deep); color: var(--white); }
.next-meeting::after { content: ""; position: absolute; width: 580px; height: 580px; right: -330px; top: -260px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 100px rgba(255,255,255,.015); }
.next-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .88fr; gap: 80px; align-items: end; }
.next-heading p:not(.section-kicker) { max-width: 550px; margin: 24px 0 0; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.65; }
.schedule-row { display: grid; grid-template-columns: auto 1fr auto; gap: 23px; align-items: center; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.schedule-time { color: var(--gold); font-size: clamp(3.5rem, 6vw, 5.5rem); font-weight: 850; letter-spacing: -.08em; line-height: .8; }
.schedule-time sup { font-size: .36em; top: -1.15em; }
.schedule-details { display: grid; gap: 4px; }
.schedule-details strong { font-size: 19px; }
.schedule-details span { color: rgba(255,255,255,.68); font-size: 14px; }
.schedule-row a { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--ink-deep); background: var(--white); font-size: 20px; font-weight: 900; }

.gallery { background: var(--white); }
.gallery-header { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 35px; }
.gallery-controls { display: flex; gap: 10px; }
.gallery-button { cursor: pointer; display: grid; place-items: center; width: 47px; height: 47px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); color: var(--ink); font-size: 20px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.gallery-button:hover, .gallery-button:focus-visible { color: var(--white); background: var(--blue); transform: translateY(-2px); }
.gallery-viewport { overflow: hidden; border-radius: var(--radius-lg); outline: none; }
.gallery-track { display: flex; gap: 18px; transition: transform .52s cubic-bezier(.22,.61,.36,1); }
.gallery-slide { position: relative; flex: 0 0 calc((100% - 36px) / 3); margin: 0; aspect-ratio: .89; overflow: hidden; border-radius: 20px; background: #e7edf5; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-slide:hover img { transform: scale(1.04); }
.gallery-slide::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,20,37,.8)); pointer-events: none; }
.gallery-slide figcaption { position: absolute; z-index: 1; right: 16px; bottom: 15px; left: 16px; color: var(--white); font-size: 13px; font-weight: 800; text-transform: capitalize; }
.gallery-help { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.gallery-empty { display: flex; align-items: center; gap: 22px; padding: 38px; border: 1px dashed rgba(16,37,64,.25); border-radius: var(--radius-md); background: linear-gradient(135deg, #f9fbff, #eef4fc); }
.empty-icon { display: grid; flex: 0 0 auto; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--blue); color: var(--white); font-size: 38px; }
.gallery-empty strong { font-size: 18px; }
.gallery-empty p { margin: 6px 0 0; color: var(--muted); line-height: 1.6; }
.gallery-empty code { padding: 3px 6px; border-radius: 5px; background: #dcecfb; color: var(--ink); }

.venue { background: var(--paper); }
.venue-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 72px; align-items: center; }
.venue-content > p:not(.section-kicker) { max-width: 480px; margin: 27px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
address { display: grid; gap: 5px; margin-top: 31px; font-style: normal; }
address strong { font-size: 19px; }
address span { color: var(--muted); font-size: 15px; }
.venue-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 32px; }
.text-link { color: var(--blue); font-size: 14px; font-weight: 850; }
.venue-map-card { display: none; position: relative; min-height: 440px; overflow: hidden; border-radius: var(--radius-lg); background: #cbd9df; box-shadow: 0 22px 54px rgba(16,37,64,.12); }
.map-grid { position: absolute; inset: -30px; background-image: linear-gradient(32deg, transparent 47%, rgba(255,255,255,.75) 48%, rgba(255,255,255,.75) 51%, transparent 52%), linear-gradient(127deg, transparent 45%, rgba(255,255,255,.64) 46%, rgba(255,255,255,.64) 49%, transparent 50%), linear-gradient(0deg, transparent 48%, rgba(255,255,255,.48) 49%, rgba(255,255,255,.48) 51%, transparent 52%); background-size: 180px 150px, 220px 190px, 130px 110px; transform: rotate(-7deg) scale(1.14); }
.map-route { position: absolute; z-index: 1; border: 15px solid transparent; border-radius: 48%; }
.route-one { width: 110%; height: 80%; left: -24%; top: 6%; border-top-color: rgba(30,103,185,.78); transform: rotate(21deg); }
.route-two { width: 88%; height: 86%; right: -33%; bottom: -31%; border-left-color: rgba(239,183,0,.88); transform: rotate(-25deg); }
.map-marker { position: absolute; z-index: 3; top: 47%; left: 53%; display: grid; gap: 2px; padding: 14px 17px 15px; border-radius: 14px; background: var(--ink); color: var(--white); box-shadow: 0 12px 26px rgba(6,23,43,.24); transform: translate(-50%, -50%); }
.map-marker::after { content: ""; position: absolute; left: 22px; bottom: -9px; width: 18px; height: 18px; background: var(--ink); transform: rotate(45deg); }
.map-marker span { width: 10px; height: 10px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(216,60,50,.22); }
.map-marker strong, .map-marker small { position: relative; z-index: 1; }
.map-marker strong { margin-top: 4px; font-size: 15px; }
.map-marker small { color: rgba(255,255,255,.7); font-size: 11px; }
.map-label { position: absolute; z-index: 2; padding: 6px 9px; border-radius: 5px; background: rgba(255,255,255,.74); color: rgba(16,37,64,.7); font-size: 11px; font-weight: 800; }
.label-one { top: 23%; left: 18%; }
.label-two { bottom: 21%; right: 11%; }

.site-footer { padding: 42px 0; color: rgba(255,255,255,.66); background: var(--ink-deep); }
.footer-row { display: flex; justify-content: space-between; gap: 34px; align-items: end; }
.site-footer img { width: 158px; height: 52px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); opacity: .95; }
.site-footer p { margin: 12px 0 0; font-size: 13px; }
.footer-row > p { margin: 0; text-align: right; }

@media (max-width: 940px) {
  .site-nav { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding: 145px 0 150px; }
  .hero-copy { max-width: 690px; }
  .meeting-card { max-width: 460px; transform: none; }
  .about-grid { grid-template-columns: 1fr 1.3fr; }
  .about-note { grid-column: 2; max-width: 330px; }
  .next-grid, .venue-grid { grid-template-columns: 1fr; gap: 42px; }
  .gallery-slide { flex-basis: calc((100% - 18px) / 2); }
  .venue-map-card { min-height: 360px; }
}

@media (max-width: 620px) {
  :root { --shell: min(100% - 32px, 1180px); }
  .section { padding: 77px 0; }
  .site-header { padding: 14px 0; }
  .brand img { width: 122px; height: 42px; }
  .nav-cta { padding: 10px 13px; font-size: 11px; }
  .hero-grid { padding: 118px 0 128px; }
  .hero h1 { font-size: clamp(3.35rem, 17vw, 4.9rem); }
  .hero-intro { margin-top: 22px; font-size: 16px; }
  .hero-actions { margin-top: 27px; }
  .button { width: 100%; min-height: 52px; }
  .hero-facts { display: grid; gap: 16px; margin-top: 37px; }
  .meeting-card { padding: 22px; border-radius: 24px; }
  .meeting-date strong { font-size: 5.6rem; }
  .hero-curve { height: 60px; }
  .about-grid { grid-template-columns: 1fr; gap: 22px; }
  .about-note { grid-column: auto; min-height: 170px; max-width: 100%; margin-top: 9px; }
  .next-grid { gap: 36px; }
  .schedule-row { gap: 14px; }
  .schedule-time { font-size: 3.7rem; }
  .schedule-details strong { font-size: 17px; }
  .gallery-header { align-items: start; margin-bottom: 28px; }
  .gallery-controls { padding-top: 7px; }
  .gallery-button { width: 40px; height: 40px; }
  .gallery-track { gap: 12px; }
  .gallery-slide { flex-basis: 85%; border-radius: 17px; }
  .gallery-help { line-height: 1.5; }
  .gallery-empty { align-items: flex-start; padding: 25px 20px; }
  .empty-icon { width: 45px; height: 45px; font-size: 28px; }
  .venue-grid { gap: 42px; }
  .venue-map-card { min-height: 300px; border-radius: 22px; }
  .venue-actions { align-items: stretch; gap: 18px; }
  .text-link { text-align: center; }
  .footer-row { display: grid; gap: 24px; }
  .footer-row > p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
