:root {
  --ink: #13221f;
  --muted: #5f6f69;
  --paper: #f5f1e8;
  --surface: #fffdf8;
  --teal: #174c46;
  --teal-2: #0d332f;
  --gold: #c9a451;
  --clay: #9d5b43;
  --sage: #dce6de;
  --line: rgba(19, 34, 31, .14);
  --shadow: 0 18px 54px rgba(13, 32, 29, .13);
  --radius: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 78px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
}
body.nav-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link, .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; inset: 16px auto auto 16px; z-index: 100;
  width: auto; height: auto; padding: 10px 14px; clip: auto;
  color: white; background: var(--ink); border-radius: 8px;
}
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  min-height: 78px; padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(255,253,248,.94); border-bottom: 1px solid rgba(19,34,31,.09);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; min-width: 250px; }
.brand img { width: 86px; height: auto; object-fit: contain; }
.brand strong { font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; color: #17352f; }
.brand strong span { color: var(--clay); }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a, .journey-menu summary {
  border-radius: 999px; padding: 9px 12px; color: #1d3530;
  font-size: .88rem; font-weight: 800; text-decoration: none; cursor: pointer;
}
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.active, .journey-menu[open] summary, .journey-menu.active summary {
  background: rgba(23,76,70,.1);
}
.journey-menu.active summary {
  color: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(23,76,70,.16);
}
.journey-menu { position: relative; }
.journey-menu summary { list-style: none; }
.journey-menu summary::-webkit-details-marker { display: none; }
.journey-mega {
  position: absolute; top: 46px; right: -130px; width: min(760px, calc(100vw - 34px));
  padding: 18px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--surface); box-shadow: var(--shadow);
}
.journey-mega p { margin: 0 0 12px; color: var(--muted); font-weight: 900; text-transform: uppercase; font-size: .78rem; letter-spacing: .08em; }
.journey-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.journey-card {
  display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 10px;
  border: 1px solid rgba(23,76,70,.12); border-radius: 12px !important; padding: 10px !important;
  background: rgba(220,230,222,.35);
}
.journey-card.active {
  border-color: rgba(179,49,43,.42);
  background: linear-gradient(135deg, rgba(179,49,43,.14), rgba(220,230,222,.62));
}
.journey-card span {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 999px;
  background: var(--teal); color: white; font-size: .78rem; font-weight: 900;
}
.journey-card.active span { background: var(--red); }
.journey-card strong { font-size: .82rem; line-height: 1.25; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--surface);
}
.nav-toggle span:not(.sr-only) { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }
.home-hero, .inner-hero {
  position: relative; width: min(100%, 1366px); margin: 0 auto;
  min-height: min(640px, calc(100vh - 78px)); display: grid; align-items: center;
  padding: clamp(58px, 7vw, 100px) clamp(20px, 5vw, 72px);
  overflow: hidden; color: white; background-color: var(--teal-2);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 18px 46px rgba(13,32,29,.18);
}
.home-hero {
  aspect-ratio: 1376 / 752;
  min-height: auto;
  background:
    linear-gradient(90deg, rgba(8,27,25,.45), rgba(8,27,25,.24) 34%, rgba(8,27,25,.08) 68%, rgba(8,27,25,.02)),
    var(--hero-image) center / cover no-repeat;
}
.home-hero.image-only, .inner-hero.image-only {
  position: relative;
  display: block;
  padding: 0;
  background: #081b19;
  min-height: auto;
}
.home-hero.image-only img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1376 / 752;
  object-fit: contain;
}
.inner-hero.image-only img {
  display: block;
  width: 100%;
  height: clamp(330px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
}
.hero-title-banner {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: clamp(20px, 5vw, 58px);
  max-width: min(760px, calc(100% - 40px));
  padding: clamp(16px, 2.2vw, 28px) clamp(18px, 3vw, 34px);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13,51,47,.92), rgba(23,76,70,.8));
  color: white;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
