/* =================================================================
   白樺湖スノーアカデミー — グローバルスタイル
   Design system: navy + ice blue, mist whites, serif display + sans body
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy:       #1B3A5C;
  --navy-deep:  #142C46;
  --navy-700:   #24486D;
  --ice:        #5BA38C;
  --ice-soft:   #8AC4B2;
  --ice-tint:   #DEEDE7;
  --white:      #FFFFFF;
  --mist:       #F0F4F8;
  --mist-2:     #E5EDF3;
  --ink:        #2C2C2A;
  --ink-sub:    #5F5E5A;
  --line:       rgba(27, 58, 92, 0.14);

  --font-jp:    "Noto Sans JP", system-ui, sans-serif;
  --font-mincho:"Zen Old Mincho", "Noto Serif JP", serif;
  --font-en:    "Montserrat", system-ui, sans-serif;

  /* display font: mincho (serif) — set to var(--font-jp) for gothic */
  --font-display: var(--font-mincho);
  --display-weight: 500;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 140px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }

/* English eyebrow with rule */
.eyebrow {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ice);
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

/* Section heading block */
.sec-head { margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head--center { text-align: center; }
.sec-title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  line-height: 1.45;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-top: 18px;
}
.sec-lead {
  margin-top: 20px;
  max-width: 40em;
  color: var(--ink-sub);
  font-size: 0.98rem;
  line-height: 2;
}
.sec-head--center .sec-lead { margin-inline: auto; }

/* Buttons */
.btn {
  --bg: var(--navy);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  padding: 1.05em 2.2em;
  background: var(--bg);
  color: var(--fg);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--bg);
  border-radius: 2px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { --bg: var(--ice); --fg: #fff; border-color: var(--ice); }
.btn--primary:hover { --bg: #47917a; border-color: #47917a; }
.btn--ghost {
  --bg: transparent; --fg: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); }
.btn--outline {
  --bg: transparent; --fg: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover { background: var(--navy); color: #fff; }

/* =================================================================
   Header
   ================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.is-solid,
.site-header.site-header--static {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 12px;
}

.brand { display: flex; align-items: center; gap: 14px; color: #fff; transition: color .4s var(--ease); }
.brand-lockup { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.brand-sia {
  display: flex; align-items: center; gap: 8px;
}
.brand-sia img { height: 32px; width: auto; display: block; }
.brand-sia__text {
  font-family: var(--font-en); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; color: #fff; opacity: 0.9;
  transition: color .4s var(--ease);
}
.is-solid .brand-sia__text, .site-header--static .brand-sia__text { color: var(--navy); }
.is-solid .brand, .site-header--static .brand { color: var(--navy); }
.brand__mark {
  width: 46px; height: 46px;
  background: url("../images/ssa-logo.png") center / contain no-repeat;
  flex: none;
}
.brand__mark::before { content: none; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.08em; line-height: 1.3; white-space: nowrap; }
.brand__en { font-family: var(--font-en); font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.78; display:block; margin-top: 2px;}

/* Nav */
.gnav { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); }
.gnav__list { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); list-style: none; margin: 0; padding: 0; }
.gnav__link {
  display: flex; flex-direction: column; align-items: center;
  color: #fff; transition: color .4s var(--ease);
  position: relative;
}
.is-solid .gnav__link, .site-header--static .gnav__link { color: var(--navy); }
.gnav__en { font-family: var(--font-en); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.gnav__jp { font-size: 0.7rem; letter-spacing: 0.12em; opacity: 0.85; margin-top: 3px; }
.gnav__link::after {
  content: ""; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  width: 0; height: 1px; background: var(--ice); transition: width .35s var(--ease);
}
.gnav__link:hover::after { width: 100%; }

.gnav__link--btn { background: none; border: none; padding: 0; font: inherit; }
.gnav__caret { display: inline-block; margin-left: 4px; font-size: 0.7em; transition: transform .3s var(--ease); }

/* 提携ホテルのナビ項目は一旦非表示（フッターの表示は維持） */
.gnav__item--hotels, .mobile-menu__item--hotel { display: none; }

.gnav__item--hotels { position: relative; }
.gnav__item--hotels::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 220px; height: 18px;
}
.gnav__dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 18px; padding: 12px;
  min-width: 220px;
  background: var(--mist); border: 1px solid var(--line); border-radius: 4px;
  box-shadow: 0 16px 36px rgba(20,44,70,0.22);
  list-style: none;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
  z-index: 10;
}
.gnav__item--hotels:hover .gnav__dropdown,
.gnav__item--hotels:focus-within .gnav__dropdown,
.gnav__item--hotels.is-open .gnav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.gnav__item--hotels:hover .gnav__caret,
.gnav__item--hotels:focus-within .gnav__caret,
.gnav__item--hotels.is-open .gnav__caret { transform: rotate(180deg); }
.gnav__dropdown__label {
  padding: 4px 8px 10px;
  font-family: var(--font-en); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ice);
}
.gnav__dropdown li + li { margin-top: 6px; }
.gnav__dropdown a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; font-size: 0.86rem; font-weight: 500; color: var(--navy);
  white-space: nowrap;
  background: #fff; border-radius: 3px; border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(20,44,70,0.06);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.gnav__dropdown a:hover { background: var(--ice-tint); border-color: var(--ice-soft); transform: translateX(2px); }
