
/* Deep Nature Films — premium static website
   Two-theme system: Deep Mode + Calm Mode
*/

:root {
  color-scheme: dark;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 24px 80px rgba(0,0,0,.22);
  --container: min(1360px, calc(100vw - 48px));
  --header-h: 78px;
}

:root[data-theme="deep"] {
  color-scheme: dark;
  --bg: #050806;
  --bg-2: #07110d;
  --surface: rgba(13, 24, 18, .82);
  --surface-2: rgba(18, 30, 23, .72);
  --text: #f7efe2;
  --muted: rgba(247, 239, 226, .72);
  --faint: rgba(247, 239, 226, .12);
  --line: rgba(204, 164, 91, .28);
  --accent: #cda45b;
  --accent-2: #e4c984;
  --accent-soft: rgba(205, 164, 91, .14);
  --forest: #0f281d;
  --button-text: #12100b;
  --nav-bg: rgba(3, 8, 6, .74);
  --hero-overlay: linear-gradient(90deg, rgba(5,8,6,.94) 0%, rgba(5,8,6,.65) 37%, rgba(5,8,6,.20) 72%, rgba(5,8,6,.75) 100%);
  --hero-bottom: linear-gradient(180deg, rgba(5,8,6,0) 20%, var(--bg) 100%);
  --quote-bg: rgba(205, 164, 91, .08);
}

:root[data-theme="calm"] {
  color-scheme: light;
  --bg: #f3eee4;
  --bg-2: #ebe4d6;
  --surface: rgba(255, 250, 241, .86);
  --surface-2: rgba(247, 241, 229, .78);
  --text: #172d22;
  --muted: rgba(23, 45, 34, .72);
  --faint: rgba(23, 45, 34, .10);
  --line: rgba(115, 91, 49, .22);
  --accent: #a9803f;
  --accent-2: #1d4c37;
  --accent-soft: rgba(29, 76, 55, .10);
  --forest: #1d4c37;
  --button-text: #fffaf1;
  --nav-bg: rgba(247, 241, 229, .76);
  --hero-overlay: linear-gradient(90deg, rgba(243,238,228,.94) 0%, rgba(243,238,228,.74) 38%, rgba(243,238,228,.18) 74%, rgba(243,238,228,.42) 100%);
  --hero-bottom: linear-gradient(180deg, rgba(243,238,228,0) 20%, var(--bg) 100%);
  --quote-bg: rgba(29, 76, 55, .08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 0%, var(--accent-soft), transparent 34rem),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.6;
  transition: background .45s var(--ease), color .45s var(--ease);
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

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

p { margin: 0 0 1rem; }

::selection { background: var(--accent); color: var(--button-text); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -10rem;
  z-index: 9999;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--button-text);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  border-bottom: 1px solid var(--faint);
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

.header-inner {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 190px;
  gap: .8rem;
}

.brand-logo {
  width: clamp(160px, 17vw, 255px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.18));
}

.logo-calm { display: none; }
:root[data-theme="calm"] .logo-deep { display: none; }
:root[data-theme="calm"] .logo-calm { display: block; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.7rem, 1.2vw, 1.35rem);
  flex: 1;
}

.nav a {
  position: relative;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .6rem .1rem;
  transition: color .25s var(--ease);
}

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

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .18rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  min-width: 0;
  white-space: nowrap;
}

.site-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .55rem;
}

.mobile-controls { display: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .42rem;
  padding: .46rem .66rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  flex: 0 0 auto;
}

.lang-switch a {
  color: var(--muted);
  transition: color .2s var(--ease);
}

.lang-switch a.is-active,
.lang-switch a:hover { color: var(--accent); }

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  padding: .28rem .34rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  flex: 0 0 auto;
}

.theme-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .42rem .62rem;
  cursor: pointer;
  transition: all .22s var(--ease);
}

.theme-btn:hover { color: var(--text); }

.theme-btn.is-active {
  color: var(--button-text);
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.theme-separator { color: var(--line); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--faint);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin: 5px auto;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

main { min-height: 70vh; }

.section,
.page-hero,
.home-hero {
  width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.home-hero {
  position: relative;
  min-height: min(780px, 100svh);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-overlay), var(--hero-bottom);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 6rem 0 8.5rem;
  max-width: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.1rem;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
}

h1 {
  font-size: clamp(3.2rem, 5.35vw, 6.15rem);
  max-width: 1080px;
}

.home-hero h1 { white-space: nowrap; }

.home-hero p {
  margin-top: 1.5rem;
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 48px;
  padding: .9rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 58%, #fff3c7 100%);
  color: var(--button-text);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(205, 164, 91, .28), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn-primary:hover {
  box-shadow: 0 22px 46px rgba(205, 164, 91, .36), inset 0 1px 0 rgba(255,255,255,.55);
}

.btn-secondary {
  background: rgba(255,255,255,.03);
  color: var(--text);
}

.btn-small {
  min-height: 40px;
  padding: .72rem .95rem;
  font-size: .68rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem 1.4rem;
  width: 100%;
  margin-top: 2.1rem;
}

.hero-actions .cta-row {
  margin-top: 0;
}

.hero-stats {
  position: static;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 132px));
  gap: .65rem;
  justify-self: end;
}

