:root {
  --bg: #f2f6f7;
  --surface: #ffffff;
  --surface-alt: #e4edef;
  --text: #10222a;
  --text-muted: #48606a;
  --border: rgba(16, 34, 42, 0.12);
  --accent: #125e6e;
  --accent-2: #c2803d;
  --secondary: #1a3a45;
  --on-accent: #ffffff;
  --dark: #0c1c23;
  --radius: 20px;
  --radius-pill: 999px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Candara, Optima, "Segoe UI", sans-serif;
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --content: 1320px;
  --header-h: 88px;
  --header-h-shrunk: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.container {
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.section--dark {
  background: var(--dark);
  color: var(--on-accent);
}

.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: var(--on-accent);
}

.section--dark .kicker {
  color: var(--accent-2);
}

.section--dark p,
.section--dark .text-muted {
  color: rgba(255, 255, 255, 0.78);
}

.categories-dark {
  background: var(--dark);
  color: var(--on-accent);
  margin-top: 96px;
  padding: 96px 0 120px;
}

#categories.section {
  padding-bottom: 0;
}

.categories-dark h2,
.categories-dark .kicker {
  color: var(--on-accent);
}

.categories-dark .kicker {
  color: var(--accent-2);
}

.categories-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section--alt {
  background: var(--surface-alt);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.2;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--secondary);
}

.btn--full {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  background: transparent;
}

.site-header.is-solid,
.site-header.is-scrolled {
  background: rgba(242, 246, 247, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header.is-scrolled {
  height: var(--header-h-shrunk);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 48px, var(--content));
  margin-inline: auto;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

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

.site-header.is-scrolled .brand img {
  width: 32px;
  height: 31px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

.nav-list a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--accent-2);
  padding-bottom: 2px;
}

.notice {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  background: var(--surface);
  max-width: 52rem;
}

.notice--home {
  margin: -40px auto 0;
  position: relative;
  z-index: 2;
}

.page-hero {
  padding: 72px 0 40px;
}

.page-hero .notice {
  margin-top: 1.5rem;
}

.legal-content .notice {
  margin: 1.25rem 0 2rem;
}

.page-hero__intro {
  max-width: 42rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 33%;
  z-index: 0;
}

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

.hero__panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 48px));
  margin: 80px 0 80px max(24px, calc((100% - var(--content)) / 2 + 24px));
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.25rem);
  box-shadow: var(--shadow);
}

.hero__panel p {
  color: var(--text-muted);
  margin-top: 1.25rem;
}

.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.band--reverse {
  direction: rtl;
}

.band--reverse > * {
  direction: ltr;
}

.band__media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.band__copy p {
  color: var(--text-muted);
  margin: 1rem 0 1.75rem;
  max-width: 36rem;
}

.regions-list {
  border-top: 1px solid var(--border);
}

