:root {
  --ink: #171713;
  --ink-soft: #363832;
  --paper: #f7f4ec;
  --white: #fffdf8;
  --green: #0b6b57;
  --green-dark: #073f35;
  --teal: #11868c;
  --gold: #d5a247;
  --rust: #c84b34;
  --track: #9c5931;
  --line: rgba(23, 23, 19, 0.14);
  --shadow: 0 24px 70px rgba(13, 24, 20, 0.18);
  --header-height: 76px;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rust), var(--teal));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.93);
  color: var(--ink);
  box-shadow: 0 8px 32px rgba(18, 22, 19, 0.1);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand small {
  color: currentColor;
  font-size: 0.68rem;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 13px;
  color: currentColor;
  font-size: 0.86rem;
  font-weight: 750;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible {
  background: rgba(11, 107, 87, 0.12);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: calc(var(--header-height) + 44px) clamp(18px, 4vw, 56px) 34px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  filter: saturate(1.03) contrast(1.06);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 17, 13, 0.88) 0%, rgba(12, 17, 13, 0.72) 38%, rgba(12, 17, 13, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 17, 13, 0.42) 0%, rgba(12, 17, 13, 0.08) 42%, rgba(12, 17, 13, 0.88) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(310px, 0.72fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-copy {
  max-width: 750px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.8rem);
  font-weight: 880;
}

h3 {
  font-size: 1.05rem;
  font-weight: 840;
}

.hero-lede,
.section-heading p,
.season-copy p {
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn svg,
.text-link svg,
.notice svg,
.detail-card svg,
.operation-card svg,
.responsible-card svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--gold);
  color: #21180a;
}

.btn-secondary {
  border: 1px solid rgba(255, 253, 248, 0.4);
  background: rgba(255, 253, 248, 0.1);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.license-pass {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.06)),
    rgba(12, 17, 13, 0.54);
  box-shadow: var(--shadow);
  padding: clamp(22px, 3vw, 32px);
  backdrop-filter: blur(18px);
}

.pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pass-top strong {
  border-radius: 999px;
  background: rgba(11, 107, 87, 0.82);
  color: var(--white);
  padding: 6px 10px;
  letter-spacing: 0;
}

.license-pass h2 {
  max-width: 11ch;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
}

.pass-details {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.pass-details div {
  display: grid;
  gap: 3px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  padding-top: 14px;
}

.pass-details span {
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pass-details strong {
  font-weight: 850;
}

.license-pass p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.88rem;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.2);
}

.stat {
  min-height: 94px;
  background: rgba(12, 17, 13, 0.44);
  padding: 18px;
  backdrop-filter: blur(12px);
}

.stat span {
  display: block;
  color: var(--gold);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.stat small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compliance-strip {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  width: min(1180px, 100%);
  margin: 14px auto 0;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
  background: rgba(12, 17, 13, 0.62);
  color: rgba(255, 253, 248, 0.82);
  padding: 14px 18px;
  backdrop-filter: blur(12px);
}

.compliance-strip strong {
  color: var(--gold);
}

.compliance-strip a {
  color: var(--white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: clamp(72px, 10vw, 128px) clamp(18px, 4vw, 56px);
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading p,
.season-copy p {
  color: var(--ink-soft);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.facility-section {
  background:
    linear-gradient(135deg, rgba(17, 134, 140, 0.1), transparent 42%),
    var(--white);
}

.facility-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.facility-media,
.season-photo,
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.facility-media {
  min-height: clamp(390px, 50vw, 610px);
}

.facility-media img,
.season-photo img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-media img {
  position: absolute;
  inset: 0;
  object-position: center 28%;
}

.media-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(290px, calc(100% - 36px));
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 8px;
  background: rgba(12, 17, 13, 0.72);
  color: var(--white);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.media-badge span,
.gallery-copy span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-badge strong {
  display: block;
  margin-top: 5px;
  font-size: 1.16rem;
  line-height: 1.15;
}

.facility-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.highlight-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 18px;
}

.highlight-card svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  margin-bottom: 18px;
}

.highlight-card strong {
  display: block;
  font-weight: 900;
}

.highlight-card p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.license-section {
  background: var(--white);
}

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

.detail-card,
.operation-card,
.responsible-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(25, 26, 22, 0.06);
}

.detail-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 172px;
  padding: 20px;
}