.stat {
  padding: 1rem;
  border: 1px solid var(--faint);
  border-radius: 18px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(18px);
}

:root[data-theme="calm"] .stat { background: rgba(255,255,255,.44); }

.stat strong {
  display: block;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section-tight { padding-top: 2rem; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-eyebrow {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.9rem);
  max-width: 780px;
}

.section-copy {
  max-width: 560px;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.card {
  position: relative;
  border: 1px solid var(--faint);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line);
}

.feature-card {
  min-height: 460px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-placeholder,
.video-link-placeholder {
  appearance: none;
  border: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
  display: block;
  cursor: pointer;
  background: #000;
  color: white;
  font-family: var(--font-body);
}

.youtube-placeholder img,
.video-link-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  transform: scale(1.01);
  transition: opacity .25s var(--ease), transform .35s var(--ease);
}

.youtube-placeholder:hover img,
.video-link-placeholder:hover img {
  opacity: .96;
  transform: scale(1.045);
}

.play-badge {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: var(--button-text);
  font-size: 1.45rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.32);
}

.video-link-placeholder .play-badge {
  width: auto;
  min-width: 140px;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-card-copy {
  padding: 1.4rem 1.4rem 1.5rem;
}

.video-card-copy h3 {
  font-size: 2rem;
  margin-bottom: .5rem;
}

.video-card-copy p {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: var(--accent);
  border-radius: 999px;
  padding: .32rem .58rem;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.photo-tile {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--faint);
  background: #000;
}

.photo-tile.tall { min-height: 460px; }

.photo-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.photo-tile:hover img { transform: scale(1.055); }

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.70));
}

.photo-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .95rem;
  z-index: 2;
}

.photo-caption strong {
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.photo-caption span {
  display: block;
  color: rgba(255,255,255,.78);
  font-size: .74rem;
  margin-top: .25rem;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 310px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, var(--accent-soft), transparent 20rem);
  pointer-events: none;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: .65rem;
}

.service-card p {
  color: var(--muted);
}

.service-card .btn { align-self: flex-start; margin-top: 1.2rem; }

.promo-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--faint);
  border-radius: var(--radius-xl);
  background: var(--surface);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .65fr);
  min-height: 430px;
}

.promo-copy {
  padding: clamp(2rem, 4vw, 4rem);
  align-self: center;
}

.promo-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.promo-copy p {
  color: var(--muted);
  max-width: 560px;
  margin-top: 1rem;
}

.promo-image {
  min-height: 360px;
  position: relative;
}

.promo-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 4.8rem);
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, var(--accent-soft), transparent 24rem),
    linear-gradient(180deg, var(--bg), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: clamp(2.55rem, 4.7vw, 4.9rem);
  max-width: 920px;
  line-height: 1.02;
}

.page-title-nowrap {
  white-space: nowrap;
  max-width: none;
}

.page-intro {
  max-width: 720px;
  margin-top: 1.3rem;
  color: var(--muted);
  font-size: 1rem;
}

.page-hero-media {
  margin-top: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--faint);
  max-height: clamp(300px, 42vw, 460px);
}

.page-hero-media img {
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 1.2rem;
}

.text-panel {
  padding: clamp(1.4rem, 3vw, 2.6rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--faint);
  background: var(--surface);
}

.text-panel h2 { font-size: clamp(2.1rem, 3.4vw, 3.7rem); margin-bottom: 1rem; }
.text-panel p, .text-panel li { color: var(--muted); }
.text-panel ul { margin: 1rem 0 0; padding-left: 1.1rem; }

.media-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.media-stack img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--faint);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .9rem;
}

.gallery-page-grid .photo-tile:nth-child(1) { grid-column: span 7; min-height: 460px; }
.gallery-page-grid .photo-tile:nth-child(2) { grid-column: span 5; min-height: 460px; }
.gallery-page-grid .photo-tile:nth-child(3) { grid-column: span 5; min-height: 390px; }
.gallery-page-grid .photo-tile:nth-child(4) { grid-column: span 7; min-height: 390px; }
.gallery-page-grid .photo-tile:nth-child(5) { grid-column: span 4; min-height: 360px; }
.gallery-page-grid .photo-tile:nth-child(6) { grid-column: span 4; min-height: 360px; }
.gallery-page-grid .photo-tile:nth-child(7) { grid-column: span 4; min-height: 360px; }

.notice-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border: 1px dashed var(--line);
  border-radius: var(--radius-xl);
  background: var(--quote-bg);
}

.notice-card h3 {
  font-size: 2.3rem;
  margin-bottom: .7rem;
}

