/* ============================================================
   THIRD EYE BACKCOUNTRY — MAIN STYLESHEET
   third eye backcountry | hokkaido, japan | backcountry ski
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --black:        #0a0a0a;
  --white:        #f5f2ed;
  --red:          #d42b2b;
  --red-dim:      #a01e1e;
  --gray:         #1a1a1a;
  --gray-mid:     #333333;
  --gray-light:   #888888;
  --cream:        #f0ece4;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-mono:    'Space Mono', monospace;

  --max-w:        1400px;
  --pad-h:        48px;
  --pad-h-mobile: 24px;

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:       0.2s ease;
  --t-med:        0.4s ease;
  --t-slow:       0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  cursor: none;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === CUSTOM CURSOR === */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: -20px;
  left: -20px;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  transition: transform 0.1s ease, opacity 0.2s ease;
}
.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(212, 43, 43, 0.55);
  transition: width var(--t-med), height var(--t-med), border-color var(--t-fast), opacity 0.2s ease;
}
body.cursor-hover .cursor-dot  { transform: translate(-50%, -50%) scale(0); }
body.cursor-hover .cursor-ring { width: 50px; height: 50px; border-color: var(--red); }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* === TYPOGRAPHY UTILITIES === */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
}
.body-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 300;
  line-height: 1.82;
  color: rgba(245, 242, 237, 0.78);
}
.accent-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--red);
  margin: 20px 0;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.revealed          { opacity: 1; transform: translateY(0); }
.reveal-delay-1           { transition-delay: 0.1s; }
.reveal-delay-2           { transition-delay: 0.2s; }
.reveal-delay-3           { transition-delay: 0.3s; }
.reveal-delay-4           { transition-delay: 0.45s; }
.reveal-delay-5           { transition-delay: 0.6s; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1px solid;
  transition: all var(--t-med);
  cursor: none;
}
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-dim); border-color: var(--red-dim); }
.btn-ghost {
  background: transparent;
  border-color: rgba(245, 242, 237, 0.3);
  color: var(--white);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(245, 242, 237, 0.05); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px var(--pad-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding var(--t-med), background var(--t-med), backdrop-filter var(--t-med);
}
#nav.scrolled {
  padding: 16px var(--pad-h);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.7);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width var(--t-med);
}
.nav-links a:hover       { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active      { color: var(--white); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid rgba(212, 43, 43, 0.5);
  color: var(--red);
  transition: all var(--t-fast);
}
.nav-cta:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: all var(--t-fast);
}

/* Mobile Nav Open State */
#nav.mobile-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: var(--black);
  align-items: center;
  justify-content: center;
  gap: 36px;
  z-index: 99;
}
#nav.mobile-open .nav-links a { font-size: 1.2rem; letter-spacing: 0.15em; }
#nav.mobile-open .nav-cta {
  display: block;
  position: fixed;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
#nav.mobile-open .nav-mobile-toggle span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
#nav.mobile-open .nav-mobile-toggle span:nth-child(2) { opacity: 0; }
#nav.mobile-open .nav-mobile-toggle span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.42;
  transform: scale(1.04);
  transition: transform 10s ease, opacity 1.2s ease;
}
#hero.loaded .hero-bg { transform: scale(1); opacity: 0.48; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.48;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.15) 0%,
    rgba(10,10,10,0.05) 35%,
    rgba(10,10,10,0.55) 72%,
    rgba(10,10,10,0.96) 100%
  );
}
#snow-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--red);
  opacity: 0.35;
  z-index: 3;
  pointer-events: none;
  animation: scanline 9s linear infinite;
  top: -1px;
}
@keyframes scanline {
  0%   { top: -1px; opacity: 0; }
  4%   { opacity: 0.35; }
  96%  { opacity: 0.35; }
  100% { top: 100%; opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 0 var(--pad-h) 90px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 30px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 242, 237, 0.65);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 42px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: var(--pad-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
}
.hero-scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-light);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-bar {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerMove 36s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding: 0 48px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.ticker-item::after {
  content: '✦';
  font-size: 0.45rem;
  opacity: 0.65;
}
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
#philosophy {
  padding: 148px 0;
  background: var(--black);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-left .section-title {
  font-size: clamp(3.5rem, 5.5vw, 6.5rem);
  margin-top: 16px;
}
.philosophy-right .body-text { margin-top: 20px; }
.philosophy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(245, 242, 237, 0.1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 1;
  color: var(--white);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   EXPERIENCES GRID
   ============================================================ */
#experiences {
  padding: 100px 0;
  background: var(--gray);
}
.experiences-header {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.experience-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 420px 290px;
  gap: 3px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--gray-mid);
}
.exp-card:first-child { grid-row: 1 / 3; }
.exp-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-out);
}
.exp-card:hover .exp-card-bg { transform: scale(1.05); }
.exp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.15) 55%, transparent 100%);
}
.exp-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.exp-card-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.exp-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 0.93;
  text-transform: uppercase;
  color: var(--white);
}
.exp-card:first-child .exp-card-title { font-size: clamp(2.2rem, 3.8vw, 3.8rem); }
.exp-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.68);
  margin-top: 8px;
  line-height: 1.55;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, margin-top 0.3s ease;
}
.exp-card:hover .exp-card-desc { max-height: 120px; }
.exp-card-accent {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--red);
  transition: width 0.4s ease;
}
.exp-card:hover .exp-card-accent { width: 100%; }