.gnav__dropdown .icon { font-size: 0.8em; opacity: 0.6; }

.gnav__cta {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.7em 1.4em; background: var(--ice); color: #fff;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em;
  border-radius: 2px; transition: background .35s var(--ease);
}
.gnav__cta:hover { background: #47917a; }

/* Hamburger */
.burger {
  display: none;
  width: 46px; height: 46px;
  background: transparent; border: none;
  position: relative; z-index: 120;
}
.burger span { position: absolute; left: 10px; right: 10px; height: 1.5px; background: #fff; transition: transform .4s var(--ease), opacity .3s var(--ease), background .4s var(--ease); }
.is-solid .burger span, .site-header--static .burger span { background: var(--navy); }
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 30px; }
body.menu-open .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--navy-deep);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--gutter);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__item a {
  display: flex; align-items: baseline; gap: 16px;
  color: #fff; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  opacity: 0; transform: translateY(14px);
}
body.menu-open .mobile-menu__item a { animation: mm-in .5s var(--ease) forwards; }
.mobile-menu__item:nth-child(1) a { animation-delay: .12s; }
.mobile-menu__item:nth-child(2) a { animation-delay: .18s; }
.mobile-menu__item:nth-child(3) a { animation-delay: .24s; }
.mobile-menu__item:nth-child(4) a { animation-delay: .30s; }
.mobile-menu__item:nth-child(5) a { animation-delay: .36s; }
.mobile-menu__item:nth-child(6) a { animation-delay: .42s; }
.mobile-menu__item:nth-child(7) a { animation-delay: .48s; }
@keyframes mm-in { to { opacity: 1; transform: translateY(0); } }
.mobile-menu__en { font-family: var(--font-en); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ice-soft); width: 5.5em; }
.mobile-menu__jp { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.08em; }

/* =================================================================
   Hero (3 variants via [data-hero])
   ================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
/* ---------- Image placeholder (replace with real <img> when photos are ready) ---------- */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist-2);
  border: 1px dashed var(--line);
  color: var(--ink-sub);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 12px;
}
.hero__media--photo {
  background: url("../images/hero-top.jpg") center / cover no-repeat;
}
.hero__media::part(slot) { border-radius: 0; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column;
  align-self: center;
}
.hero__eyebrow {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  letter-spacing: 0.4em;
  color: #fff;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(2.3rem, 6.5vw, 4.6rem);
  line-height: 1.4;
  letter-spacing: 0.07em;
  margin-top: 24px;
  text-shadow: 0 2px 30px rgba(10,24,40,0.35);
}
.hero__lead {
  margin-top: 28px;
  max-width: 30em;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 2.1;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 14px rgba(10,24,40,0.4);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }

/* scroll indicator */
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.hero__scroll .bar { width: 1px; height: 46px; background: rgba(255,255,255,0.55); position: relative; overflow: hidden; }
.hero__scroll .bar::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: #fff; animation: scrolldown 2.2s var(--ease) infinite;
}
@keyframes scrolldown { 0% { transform: translateY(0);} 70%,100% { transform: translateY(300%);} }
@media (max-height: 720px) { .hero__scroll { display: none; } }

/* ---- Variant 1 : centered classic ---- */
.hero[data-hero="1"] { text-align: center; }
.hero[data-hero="1"] .hero__overlay { background: rgba(27, 58, 92, 0.55); }
.hero[data-hero="1"] .hero__inner { align-items: center; }
.hero[data-hero="1"] .hero__cta { justify-content: center; }