.notice-card p { color: var(--muted); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-field.full { grid-column: 1 / -1; }

label {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--faint);
  border-radius: 14px;
  padding: .95rem 1rem;
  background: rgba(255,255,255,.03);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}

:root[data-theme="calm"] input,
:root[data-theme="calm"] textarea,
:root[data-theme="calm"] select {
  background: rgba(255,255,255,.68);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

textarea { min-height: 150px; resize: vertical; }

.newsletter-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: 1.4rem;
  align-items: end;
}

.inline-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: end;
}

.inline-form .form-field { gap: .45rem; }
.inline-form .btn { min-height: 52px; }

@media (max-width: 820px) {
  .newsletter-card,
  .inline-form { grid-template-columns: 1fr; }
}

.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--faint);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,.10)),
    var(--bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  width: 260px;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--muted);
  max-width: 460px;
}

.footer-heading {
  font-size: .72rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: .55rem;
}

.footer-links a {
  color: var(--muted);
  transition: color .2s var(--ease);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--faint);
  color: var(--muted);
  font-size: .8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --header-h: 78px; --container: min(100vw - 30px, 960px); }
  .header-inner { gap: .7rem; }
  .brand { min-width: auto; }
  .brand-logo { width: 210px; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: var(--bg);
    display: none;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    padding: 2rem;
    border-top: 1px solid var(--faint);
  }
  body.nav-open .nav { display: flex; }
  .nav a {
    font-size: 1rem;
    padding: 1rem 0;
  }
  .menu-toggle { display: inline-block; }
  .header-tools { min-width: auto; gap: .5rem; }
  .desktop-controls { display: none; }
  .mobile-controls { display: flex; justify-content: flex-start; align-items: flex-start; flex-wrap: wrap; margin-top: 1rem; }
  .mobile-controls .theme-switch { flex-wrap: wrap; }
  .theme-btn { font-size: .75rem; }
  .home-hero { min-height: 720px; }
  .hero-content { padding-bottom: 7rem; }
  .hero-actions { grid-template-columns: 1fr; align-items: start; }
  .hero-stats { justify-self: start; grid-template-columns: repeat(3, minmax(86px, 1fr)); }
  .split-grid, .editorial-grid, .promo-band, .footer-grid { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: min(100vw - 24px, 560px); }
  .site-header { height: 72px; }
  .brand-logo { width: 176px; }
  .lang-switch { font-size: .7rem; }
  .header-tools { gap: .35rem; }
  .home-hero { min-height: 680px; }
  .hero-content { padding: 5rem 0 5.75rem; }
  h1 { font-size: clamp(2.6rem, 15vw, 4.1rem); }
  .home-hero h1 { white-space: normal; }
  .home-hero p { font-size: .98rem; }
  .hero-actions { grid-template-columns: 1fr; align-items: stretch; }
  .hero-actions .cta-row { width: 100%; }
  .cta-row .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); width: 100%; justify-self: stretch; }
  .stat { padding: .75rem .55rem; }
  .stat strong { font-size: 1.25rem; }
  .stat span { font-size: .62rem; }
  .section-head { align-items: start; flex-direction: column; }
  .gallery-grid, .cards-3, .media-stack, .form-grid { grid-template-columns: 1fr; }
  .photo-tile, .photo-tile.tall { min-height: 320px; }
  .gallery-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid .photo-tile:nth-child(n) { grid-column: auto; min-height: 360px; }
  .page-hero { padding-top: 7.5rem; padding-bottom: 3rem; }
  .page-hero-media img { height: 340px; }
  .promo-image::after { background: linear-gradient(180deg, var(--surface), transparent); }
  .footer-bottom { flex-direction: column; }
  .footer-logo { width: 220px; }
}

@media (max-width: 430px) {
  .brand-logo { width: 150px; }
  .header-inner { width: calc(100vw - 20px); }
  .theme-btn { padding: .45rem .5rem; letter-spacing: .01em; }
}


.section-side-cta {
  max-width: 560px;
  display: grid;
  gap: .95rem;
  justify-items: start;
}

.section-side-cta p {
  color: var(--muted);
  margin: 0;
}

.video-library-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.video-library-card { min-height: 100%; }

.video-library-card .video-card-copy h3 { font-size: clamp(1.55rem, 2.4vw, 2rem); }
.video-library-card .video-frame { border-radius: 22px 22px 0 0; }

.social-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.social-cta-band .cta-row {
  margin-top: 0;
  justify-content: flex-end;
}

@media (max-width: 1080px) {
  .social-cta-band { grid-template-columns: 1fr; }
  .social-cta-band .cta-row { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .video-library-grid { grid-template-columns: 1fr; }
  .page-title { max-width: 100%; }
  .page-title-nowrap { white-space: normal; }
  .page-intro { font-size: .95rem; }
  .section-side-cta { max-width: 100%; }
}