/* ============================================================
   VIDEO STRIP
   ============================================================ */
#video-strip {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-strip-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}
.video-strip-bg video,
.video-strip-bg img { width: 100%; height: 100%; object-fit: cover; }
.video-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px; height: 76px;
  border: 1px solid rgba(245, 242, 237, 0.35);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all var(--t-med);
  cursor: none;
}
.play-btn:hover { border-color: var(--red); background: rgba(212, 43, 43, 0.18); }
.play-btn svg { fill: var(--white); width: 22px; height: 22px; margin-left: 3px; }
.video-strip-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.55);
}
/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(10, 10, 10, 0.97);
  align-items: center;
  justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 90vw;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
}
.video-modal-inner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video-modal-close {
  position: absolute;
  top: -44px; right: 0;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--t-fast);
  background: none;
  border: none;
  padding: 4px;
}
.video-modal-close:hover { color: var(--red); }

/* ============================================================
   HOKKAIDO FEATURE
   ============================================================ */
#hokkaido-feature {
  padding: 148px 0;
  background: var(--black);
}
.hokkaido-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.hokkaido-visual {
  position: relative;
  height: 620px;
}
.hokkaido-img-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hokkaido-img-accent {
  position: absolute;
  width: 220px; height: 290px;
  bottom: -44px; right: -44px;
  overflow: hidden;
  border: 4px solid var(--black);
  z-index: 2;
}
.hokkaido-copy .body-text    { margin: 22px 0 36px; }
.hokkaido-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.highlight-item {
  padding: 18px 20px;
  border: 1px solid rgba(245, 242, 237, 0.1);
  transition: border-color var(--t-fast);
}
.highlight-item:hover { border-color: rgba(212, 43, 43, 0.4); }
.highlight-title {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 6px;
}
.highlight-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(245, 242, 237, 0.65);
  line-height: 1.55;
}
.hokkaido-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 40px;
  transition: gap var(--t-fast);
}
.hokkaido-link:hover { gap: 24px; }
.hokkaido-link-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  padding: 128px 0;
  background: var(--gray);
}
.process-header  { margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.process-step {
  padding: 44px 32px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(245, 242, 237, 0.1);
  transition: background var(--t-fast);
}
.process-step:hover { background: rgba(255, 255, 255, 0.045); }
.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(245, 242, 237, 0.07);
  margin-bottom: 18px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.58);
  line-height: 1.7;
}

/* ============================================================
   PILLARS / VALUES
   ============================================================ */
#pillars {
  padding: 148px 0;
  background: var(--cream);
}
#pillars .eyebrow      { color: var(--red); }
#pillars .section-title { color: var(--black); }
.pillars-intro {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.82;
  max-width: 520px;
  margin-top: 20px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 64px;
}
.pillar-item {
  padding: 36px 32px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  transition: border-color var(--t-fast), transform var(--t-med);
}
.pillar-item:hover { border-color: var(--red); transform: translateY(-5px); }
.pillar-number {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  color: var(--red);
  display: block;
  margin-bottom: 20px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.68;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
#pull-quote {
  padding: 160px 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#pull-quote::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 22rem;
  color: rgba(245, 242, 237, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-text {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}
.quote-text em { font-style: normal; color: var(--red); }
.quote-attribution {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 48px;
  display: block;
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
  padding: 168px 0;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: 'TEB';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 42vw;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}
.cta-eyebrow { color: rgba(245, 242, 237, 0.6); }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin: 20px 0 36px;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-style: italic;
  color: rgba(245, 242, 237, 0.72);
  max-width: 480px;
  margin: 0 auto 52px;
  line-height: 1.75;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 44px;
  background: var(--white);
  color: var(--black);
  transition: all var(--t-med);
  cursor: none;
}
.cta-btn:hover { background: var(--black); color: var(--white); }
.cta-email-line {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: rgba(245, 242, 237, 0.55);
  margin-top: 28px;
  display: block;
}
.cta-email-line a {
  color: rgba(245, 242, 237, 0.85);
  border-bottom: 1px solid rgba(245, 242, 237, 0.3);
  padding-bottom: 1px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.cta-email-line a:hover { color: var(--white); border-color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 100px 0 48px;
  background: #060606;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-logo-mark {
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
  line-height: 1;
}
.footer-logo-name {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 22px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(245, 242, 237, 0.45);
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--t-fast);
}
.footer-social a:hover { color: var(--red); }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.45);
  line-height: 1;
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--white); }
.footer-col ul .footer-coming {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(245, 242, 237, 0.25);
  font-style: italic;
  line-height: 1;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.22);
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.22);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(245, 242, 237, 0.6); }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-h) 80px;
}
.page-hero-content .section-title { font-size: clamp(4rem, 9vw, 9rem); }