/* ---- Variant 2 : framed editorial ---- */
.hero[data-hero="2"] { text-align: left; }
.hero[data-hero="2"] .hero__overlay {
  background: linear-gradient(180deg, rgba(20,44,70,0.15) 0%, rgba(20,44,70,0.25) 40%, rgba(20,44,70,0.78) 100%);
}
.hero[data-hero="2"] .hero__inner { align-self: flex-end; padding-bottom: clamp(80px, 12vh, 130px); align-items: flex-start; }
.hero[data-hero="2"] .hero-frame {
  position: absolute; z-index: 2; inset: clamp(24px,4vw,52px);
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
}
.hero[data-hero="2"] .hero-vlabel {
  position: absolute; z-index: 3; right: clamp(40px,5vw,70px); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; font-family: var(--font-en); font-size: 0.7rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.85);
}

/* ---- Variant 3 : mist minimal band ---- */
.hero[data-hero="3"] { text-align: left; align-items: center; }
.hero[data-hero="3"] .hero__overlay {
  background: linear-gradient(90deg, rgba(20,44,70,0.72) 0%, rgba(20,44,70,0.5) 38%, rgba(20,44,70,0.12) 75%, rgba(20,44,70,0.05) 100%);
}
.hero[data-hero="3"] .hero__inner { align-items: flex-start; max-width: var(--maxw); }
.hero[data-hero="3"] .hero__title { font-size: clamp(2.2rem, 6vw, 4.2rem); }
.hero[data-hero="3"] .hero-rules { position: absolute; z-index: 2; left: 0; right: 0; pointer-events: none; }
.hero[data-hero="3"] .hero-rules.top { top: clamp(90px,12vh,130px); }
.hero[data-hero="3"] .hero-rules.bot { bottom: clamp(50px,8vh,90px); }
.hero[data-hero="3"] .hero-rules::before {
  content: ""; display: block; height: 1px; margin-inline: var(--gutter);
  background: rgba(255,255,255,0.28);
}
.hero[data-hero="3"] .hero-vtag {
  position: absolute; z-index: 3; right: clamp(28px,4vw,56px); bottom: clamp(56px,9vh,100px);
  writing-mode: vertical-rl; font-family: var(--font-display); font-size: clamp(0.9rem,1.4vw,1.05rem);
  letter-spacing: 0.45em; color: rgba(255,255,255,0.9);
}
/* hide variant-specific extras unless that variant is active */
.hero-frame, .hero-vlabel, .hero-rules, .hero-vtag { display: none; }
.hero[data-hero="2"] .hero-frame,
.hero[data-hero="2"] .hero-vlabel { display: block; }
.hero[data-hero="3"] .hero-rules,
.hero[data-hero="3"] .hero-vtag { display: block; }

/* =================================================================
   Intro strip
   ================================================================= */
.intro { background: var(--white); text-align: center; }
.intro .wrap { max-width: 760px; }
.intro__jp {
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  font-size: clamp(1.4rem, 3vw, 2.05rem);
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.intro__body { margin-top: 30px; color: var(--ink-sub); line-height: 2.15; }

/* =================================================================
   Features (3 columns)
   ================================================================= */
.features { background: var(--mist); position: relative; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
}
.feature-card {
  background: var(--white);
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.feature-card__media { position: relative; aspect-ratio: 4 / 3; width: 100%; }
.feature-card__media .img-placeholder { position: absolute; inset: 0; }
.feature-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-card__no {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-en); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  color: #fff; background: rgba(27,58,92,0.85); padding: 6px 12px;
}
.feature-card__body { padding: clamp(24px, 2.4vw, 36px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.feature-card__en { font-family: var(--font-en); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ice); }
.feature-card__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: 1.3rem; letter-spacing: 0.05em; color: var(--navy); line-height: 1.6; }
.feature-card__text { color: var(--ink-sub); font-size: 0.92rem; line-height: 2; }

/* =================================================================
   News (latest)
   ================================================================= */
.news { background: var(--white); }
.news__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px,5vw,56px);
}
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid;
  grid-template-columns: 140px auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 4px;
  border-top: 1px solid var(--line);
  transition: background .3s var(--ease), padding-inline .3s var(--ease);
}
.news-list .news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item:hover { background: var(--mist); padding-inline: 18px; }
.news-item__date { font-family: var(--font-en); font-size: 0.92rem; letter-spacing: 0.08em; color: var(--ink-sub); }
.news-item__cat {
  justify-self: start;
  white-space: nowrap;
  font-size: 0.68rem; letter-spacing: 0.14em; color: var(--navy);
  border: 1px solid var(--navy); border-radius: 2px; padding: 4px 12px;
}
.news-item__cat[data-cat="お知らせ"] { color: var(--ice); border-color: var(--ice); }
.news-item__title { font-size: 0.98rem; color: var(--ink); line-height: 1.7; }
.news-item:hover .news-item__title { color: var(--navy); }
.news-item__arrow { color: var(--ice); transition: transform .3s var(--ease); }
.news-item:hover .news-item__arrow { transform: translateX(5px); }