.hero-title-banner p {
  margin: 0 0 10px;
  color: #f2d575;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-title-banner h1 {
  font-size: clamp(1.7rem, 4vw, 4.25rem);
  max-width: 13ch;
}
.inner-hero {
  min-height: 360px;
  background:
    linear-gradient(90deg, rgba(8,27,25,.9), rgba(8,27,25,.68) 44%, rgba(8,27,25,.18)),
    var(--hero-image) center / cover no-repeat,
    linear-gradient(135deg, #0d332f 0%, #174c46 58%, #6f4b3d 100%);
}
.gallery-hero {
  background:
    linear-gradient(90deg, rgba(8,27,25,.9), rgba(8,27,25,.58)),
    var(--hero-image) center / cover no-repeat,
    linear-gradient(135deg, #0d332f, #355f58 58%, #9d5b43);
}
.hero-copy { max-width: 780px; position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 18px; color: #f2d575; font-size: .82rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
}
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1, h2 { font-family: Lora, Georgia, serif; }
h1 { font-size: clamp(2.5rem, 6.4vw, 6.1rem); font-weight: 700; }
.home-hero h1 span { display: block; }
.hero-rule { width: min(360px, 58vw); height: 2px; margin: 22px 0; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-copy p:not(.eyebrow) { max-width: 660px; margin: 0; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button, .inline-contact {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  border: 1px solid var(--teal); border-radius: 999px; padding: 11px 17px;
  font: inherit; font-weight: 900; text-decoration: none; cursor: pointer;
}
.button.primary, .inline-contact { color: white; background: #b3312b; border-color: #b3312b; }
.button.secondary { color: white; background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.72); }
.content-flow { max-width: 1220px; margin: 0 auto; padding: clamp(36px, 5vw, 70px) clamp(16px, 4vw, 42px); }
.topic-block {
  position: relative;
  display: block;
  margin: 0 0 28px;
  padding: clamp(18px, 2.8vw, 30px);
  border: 1px solid rgba(19,34,31,.11); border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,253,248,.92)),
    rgba(255,253,248,.9);
  box-shadow: var(--shadow); overflow: hidden;
}
.topic-block::after { content: ""; display: table; clear: both; }
.topic-block::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 7px;
  background: linear-gradient(180deg, var(--gold), var(--teal), var(--clay));
  opacity: .95;
}
.topic-block.reverse::before { left: auto; right: 0; }
.topic-copy { padding: 0; }
.topic-copy h2 {
  display: block; padding: 17px 20px; color: white;
  background:
    linear-gradient(90deg, rgba(201,164,81,.22), transparent 42%),
    linear-gradient(90deg, var(--teal), #476b61);
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 24px rgba(13,32,29,.1);
  font-size: clamp(1.35rem, 2.7vw, 2.35rem); line-height: 1.22;
  text-transform: uppercase;
}
.topic-copy h3 {
  margin: 20px 0 0;
  color: var(--teal);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 900;
}
.topic-copy p { margin: 18px 0 0; font-size: 1.02rem; color: #2c3d39; }
.topic-copy p.lead-line { color: var(--teal); font-weight: 800; }
.topic-copy strong { font-weight: 900; }
.topic-copy em { font-style: italic; }
.topic-media {
  display: grid;
  place-items: center;
  float: right;
  width: min(43%, 430px);
  margin: 0 0 clamp(16px, 2vw, 24px) clamp(22px, 3vw, 34px);
  min-height: 0; border-radius: 16px; background: #f8f5ec; overflow: hidden;
  border: 1px solid rgba(19,34,31,.13); box-shadow: 0 14px 34px rgba(13,32,29,.12);
}
.topic-block.reverse .topic-media {
  float: left;
  margin: 0 clamp(22px, 3vw, 34px) clamp(16px, 2vw, 24px) 0;
}
.topic-media img {
  width: 100%;
  height: auto;
  max-height: min(62vh, 560px);
  background: #f8f5ec;
}
.topic-media.embedded img { object-fit: contain; }
.topic-media.site-image img {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}
.nice-list, .check-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.nice-list li, .check-list li {
  position: relative; padding: 12px 14px 12px 42px; border: 1px solid rgba(23,76,70,.14);
  border-radius: 12px; background: linear-gradient(90deg, rgba(220,230,222,.62), rgba(255,253,248,.8));
}
.nice-list li::before, .check-list li::before {
  content: ""; position: absolute; left: 15px; top: 1.2em; width: 9px; height: 9px;
  border-radius: 99px; background: var(--clay);
}
.check-list li::before { width: 13px; height: 13px; border: 2px solid var(--teal); background: transparent; top: 1.05em; }
.inline-contact { margin: 22px 10px 0 0; }
.inline-contact:hover, .inline-contact:focus-visible, .button.primary:hover, .button.primary:focus-visible {
  background: #8f211d; border-color: #8f211d;
}
.gallery-shell { max-width: 1180px; margin: 0 auto; padding: clamp(42px, 6vw, 84px) clamp(16px, 4vw, 44px); }
.gallery-intro { max-width: 760px; margin-bottom: 26px; }
.gallery-intro h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.gallery-grid, .gallery-holder-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-item { border: 1px solid var(--line); border-radius: 12px; background: var(--surface); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img, .gallery-item video { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item audio { width: calc(100% - 24px); margin: 16px 12px; }
.gallery-item div { padding: 14px; }
.gallery-slot, .gallery-item {
  min-height: 230px; margin: 0; border: 1px solid var(--line); border-radius: 12px;
  background: var(--surface); overflow: hidden; box-shadow: var(--shadow);
}
.gallery-placeholder {
  width: 100%; border: 0; cursor: default; font: inherit;
  min-height: 230px; display: grid; place-items: center; gap: 8px; padding: 24px;
  background: linear-gradient(135deg, rgba(23,76,70,.1), rgba(201,164,81,.16));
  color: var(--teal); text-align: center;
}
.gallery-placeholder span {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 999px;
  color: white; background: var(--teal); font-weight: 900;
}
.gallery-placeholder small { color: var(--muted); font-weight: 700; line-height: 1.45; }
.admin-steps {
  margin: 18px 0 0; padding-left: 1.25rem; color: #2c3d39;
}
.admin-steps li { margin: 8px 0; }
.site-footer {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, .62fr); gap: 28px;
  padding: clamp(38px, 6vw, 74px) clamp(18px, 5vw, 72px);
  background: #10211f; color: white;
}
.site-footer h2 { margin: 14px 0 8px; font-size: clamp(1.55rem, 3vw, 2.6rem); }
.site-footer p { margin: 0; color: rgba(255,255,255,.74); }
.site-footer address { display: grid; align-content: center; gap: 10px; font-style: normal; }
.site-footer address a { padding: 8px 0; color: rgba(255,255,255,.86); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-dialog { width: min(920px, calc(100% - 24px)); border: 0; border-radius: 14px; padding: 0; box-shadow: 0 28px 90px rgba(0,0,0,.32); }
.contact-dialog::backdrop { background: rgba(8,27,25,.68); backdrop-filter: blur(4px); }
.contact-form { position: relative; padding: clamp(22px, 4vw, 42px); background: var(--surface); }
.inline-contact-section { margin-top: 34px; }
.contact-form.inline-form { border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.contact-form h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
.form-note { margin: 8px 0 22px; color: var(--muted); }
.dialog-close { position: absolute; right: 16px; top: 14px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 99px; background: white; font-size: 1.5rem; cursor: pointer; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid.two { margin-top: 14px; }
label, legend { font-weight: 800; color: #213531; }
input, textarea {
  width: 100%; margin-top: 6px; border: 1px solid rgba(19,34,31,.22); border-radius: 9px;
  padding: 12px; font: inherit; background: white;
}
fieldset { margin: 18px 0; padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 16px; margin-top: 10px; }
.check-grid label { display: flex; gap: 8px; align-items: flex-start; font-weight: 600; }
.check-grid input { width: auto; margin-top: 5px; }
.form-status { min-height: 1.4em; color: var(--teal); font-weight: 800; }
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 86px 12px auto; display: none; flex-direction: column; align-items: stretch;
    padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,253,248,.98); box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: flex; }
  .journey-mega { position: static; width: auto; box-shadow: none; min-width: 0; margin-top: 8px; }
  .journey-grid { grid-template-columns: 1fr; }
  .site-footer, .form-grid, .gallery-grid, .gallery-holder-grid { grid-template-columns: 1fr; }
  .topic-media, .topic-block.reverse .topic-media {
    float: none;
    width: 100%;
    margin: 0 0 18px;
  }
  .home-hero { min-height: 620px; background-position: 62% center; }
  .home-hero.image-only, .inner-hero.image-only { min-height: auto; padding: 0; }
  .inner-hero.image-only img { height: clamp(300px, 58vw, 440px); }
  .hero-title-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}
@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand img { width: 68px; }
  .brand strong { font-size: .72rem; max-width: 190px; }
  .home-hero, .inner-hero { padding-left: 16px; padding-right: 16px; min-height: 560px; }
  .home-hero.image-only, .inner-hero.image-only { min-height: auto; padding: 0; }
  .inner-hero.image-only img { height: 320px; }
  .hero-title-banner { padding: 14px 16px; }
  .hero-title-banner h1 { font-size: clamp(1.35rem, 8vw, 2.2rem); max-width: none; }
  .topic-copy { padding: 20px; }
  .topic-media img { max-height: none; }
  .check-grid { grid-template-columns: 1fr; }
}