.detail-card svg {
  color: var(--green);
}

.detail-card span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  border-left: 4px solid var(--rust);
  background: #fff6e6;
  padding: 18px;
}

.notice svg {
  color: var(--rust);
  margin-top: 2px;
}

.notice p {
  margin: 0;
  color: #3f3325;
  font-size: 0.94rem;
}

.operations-section {
  background:
    linear-gradient(135deg, rgba(11, 107, 87, 0.08), transparent 38%),
    var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: start;
}

.operations-grid,
.responsible-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.operation-card,
.responsible-card {
  padding: 24px;
}

.operation-card svg,
.responsible-card svg {
  margin-bottom: 22px;
  color: var(--teal);
}

.operation-card p,
.responsible-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 16px;
}

.gallery-card {
  min-height: 240px;
  color: var(--white);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 500px;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 35%, rgba(12, 17, 13, 0.86) 100%);
}

.gallery-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 22px;
}

.gallery-copy h3 {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
}

.gallery-copy p {
  max-width: 470px;
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.season-section {
  background: var(--green-dark);
  color: var(--white);
}

.season-section .eyebrow {
  color: var(--gold);
}

.season-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.82fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.season-stack {
  display: grid;
  gap: 16px;
}

.season-photo {
  min-height: 260px;
  margin: 0;
}

.season-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 6px;
  background: rgba(6, 30, 25, 0.76);
  color: rgba(255, 253, 248, 0.82);
  padding: 12px 14px;
  font-size: 0.86rem;
  backdrop-filter: blur(12px);
}

.season-copy p {
  color: rgba(255, 253, 248, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 850;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--white);
  outline: none;
}

.track-panel {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.16), rgba(255, 253, 248, 0.05)),
    rgba(255, 253, 248, 0.08);
  padding: 28px;
  overflow: hidden;
}

.track-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.track-line span {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 2px;
  background: var(--gold);
  overflow: hidden;
  color: transparent;
  font-size: 0;
  transform: rotate(-8deg);
}

.track-line span:nth-child(1) {
  top: 25%;
}

.track-line span:nth-child(2) {
  top: 50%;
}

.track-line span:nth-child(3) {
  top: 75%;
}

.track-step {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 6px;
  background: rgba(6, 30, 25, 0.78);
  padding: 18px;
}

.track-step span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.track-step strong {
  text-align: right;
}

.responsible-section {
  background: var(--white);
}

.workflow-section {
  background:
    linear-gradient(135deg, rgba(200, 75, 52, 0.08), transparent 48%),
    var(--paper);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.workflow-copy p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.workflow-list {
  display: grid;
  gap: 14px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 14px 38px rgba(25, 26, 22, 0.06);
}

.workflow-item span {
  grid-row: span 2;
  color: var(--rust);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.workflow-item strong {
  font-size: 1.06rem;
  font-weight: 900;
}

.workflow-item p {
  margin: 0;
  color: var(--ink-soft);
}

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

.contact-band {
  padding: 0 clamp(18px, 4vw, 56px) clamp(72px, 9vw, 112px);
  background: var(--white);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(24px, 5vw, 44px);
}

.contact-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3.8rem);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 16px;
}

.contact-meta span {
  display: block;
  color: rgba(255, 253, 248, 0.6);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-weight: 850;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 253, 248, 0.74);
  padding: 34px clamp(18px, 4vw, 56px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px 32px;
  align-items: center;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
  font-weight: 900;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.footer-button {
  justify-self: start;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 10px 12px;
  font-weight: 850;
}

.footer-button:hover,
.footer-button:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}

.site-footer p {
  grid-column: 1 / -1;
  max-width: 860px;
  margin: 0;
  font-size: 0.86rem;
}

.policy-header {
  position: sticky;
}

.policy-main {
  padding-top: var(--header-height);
  background: var(--paper);
}

.policy-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 116px) 0 clamp(28px, 5vw, 48px);
}