/* =================================================================
   Access
   ================================================================= */
.access { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.access__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.access__title { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(1.6rem,3vw,2.3rem); letter-spacing: 0.06em; margin-top: 18px; }
.access .eyebrow { color: var(--ice-soft); }
.access__lead { margin-top: 22px; color: rgba(255,255,255,0.85); line-height: 2.1; max-width: 32em; }
.access__info { margin-top: 38px; display: flex; flex-direction: column; gap: 0; }
.access__row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.16); }
.access__row:last-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
.access__label { font-family: var(--font-en); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ice-soft); padding-top: 4px; }
.access__val { font-size: 1rem; line-height: 1.8; }
.access__val .big { font-size: 1.5rem; font-family: var(--font-en); letter-spacing: 0.04em; }
.access__cta { margin-top: 40px; }
.access__map { position: relative; aspect-ratio: 4 / 3.4; border: 1px solid rgba(255,255,255,0.2); }
.access__map .img-placeholder { position: absolute; inset: 0; }
.access__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* =================================================================
   Footer
   ================================================================= */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.82); }
.footer-top { padding-block: clamp(56px, 8vw, 84px); display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px,4vw,56px); }
.footer-brand .brand { color: #fff; }
.footer-brand p { margin-top: 22px; font-size: 0.85rem; line-height: 2; color: rgba(255,255,255,0.7); }
.footer-brand .footer-cert {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 3px;
}
.footer-brand .footer-cert img { width: 58px; height: auto; display: block; }
.footer-brand .footer-cert__note {
  font-size: 0.7rem;
  line-height: 1.7;
  color: var(--ink-sub);
  letter-spacing: 0.02em;
}
.footer-col h4 { font-family: var(--font-en); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ice-soft); margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.82); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--ice-soft); }
.footer-hotels { margin-top: 26px; }
.footer-hotels__label {
  display: block; font-family: var(--font-en); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ice-soft); margin-bottom: 12px;
}
.footer-hotels__list { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.footer-hotels__link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  transition: color .3s var(--ease);
}
.footer-hotels__link:hover { color: var(--ice-soft); }
.footer-hotels__link .icon { font-size: 0.78em; opacity: 0.75; }
.footer-contact p { font-size: 0.9rem; line-height: 2; margin-bottom: 4px; color: rgba(255,255,255,0.82); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom small { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); }
.footer-bottom .pagetop { font-family: var(--font-en); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 8px; }
.footer-bottom .pagetop:hover { color: #fff; }
.footer-bottom__legal { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom__link { font-family: var(--font-en); font-size: 0.72rem; letter-spacing: 0.05em; color: rgba(255,255,255,0.55); transition: color .3s var(--ease); }
.footer-bottom__link:hover { color: #fff; }

/* =================================================================
   Reveal on scroll
   ================================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
  .reveal.is-in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: .1s; }
  .reveal[data-delay="2"] { transition-delay: .2s; }
  .reveal[data-delay="3"] { transition-delay: .3s; }
}

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1023px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1080px) {
  .gnav__list, .gnav__cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 860px) {
  .access__grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: auto 1fr; row-gap: 6px; column-gap: 16px; }
  .news-item__date { grid-column: 1; }
  .news-item__cat { grid-column: 2; justify-self: start; }
  .news-item__title { grid-column: 1 / -1; }
  .news-item__arrow { display: none; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero[data-hero="2"] .hero-vlabel { display: none; }
}