/* ============================================================
   HOKKAIDO PAGE SECTIONS
   ============================================================ */
.destination-overview {
  padding: 128px 0;
  background: var(--black);
}
.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.destination-stats-row {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 44px;
  border-top: 1px solid rgba(245, 242, 237, 0.1);
  flex-wrap: wrap;
}
.terrain-section {
  padding: 120px 0;
  background: var(--gray);
}
.terrain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.terrain-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: var(--gray-mid);
}
.terrain-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.9s var(--ease-out);
}
.terrain-card:hover .terrain-card-bg { transform: scale(1.05); }
.terrain-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
}
.terrain-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.culture-section {
  padding: 128px 0;
  background: var(--black);
}
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}
.culture-item {
  padding: 52px 44px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 2px solid transparent;
  transition: background var(--t-fast), border-color var(--t-med);
}
.culture-item:hover { background: rgba(255, 255, 255, 0.04); border-bottom-color: var(--red); }
.culture-item-icon {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}
.culture-item-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 16px;
}
.culture-item-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 242, 237, 0.62);
  line-height: 1.8;
}
.logistics-section {
  padding: 128px 0;
  background: var(--cream);
}
.logistics-section .eyebrow   { color: var(--red); }
.logistics-section .section-title { color: var(--black); }
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.logistics-item {
  padding: 32px 24px;
  border: 1px solid rgba(10, 10, 10, 0.14);
}
.logistics-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.logistics-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--black);
  line-height: 1;
}
.logistics-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(10, 10, 10, 0.55);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray);
  cursor: none;
}
.gallery-item:nth-child(1),
.gallery-item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.gallery-item img { transition: transform 0.9s var(--ease-out); }
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 128px 0; background: var(--black); }
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 620px;
}
.about-visual-img { width: 100%; height: 100%; object-fit: cover; }
.about-values-strip {
  padding: 100px 0;
  background: var(--gray);
}
.guide-section { padding: 128px 0; background: var(--black); }
.guide-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.guide-photo { aspect-ratio: 3 / 4; overflow: hidden; background: var(--gray-mid); }
.guide-details .eyebrow { margin-bottom: 12px; }
.guide-details h3 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.93;
  margin-bottom: 8px;
}
.guide-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 28px;
}
.guide-bio {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(245, 242, 237, 0.68);
  line-height: 1.82;
}
.guide-credentials {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-credentials li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.55);
}
.guide-credentials li::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 128px 0; background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.contact-info .body-text { margin: 22px 0 44px; }
.contact-detail { display: flex; flex-direction: column; gap: 4px; margin-bottom: 28px; }
.contact-detail-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.contact-detail-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.55;
}
.contact-detail-value a:hover { color: var(--red); }
/* Form */
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 10px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: rgba(212, 43, 43, 0.04);
}
.form-select option { background: var(--gray); color: var(--white); }
.form-textarea { height: 160px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: none;
  transition: background var(--t-fast);
}
.form-submit:hover { background: var(--red-dim); }
.form-note {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.28);
  margin-top: 18px;
  line-height: 1.7;
}

/* ============================================================
   STORE PAGE
   ============================================================ */
.store-section {
  background: var(--black);
  padding: 80px 0 100px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}

.product-card {
  background: var(--gray);
  display: flex;
  flex-direction: column;
}

.product-card--free .product-image {
  border-bottom: 2px solid var(--red);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: var(--gray-mid);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image-placeholder {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.8;
}

.product-info {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin: 0 0 8px;
  line-height: 1;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}

.product-price--free {
  color: var(--red);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.product-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin: 0 0 24px;
  flex: 1;
}

.product-btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad-h: 36px; }
  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 260px 260px;
  }
  .exp-card:first-child { grid-row: 1 / 1; }
  .hokkaido-grid, .destination-grid, .about-story-grid, .contact-grid { gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .guide-grid { grid-template-columns: 300px 1fr; }
}