.policy-hero h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2.7rem, 8vw, 6rem);
}

.policy-hero p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.policy-content {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 10vw, 120px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(25, 26, 22, 0.08);
  padding: clamp(24px, 5vw, 54px);
}

.policy-content h2 {
  margin-top: 32px;
  font-size: clamp(1.3rem, 3vw, 2rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.policy-content a {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content code {
  border-radius: 4px;
  background: rgba(11, 107, 87, 0.1);
  color: var(--green-dark);
  padding: 2px 5px;
}

.cookie-consent {
  position: fixed;
  inset: auto 18px 18px;
  z-index: 120;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent.is-visible {
  display: flex;
}

.cookie-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: 20px;
  width: min(980px, 100%);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(23, 23, 19, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
  padding: 22px;
  pointer-events: auto;
}

.cookie-copy h2 {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.cookie-copy p {
  margin: 12px 0;
  color: rgba(255, 253, 248, 0.76);
}

.cookie-copy a {
  color: var(--gold);
  font-weight: 850;
}

.cookie-options {
  display: grid;
  gap: 10px;
}

.cookie-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.06);
  cursor: pointer;
  padding: 13px;
}

.cookie-option.disabled {
  cursor: not-allowed;
  opacity: 0.74;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.cookie-option span {
  display: grid;
  gap: 2px;
}

.cookie-option strong {
  line-height: 1.2;
}

.cookie-option small {
  color: rgba(255, 253, 248, 0.64);
  line-height: 1.35;
}

.cookie-actions {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn-secondary {
  border-color: rgba(255, 253, 248, 0.3);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 460ms ease,
    transform 460ms ease;
}

@media (max-width: 980px) {
  .hero-inner,
  .facility-layout,
  .split-layout,
  .season-layout,
  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 680px;
  }

  .license-pass {
    max-width: 540px;
  }

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

  .facility-highlights {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-card-large {
    grid-row: auto;
  }

  .responsible-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(23, 23, 19, 0.12);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.97);
    color: var(--ink);
    padding: 12px;
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 34px) 18px 26px;
  }

  .hero-inner {
    gap: 22px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.34rem, 11.2vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.78rem, 8.4vw, 2.75rem);
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 0.94rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    min-height: 46px;
    padding: 12px 16px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-stats,
  .license-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 14px;
  }

  .stat {
    min-height: 72px;
    padding: 14px 16px;
  }

  .section {
    padding: 58px 18px;
  }

  .facility-media {
    min-height: 360px;
  }

  .license-pass {
    padding: 18px;
  }

  .license-pass h2 {
    max-width: 12ch;
    font-size: 1.78rem;
  }

  .pass-top {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .pass-details {
    gap: 10px;
    margin: 18px 0;
  }

  .pass-details div {
    padding-top: 10px;
  }

  .media-badge {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .detail-card {
    min-height: auto;
  }

  .gallery-grid {
    display: grid;
    grid-auto-columns: minmax(286px, 86%);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-inline: -18px;
    overflow-x: auto;
    padding: 0 18px 10px;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
  }

  .gallery-card,
  .gallery-card-large {
    min-height: 430px;
    scroll-snap-align: start;
  }

  .gallery-card img {
    position: absolute;
    inset: 0;
  }

  .season-photo {
    min-height: 220px;
  }

  .workflow-item {
    grid-template-columns: 42px 1fr;
    padding: 18px;
  }

  .track-step,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .track-step {
    align-items: flex-start;
    flex-direction: column;
  }

  .track-step strong {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .policy-main {
    padding-top: 0;
  }

  .policy-hero {
    padding-top: 44px;
  }

  .policy-content {
    margin-bottom: 58px;
  }

  .cookie-consent {
    inset: auto 10px 10px;
  }

  .cookie-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.78rem;
  }

  .license-pass,
  .track-panel,
  .media-badge,
  .contact-inner {
    padding: 20px;
  }

  .license-pass h2 {
    font-size: 1.72rem;
  }

  .detail-card,
  .operation-card,
  .responsible-card,
  .highlight-card {
    padding: 18px;
  }

  .gallery-card,
  .gallery-card-large {
    min-height: 390px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
