:root {
  --ink: #15223a;
  --ink-soft: #31405c;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #d9ddd7;
  --green: #2f725e;
  --teal: #0f5e70;
  --coral: #c45745;
  --gold: #d5a436;
  --shadow: 0 18px 45px rgba(21, 34, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(21, 34, 58, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 92px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a,
.site-nav button {
  color: var(--ink);
  text-decoration: none;
}

.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.lang-toggle {
  min-width: 44px;
  height: 34px;
  border-radius: 8px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: calc(100svh - 68px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 540px;
  background: var(--ink);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 86px);
  background:
    linear-gradient(120deg, rgba(47, 114, 94, 0.1), transparent 35%),
    linear-gradient(180deg, var(--white), var(--paper));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.catalog-search {
  max-width: 620px;
  margin-top: 30px;
}

.catalog-search label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 800;
}

.search-row {
  display: flex;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.search-row input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
}

.search-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  min-height: 118px;
  padding: 24px clamp(18px, 3vw, 38px);
  background: var(--ink);
  color: var(--white);
}

.quick-info span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.04rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 840px;
  margin-bottom: 28px;
}

.path-grid,
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.path-card,
.visit-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(21, 34, 58, 0.07);
}

.path-card {
  display: flex;
  min-height: 228px;
  flex-direction: column;
  gap: 16px;
  padding: 22px;
  text-decoration: none;
}

.path-card strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.path-card span:last-child {
  color: var(--ink-soft);
}

.path-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: rgba(15, 94, 112, 0.12);
  color: var(--teal);
  font-weight: 900;
}

.story-section,
.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: center;
}

.story-copy p:not(.eyebrow),
.split-section p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.story-image {
  margin: 0;
}

.story-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-image figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.split-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 900;
}

.steps p {
  margin: 0;
}

.visit-section {
  background:
    linear-gradient(90deg, rgba(213, 164, 54, 0.11), transparent 42%),
    var(--paper);
}

.visit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visit-panel {
  min-height: 240px;
  padding: 24px;
}

.visit-panel p {
  color: var(--ink-soft);
}

.visit-panel a {
  color: var(--teal);
  font-weight: 800;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  color: var(--ink-soft);
}

.hours-list dd {
  margin: 0;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px) 88px;
  background: #10192b;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.mobile-cta a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 1040px) {
  .hero,
  .story-section,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 420px;
  }

  .path-grid,
  .quick-info {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 82px;
  }

  .brand span {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 67px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav button {
    min-height: 44px;
    padding: 11px 12px;
    text-align: left;
  }

  .lang-toggle {
    width: 100%;
  }

  .hero-copy {
    padding: 34px 18px 42px;
  }

  .hero-media {
    min-height: 310px;
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .search-row {
    flex-direction: column;
    min-height: 104px;
  }

  .search-row input,
  .search-row button {
    min-height: 52px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button:nth-child(3) {
    display: none;
  }

  .quick-info,
  .path-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .path-card,
  .visit-panel {
    min-height: auto;
  }

  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .final-actions,
  .final-actions .button {
    width: 100%;
  }

  .mobile-cta {
    display: grid;
  }
}