.regions-list li {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: 24px;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.regions-list strong {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
}

.regions-list span {
  color: var(--text-muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  background: var(--surface);
}

.quote-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.quote-card cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mission-pull {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  color: var(--accent);
  max-width: 28ch;
  margin-bottom: 2rem;
}

.mission-body {
  max-width: 44rem;
  color: var(--text-muted);
}

.mission-body p + p {
  margin-top: 1rem;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip figcaption {
  margin-top: 0.75rem;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.venue-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.venue-card__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.venue-card__body {
  padding: 2rem 1.85rem 2.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.venue-card__meta {
  font-size: 14px;
  color: var(--text-muted);
}

.venue-card__meta + .venue-card__meta {
  margin-top: -0.45rem;
}

.venue-card__body p:not(.venue-card__meta) {
  color: var(--text-muted);
  flex: 1;
}

.venue-card__body .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.catalog-close {
  margin-top: 80px;
  max-width: 40rem;
  color: var(--text-muted);
}

.historic-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.historic-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: stretch;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.historic-row--flip {
  grid-template-columns: 1fr 40%;
}

.historic-row--flip .historic-row__media {
  order: 2;
}

.historic-row__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.historic-row__body {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.historic-row__title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.3;
}

.historic-row__body p {
  color: var(--text-muted);
}

.historic-row__body .venue-card__meta {
  margin: 0;
}

.historic-row__body .btn {
  margin-top: 0.5rem;
  width: 100%;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:last-of-type {
  border-bottom: 0;
}

.editorial-band--flip .editorial-band__copy {
  order: 2;
}

.editorial-band__aside {
  position: sticky;
  top: 100px;
}

.editorial-band__aside .aside-mark {
  font-family: var(--font-heading);
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.9;
  color: var(--surface-alt);
  user-select: none;
}

.editorial-band__aside .aside-label {
  margin-top: 1rem;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.editorial-band__copy h2 {
  margin-bottom: 1.25rem;
}

.editorial-band__copy p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.editorial-band__copy p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-intro p {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
  max-width: 32rem;
}

.contact-email {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--accent);
}

.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  font-size: 14px;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  width: 100%;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 14px;
  color: var(--text-muted);
}

.agree-row input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.agree-row[aria-invalid="true"],
.agree-row.is-error {
  color: #8a2a2a;
}

.form-error {
  font-size: 14px;
  color: #8a2a2a;
}

.form-error[hidden],
.field-error[hidden] {
  display: none;
}

.confirm-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.confirm-panel h2 {
  margin-bottom: 1rem;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.legal-content {
  max-width: 48rem;
  padding-bottom: 80px;
}

.legal-content h1 {
  margin-bottom: 0.75rem;
}

.legal-content > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-content h2 {
  margin: 2.5rem 0 0.85rem;
  font-size: clamp(22px, 3vw, 28px);
}

.legal-content h3 {
  margin: 1.5rem 0 0.6rem;
  font-size: 1.1rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-content a {
  color: var(--accent);
}

.sitemap-list {
  border-top: 1px solid var(--border);
  max-width: 40rem;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.sitemap-list a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--bg);
  padding-top: 80px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 64px;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 28rem;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1.1rem;
  display: inline-block;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--accent);
}

.footer-group ul {
  display: grid;
  gap: 0.65rem;
}

.footer-group a,
.footer-group button {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.footer-group a:hover,
.footer-group button:hover {
  color: var(--accent);
}

.footer-bottom {
  background: var(--surface-alt);
  padding: 28px 0 36px;
}

.footer-bottom .notice {
  background: transparent;
  margin-bottom: 1.25rem;
  max-width: none;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.footer-meta button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: min(380px, calc(100vw - 32px));
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 12px 40px rgba(16, 34, 42, 0.12);
  border-left: 3px solid var(--accent);
  padding: 1.35rem 1.35rem 1.2rem;
  display: none;
}

.consent.is-open {
  display: block;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.consent__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.consent__cats {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.consent__cat {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  align-items: center;
  padding: 0.65rem 0;
  border-top: 1px solid var(--border);
}

.consent__cat strong {
  font-size: 14px;
  font-weight: 600;
}

.consent__cat span {
  grid-column: 1 / 2;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.consent__switch {
  position: relative;
  width: 44px;
  height: 26px;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
  grid-row: 1 / 3;
  grid-column: 2;
}

.consent__switch::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, background 0.2s ease;
}

.consent__switch[aria-checked="true"] {
  background: var(--accent);
  border-color: var(--accent);
}

.consent__switch[aria-checked="true"]::after {
  transform: translateX(18px);
  background: var(--on-accent);
}

.consent__switch:disabled,
.consent__switch[aria-disabled="true"] {
  opacity: 0.7;
  cursor: not-allowed;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.consent__actions .btn {
  padding: 0.75rem 1.2rem;
  font-size: 14px;
}

.consent__link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent__policy {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 13px;
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1024px) {
  .band,
  .editorial-band {
    gap: 40px;
  }

  .band__media img {
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .venue-card__img {
    height: 360px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    right: 16px;
    left: 16px;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow), 0 16px 40px rgba(16, 34, 42, 0.12);
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
  }

  .site-header.is-scrolled .nav-list {
    top: var(--header-h-shrunk);
  }

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

  .nav-list a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-list li:last-child a {
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .hero__media {
    position: relative;
    inset: auto;
    height: 420px;
    order: -1;
  }

  .hero__panel {
    width: min(100% - 48px, var(--content));
    margin: -48px auto 64px;
  }

  .band,
  .band--reverse,
  .contact-grid,
  .editorial-band,
  .editorial-band--flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .editorial-band--flip .editorial-band__copy {
    order: 0;
  }

  .editorial-band__aside {
    position: static;
  }

  .band__media img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 88px 0;
  }

  .catalog-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .photo-strip img {
    height: 280px;
  }

  .historic-row,
  .historic-row--flip {
    grid-template-columns: 1fr;
  }

  .historic-row--flip .historic-row__media {
    order: 0;
  }

  .historic-row__media img {
    min-height: 0;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .regions-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .container {
    width: min(100% - 32px, var(--content));
  }
}

@media (max-width: 640px) {
  .consent {
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 560px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .hero__media {
    height: 300px;
  }

  .hero__panel {
    margin-top: -36px;
    padding: 1.5rem;
  }

  .venue-card__img {
    height: 280px;
  }

  .venue-card__body,
  .historic-row__body,
  .contact-form,
  .confirm-panel {
    padding: 1.5rem;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }

  .venue-card__body .btn {
    align-self: stretch;
  }
}