@media (max-width: 900px) {
  :root { --pad-h: var(--pad-h-mobile); }

  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  #nav.mobile-open .nav-cta { display: block; }

  .hero-title { font-size: clamp(3.5rem, 14vw, 6rem); }
  .page-hero-content .section-title { font-size: clamp(3rem, 11vw, 6rem); }

  .philosophy-grid,
  .hokkaido-grid,
  .destination-grid,
  .about-story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .experience-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exp-card { height: 300px; }
  .exp-card:first-child { height: 380px; }

  .process-steps { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .terrain-grid { grid-template-columns: 1fr 1fr; }
  .culture-grid { grid-template-columns: 1fr; }
  .logistics-grid { grid-template-columns: 1fr 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }

  .hokkaido-visual, .about-visual { height: 380px; }
  .hokkaido-img-accent { display: none; }
  .philosophy-stats { grid-template-columns: 1fr 1fr; }
  .destination-stats-row { gap: 32px; }
  .experiences-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-cta-group { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .logistics-grid { grid-template-columns: 1fr; }
  .terrain-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .partners-grid      { grid-template-columns: 1fr; }
  .guides-grid        { grid-template-columns: 1fr; }
  .press-names        { gap: 20px; }
}

/* ============================================================
   NAV / FOOTER LOGO SVG
   ============================================================ */
.nav-logo-svg {
  height: 30px;
  width: 30px;
  display: block;
  flex-shrink: 0;
}
.footer-logo-svg {
  height: 38px;
  width: 38px;
  display: block;
  margin-bottom: 16px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 148px 0;
  background: var(--gray);
}
.testimonials-header { margin-bottom: 64px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.testimonials-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.testimonial {
  padding: 44px 38px;
  background: rgba(255, 255, 255, 0.03);
  border-top: 2px solid rgba(245, 242, 237, 0.08);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: background var(--t-fast), border-top-color var(--t-fast);
}
.testimonial:hover {
  background: rgba(255, 255, 255, 0.05);
  border-top-color: var(--red);
}
.testimonial-open {
  font-family: var(--font-body);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.55;
  display: block;
  margin-bottom: -16px;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 242, 237, 0.82);
  line-height: 1.85;
  flex: 1;
}
.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 242, 237, 0.08);
}
.testimonial-name {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
}
.testimonial-meta {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
}

/* ============================================================
   PRESS / MEDIA STRIP
   ============================================================ */
.press-strip {
  padding: 56px 0;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.press-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.press-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.press-names {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  flex: 1;
}
.press-name {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.28);
  transition: color var(--t-med);
  white-space: nowrap;
}
.press-name:hover { color: rgba(245, 242, 237, 0.7); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-section {
  padding: 128px 0;
  background: var(--gray);
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.partner-item {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 242, 237, 0.07);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.partner-item:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(245, 242, 237, 0.15);
}
.partner-category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
}
.partner-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.partner-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(245, 242, 237, 0.48);
  line-height: 1.6;
  margin-top: 4px;
}

/* ============================================================
   GUIDE CARDS (multi-guide layout, replaces single guide-grid)
   ============================================================ */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 60px;
}
.guides-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.guide-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 242, 237, 0.07);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.guide-card:hover { border-color: rgba(245, 242, 237, 0.15); }
.guide-card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-mid);
}
.guide-card-photo img { transition: transform 0.9s var(--ease-out); }
.guide-card:hover .guide-card-photo img { transform: scale(1.04); }
.guide-card-content { padding: 36px 36px 40px; }
.guide-card-content .eyebrow { margin-bottom: 10px; }
.guide-card h3 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.93;
  margin-bottom: 4px;
}
.guide-card-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 22px;
}
.guide-card-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(245, 242, 237, 0.65);
  line-height: 1.8;
}
.guide-card-creds {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.guide-card-creds li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.48);
}
.guide-card-creds li::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

/* Responsive additions */
@media (max-width: 900px) {
  .testimonials-grid    { grid-template-columns: 1fr; }
  .testimonials-grid--2 { grid-template-columns: 1fr; }
  .partners-grid        { grid-template-columns: 1fr 1fr; }
  .guides-grid          { grid-template-columns: 1fr; }
  .guides-grid--3       { grid-template-columns: 1fr; }
  .press-inner          { gap: 28px; }
  .press-names          { gap: 28px; }
}
