:root {
  --black: #050505;
  --charcoal: #111312;
  --paper: #f4f2ed;
  --white: #ffffff;
  --muted: #a7aaa6;
  --ink: #161916;
  --green: #143d32;
  --gold: #a99d86;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-padding-top: 112px;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Noto Sans SC", "Hiragino Sans", sans-serif;
  letter-spacing: 0;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 126px;
  padding: 16px clamp(24px, 5vw, 64px);
  background: rgba(248, 246, 240, 0.94);
  color: var(--ink);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  min-height: 104px;
  background: rgba(248, 246, 240, 0.98);
  border-color: rgba(20, 61, 50, 0.12);
  box-shadow: 0 16px 54px rgba(35, 32, 25, 0.08);
}

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: clamp(190px, 18vw, 282px);
  height: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 8px 18px rgba(20, 61, 50, 0.16));
  opacity: 0.82;
  transform: translateY(-1px);
}

.brand-symbol {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.brand:hover .brand-symbol {
  background: var(--green);
  color: var(--white);
  transform: rotate(-6deg) scale(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.35vw, 22px);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(14px, 1.15vw, 17px);
  flex: 1;
  min-width: 0;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: clamp(14px, 2vw, 28px);
  flex-shrink: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.2);
  transform-origin: left;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  background: #1f7a52;
  color: var(--white);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover {
  background: #16633f;
}

.site-nav .subtle-link {
  color: rgba(22, 25, 22, 0.54);
  font-size: 14px;
}

.language-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.language-button {
  display: none;
  min-height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
  padding: 6px 12px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.language-button:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 61, 50, 0.44);
  transform: translateY(-1px);
}

.language-button::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-options {
  position: static;
  display: flex;
  min-width: 0;
  padding: 3px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(20, 61, 50, 0.16);
  box-shadow: none;
}

.language-menu.open .language-options {
  display: flex;
}

.language-options button {
  border: 0;
  background: transparent;
  color: var(--ink);
  min-height: 32px;
  padding: 7px 10px;
  text-align: center;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  transition: background 0.25s ease, color 0.25s ease;
}

.language-options button:hover {
  background: rgba(20, 61, 50, 0.08);
}

.language-options button.active {
  background: var(--green);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  place-items: center;
  padding: 170px 24px 72px;
  overflow: hidden;
}

.hero-bg,
.hero-motion,
.hero-gust,
.hero-snow,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("./assets/hero-yotei-ski.png");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.03);
  will-change: transform;
}

.hero-motion {
  display: none;
  z-index: 2;
  opacity: 0.26;
  background:
    radial-gradient(circle at 20% 75%, rgba(255, 255, 255, 0.68) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 40%, rgba(255, 255, 255, 0.52) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 62%, rgba(255, 255, 255, 0.55) 0 1px, transparent 2px);
  background-size: 120px 120px, 180px 180px, 240px 240px;
  animation: snowDrift 9s linear infinite;
}

.hero-gust {
  display: none;
  z-index: 2;
  opacity: 0.58;
  background:
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.14) 34%, rgba(255, 255, 255, 0.62) 48%, transparent 66%),
    radial-gradient(ellipse at 82% 66%, rgba(255, 255, 255, 0.82) 0 4%, rgba(255, 255, 255, 0.26) 16%, transparent 34%);
  filter: blur(10px);
  mix-blend-mode: screen;
  transform: translateX(18%) translateY(8%) rotate(-4deg);
  animation: powderSweep 8.5s ease-in-out infinite;
}

.hero-snow {
  display: none;
  z-index: 2;
  opacity: 0.88;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.54) 0 1.4px, transparent 2.4px);
  background-position: 0 0, 80px 40px, 160px 90px;
  background-size: 120px 160px, 180px 220px, 260px 320px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 82%, transparent 100%);
  pointer-events: none;
  animation: snowFall 14s linear infinite;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(12, 18, 22, 0.26) 42%, rgba(244, 242, 237, 0.9) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin-right: auto;
  margin-left: clamp(0px, 4vw, 54px);
  text-align: center;
  color: var(--white);
  transform: none;
  animation: none;
  transition: none;
}

.overline {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.overline.dark {
  color: var(--green);
}

.hero-logo,
h2,
h3,
p {
  margin-top: 0;
}

.hero-logo {
  margin-bottom: 18px;
  display: block;
  width: clamp(500px, 60vw, 900px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.32));
  animation: none;
}

h2 {
  margin-bottom: 26px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 400;
  line-height: 1.16;
  text-wrap: balance;
}

p {
  color: #5d625f;
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.rule {
  width: min(240px, 44vw);
  height: 1px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.56);
}

.hero-cn {
  margin-bottom: 22px;
  color: var(--white);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(25px, 3.5vw, 40px);
  text-wrap: balance;
  animation: fadeLift 0.9s ease 0.18s both;
}

.hero-en {
  max-width: min(960px, calc(100vw - 48px));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.72;
  text-wrap: balance;
  animation: fadeLift 0.9s ease 0.3s both;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  animation: fadeLift 0.9s ease 0.42s both;
}

.hero-service-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(18px, 3vw, 48px);
  display: grid;
  gap: 7px;
  width: min(318px, 25vw);
  min-width: 258px;
  padding: 10px;
  background: rgba(248, 246, 240, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px) saturate(1.12);
  transform: translateY(-42%);
}

.hero-service-nav > span.quick-nav-label {
  padding: 9px 10px 0;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quick-nav-hint {
  padding: 0 10px 8px;
  color: rgba(22, 25, 22, 0.58);
  font-size: 12px;
  letter-spacing: 0;
}

.hero-service-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 11px;
  min-height: 76px;
  padding: 13px 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 61, 50, 0.12);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.hero-service-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.46) 45%, transparent 72%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 0.28s ease, transform 0.7s ease;
}

.hero-service-nav a:hover {
  background: rgba(20, 61, 50, 0.96);
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  transform: translateX(-5px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.hero-service-nav a:hover::before {
  opacity: 1;
  transform: translateX(110%);
}

.quick-index {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.quick-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 0;
}

.hero-service-nav strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.12;
}

.hero-service-nav small {
  color: inherit;
  opacity: 0.66;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.quick-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(20, 61, 50, 0.24);
  border-radius: 50%;
  color: var(--green);
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}

.quick-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateX(-1px) rotate(45deg);
}

.hero-service-nav a:hover .quick-index {
  color: rgba(255, 255, 255, 0.78);
}

.hero-service-nav a:hover .quick-arrow {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  transform: translateX(3px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  box-shadow: 0 16px 36px rgba(20, 61, 50, 0.16);
  transform: translateY(-2px);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.36) 45%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}

.btn:hover::after {
  transform: translateX(130%);
}

.btn.light {
  background: var(--white);
  color: var(--black);
}

.btn.outline-light {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.section {
  padding: clamp(76px, 10vw, 128px) clamp(24px, 7vw, 96px);
}

.detail-main {
  padding-top: 126px;
}

.detail-hero {
  position: relative;
  min-height: min(760px, calc(100vh - 126px));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(96px, 12vw, 150px) clamp(24px, 7vw, 96px);
  background: var(--black);
  color: var(--white);
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
  transform: scale(1.03);
  will-change: transform, object-position;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.12) 100%);
}

.detail-hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.detail-hero h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.08;
  text-wrap: balance;
}

.detail-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.5vw, 21px);
}

.detail-hero .btn {
  margin-top: 22px;
}

.home-hub {
  background: #f7f4ee;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  max-width: 1180px;
  margin: 54px auto 0;
}

.hub-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(20, 61, 50, 0.1);
  box-shadow: 0 18px 58px rgba(35, 32, 25, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hub-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.hub-card:hover {
  border-color: rgba(20, 61, 50, 0.22);
  box-shadow: 0 28px 76px rgba(35, 32, 25, 0.14);
  transform: translateY(-6px);
}

.hub-card:hover img {
  filter: saturate(1.06) contrast(1.05);
  transform: scale(1.07);
}

.hub-card span {
  margin: 30px clamp(22px, 2.5vw, 32px) 14px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hub-card h3 {
  margin: 0 clamp(22px, 2.5vw, 32px) 16px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 400;
  line-height: 1.28;
}

.hub-card p {
  margin: 0 clamp(22px, 2.5vw, 32px);
  color: #5d625f;
  font-size: 15px;
}

.hub-card strong {
  width: fit-content;
  margin: auto clamp(22px, 2.5vw, 32px) 30px;
  border-bottom: 1px solid rgba(20, 61, 50, 0.42);
  padding-bottom: 7px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tips-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  max-width: 1180px;
  margin: 30px auto 0;
  padding: clamp(28px, 4vw, 46px);
  background: #ffffff;
  border: 1px solid rgba(20, 61, 50, 0.12);
  box-shadow: 0 18px 58px rgba(35, 32, 25, 0.07);
}

.tips-entry h3 {
  max-width: 720px;
  margin: 0 0 14px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.22;
}

.tips-entry p:not(.overline) {
  max-width: 760px;
  margin: 0;
  color: #5d625f;
}

.season-banner {
  position: relative;
  min-height: clamp(440px, 58vw, 680px);
  margin-top: -1px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, #eef4f7 100%);
}

.season-banner::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, var(--paper) 0%, rgba(244, 242, 237, 0) 100%);
  pointer-events: none;
}

.season-banner img,
.season-overlay {
  position: absolute;
  inset: 0;
}

.season-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  will-change: transform, filter, object-position;
  transition: transform 1.2s ease, filter 1.2s ease;
}

.season-banner:hover img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.07);
}

.season-overlay {
  background:
    linear-gradient(90deg, rgba(244, 242, 237, 0.94) 0%, rgba(250, 247, 239, 0.78) 34%, rgba(255, 255, 255, 0.26) 62%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(244, 242, 237, 0.42) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(244, 242, 237, 0.32) 100%);
}

.season-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 118px) clamp(24px, 7vw, 96px);
}

.season-content h2 {
  color: var(--ink);
  font-size: clamp(42px, 6.5vw, 88px);
}

.season-content p {
  max-width: 620px;
  color: #3f4843;
  font-size: clamp(17px, 2vw, 25px);
}

.season-content .overline {
  color: var(--green);
}

.season-content .btn.light {
  background: var(--green);
  color: var(--white);
}

.season-content .btn {
  align-self: flex-start;
  margin-top: 22px;
}

.statement {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.statement p {
  margin-left: auto;
  margin-right: auto;
  max-width: 980px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.75;
}

.statement .en {
  margin-top: 28px;
  color: var(--muted);
  font-family: inherit;
  font-size: 17px;
}

.services {
  background: #f7f4ee;
  color: var(--ink);
  text-align: center;
}

.services h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 920px;
  margin: 58px auto 0;
}

.service-grid.five {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1260px;
  gap: clamp(24px, 3.4vw, 48px);
}

.service-grid.premium {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  max-width: 1360px;
  gap: clamp(16px, 2vw, 28px);
}

.service-item {
  display: grid;
  justify-items: center;
  gap: 14px;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item img {
  width: min(210px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(20, 61, 50, 0.16);
  box-shadow: 0 24px 80px rgba(35, 32, 25, 0.16);
  transform: scale(1) rotate(0deg);
  transition: transform 0.55s ease, box-shadow 0.55s ease, filter 0.55s ease;
}

.service-grid.premium .service-item img {
  width: min(178px, 100%);
}

.service-item:hover img {
  box-shadow: 0 34px 90px rgba(35, 32, 25, 0.24);
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.06) rotate(-1.5deg);
}

.service-item span {
  margin-top: 10px;
  border-bottom: 1px solid rgba(20, 61, 50, 0.42);
  padding-bottom: 5px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 21px;
  line-height: 1.28;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.service-item:hover span {
  border-color: var(--green);
  color: var(--green);
}

.service-item small {
  color: #69716b;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.powder {
  background: #ebe7de;
  color: var(--ink);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 52px auto 0;
  background: var(--line-dark);
}

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

.experience-grid article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.experience-grid.five article {
  min-height: 460px;
}

.experience-grid.five article:nth-child(1),
.experience-grid.five article:nth-child(2) {
  min-height: 520px;
}

.experience-grid.five article:nth-child(1) {
  grid-column: span 2;
}

.experience-grid article:hover {
  z-index: 2;
  box-shadow: 0 28px 90px rgba(35, 32, 25, 0.24);
  transform: translateY(-4px);
}

.experience-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.05);
  transform: scale(1.02);
  will-change: transform, filter, object-position;
  transition: transform 0.9s ease, filter 0.9s ease;
}

.experience-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 58%);
  pointer-events: none;
}

.experience-grid article:hover img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.08);
}

.experience-copy {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 38px);
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(24px, 4vw, 42px);
  color: var(--white);
}

.experience-copy span {
  display: inline-block;
  margin-bottom: 14px;
  color: #d4c6aa;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-copy h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(27px, 2.7vw, 42px);
  font-weight: 400;
}

.experience-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.9;
}

.experience-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1280px, 100%);
  max-width: 1280px;
  margin: 1px auto 0;
  padding: 28px clamp(22px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line-dark);
}

.experience-note p {
  margin: 0;
  color: #5d625f;
  font-size: 14px;
}

.local-experiences {
  background: #f7f4ee;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1280px;
  margin: 48px auto 0;
  background: var(--line-dark);
}

.local-grid article {
  min-height: 260px;
  padding: clamp(24px, 2.8vw, 34px);
  background: #ffffff;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.local-grid article:hover {
  z-index: 2;
  background: #fbfaf7;
  box-shadow: 0 24px 70px rgba(35, 32, 25, 0.12);
  transform: translateY(-5px);
}

.local-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.local-grid h3 {
  margin-bottom: 16px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(22px, 1.8vw, 29px);
  font-weight: 400;
  line-height: 1.28;
}

.local-grid p {
  margin-bottom: 0;
  color: #5d625f;
  font-size: 15px;
}

.tips-main {
  background: var(--paper);
}

.tips-blog-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  gap: 1px;
  min-height: calc(100vh - 126px);
  background: rgba(20, 61, 50, 0.18);
}

.tips-blog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 110px) clamp(24px, 7vw, 96px);
  background: #f7f4ee;
}

.tips-blog-copy h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(50px, 8vw, 110px);
  font-weight: 400;
  line-height: 1.02;
}

.tips-blog-copy p:not(.overline) {
  max-width: 720px;
  color: #545d58;
  font-size: clamp(17px, 1.7vw, 23px);
  line-height: 1.9;
}

.tips-blog-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.tips-blog {
  background: #ffffff;
}

.tips-options {
  background: #f7f4ee;
}

.tips-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1280px;
  margin: 52px auto 0;
  background: var(--line-dark);
}

.tips-option-grid a {
  position: relative;
  display: grid;
  min-height: 380px;
  overflow: hidden;
  align-content: end;
  padding: clamp(22px, 3vw, 36px);
  background: #101512;
  color: var(--white);
  isolation: isolate;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tips-option-grid a:hover {
  z-index: 2;
  box-shadow: 0 28px 86px rgba(35, 32, 25, 0.22);
  transform: translateY(-6px);
}

.tips-option-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
  transition: transform 0.9s ease, opacity 0.9s ease, filter 0.9s ease;
  z-index: -2;
}

.tips-option-grid a:first-child img {
  object-position: 50% 12%;
}

.tips-option-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 62%);
}

.tips-option-grid a:hover img {
  opacity: 0.86;
  filter: saturate(1.04) contrast(1.07);
  transform: scale(1.08);
}

.tips-option-grid span {
  margin-bottom: 14px;
  color: #d4c6aa;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tips-option-grid h3 {
  max-width: 420px;
  margin: 0 0 14px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 400;
  line-height: 1.14;
}

.tips-option-grid p {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1380px;
  margin: 54px auto 0;
}

.journal-card {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  align-content: end;
  padding: clamp(22px, 2.6vw, 34px);
  background: #0d120f;
  color: var(--white);
  isolation: isolate;
  box-shadow: 0 22px 70px rgba(35, 32, 25, 0.1);
  transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.journal-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 858px;
}

.journal-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.015);
  transition: transform 0.95s ease, opacity 0.95s ease, filter 0.95s ease;
}

.journal-card.large img {
  object-position: 50% 6%;
}

.journal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 62%);
}

.journal-card:hover {
  z-index: 2;
  box-shadow: 0 34px 96px rgba(35, 32, 25, 0.2);
  transform: translateY(-7px);
}

.journal-card:hover img {
  opacity: 0.9;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.075);
}

.journal-card span {
  margin-bottom: 15px;
  color: #d4c6aa;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-card h3 {
  max-width: 560px;
  margin: 0 0 14px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(28px, 2.7vw, 45px);
  font-weight: 400;
  line-height: 1.13;
}

.journal-card p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.article-main {
  background: #f7f4ee;
}

.tip-article {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) clamp(18px, 4vw, 48px) clamp(70px, 9vw, 120px);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  margin-bottom: clamp(42px, 7vw, 88px);
}

.article-hero img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(35, 32, 25, 0.16);
}

.article-hero .overline {
  color: var(--green);
}

.article-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 26px;
  color: #68716b;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.article-back::before {
  content: "<";
  margin-right: 8px;
}

.article-hero h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 400;
  line-height: 1.06;
}

.article-hero p:not(.overline) {
  max-width: 620px;
  color: #525b55;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.9;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  color: #303732;
}

.article-body p {
  margin: 0 0 22px;
  color: #4e5751;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 2;
}

.article-note {
  display: grid;
  gap: 10px;
  margin: 38px 0;
  padding: clamp(22px, 3vw, 34px);
  background: #ffffff;
  border-left: 4px solid var(--green);
  box-shadow: 0 20px 68px rgba(35, 32, 25, 0.08);
}

.article-note strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 24px;
  font-weight: 400;
}

.article-note span {
  color: #5c655f;
  line-height: 1.85;
}

.article-list {
  display: grid;
  gap: 1px;
  margin: 36px 0;
  padding: 0;
  list-style: none;
  background: var(--line-dark);
}

.article-list li {
  padding: 20px 22px;
  background: #fbfaf7;
  color: #3e4741;
  line-height: 1.75;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 44px 0;
}

.article-gallery img {
  width: 100%;
  aspect-ratio: 1.24;
  object-fit: cover;
  box-shadow: 0 22px 64px rgba(35, 32, 25, 0.1);
}

.article-guide {
  max-width: 820px;
  margin-top: 42px;
}

.founder-main {
  padding-top: 126px;
  background:
    linear-gradient(180deg, #f8f6f0 0%, #ffffff 34%, #f7f4ee 100%);
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(36px, 6vw, 94px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(22px, 5vw, 56px) clamp(48px, 7vw, 92px);
}

.founder-intro {
  padding-bottom: clamp(12px, 2vw, 30px);
}

.founder-intro h1 {
  margin: 0 0 28px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  line-height: 1.02;
}

.founder-intro p:not(.overline) {
  max-width: 760px;
  color: #4d5650;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.7;
}

.founder-portrait {
  margin: 0;
}

.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 0.84;
  object-fit: cover;
  object-position: 50% 26%;
  background: #ffffff;
  box-shadow: 0 28px 88px rgba(35, 32, 25, 0.14);
  filter: saturate(1.02) contrast(1.02);
}

.founder-portrait figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(20, 61, 50, 0.18);
  margin-top: 20px;
}

.founder-portrait strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 400;
}

.founder-portrait span {
  color: #68716b;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-letter {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 56px) clamp(76px, 10vw, 140px);
}

.founder-letter article {
  padding: clamp(38px, 6vw, 74px) 0;
  border-top: 1px solid rgba(20, 61, 50, 0.14);
}

.founder-letter h2 {
  margin: 0 0 28px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.16;
}

.founder-letter p {
  margin: 0 0 22px;
  color: #414a44;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 2.08;
}

.founder-letter .lead {
  color: #242a26;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.95;
}

.founder-quote {
  margin: clamp(34px, 5vw, 56px) 0;
  padding: clamp(28px, 4vw, 46px);
  background: #143d32;
  color: var(--white);
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.38;
}

.founder-note {
  display: grid;
  gap: 1px;
  margin: 38px 0;
  background: rgba(20, 61, 50, 0.18);
}

.founder-note span {
  display: block;
  padding: 22px 24px;
  background: #ffffff;
  color: #26302a;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.5;
}

.founder-signature {
  margin-top: 42px !important;
  color: var(--green) !important;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 24px !important;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1280px;
  margin: 52px auto 0;
  background: var(--line-dark);
}

.blog-card-grid article {
  min-height: 330px;
  padding: clamp(24px, 3vw, 38px);
  background: #fbfaf7;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-grid article:hover {
  z-index: 1;
  background: #ffffff;
  box-shadow: 0 26px 80px rgba(35, 32, 25, 0.13);
  transform: translateY(-6px);
}

.blog-card-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.blog-card-grid h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(23px, 1.85vw, 31px);
  font-weight: 400;
  line-height: 1.28;
}

.blog-card-grid p {
  margin: 0;
  color: #5d625f;
  font-size: 15px;
}

.embedded-guide {
  background: #edf5f7;
}

.guide-page-stack {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  max-width: 900px;
  margin: 54px auto 0;
}

.guide-page-stack figure {
  margin: 0;
  padding: clamp(8px, 1.6vw, 16px);
  background: #ffffff;
  border: 1px solid rgba(20, 61, 50, 0.1);
  box-shadow: 0 20px 76px rgba(35, 32, 25, 0.12);
}

.guide-page-stack img {
  display: block;
  width: 100%;
  height: auto;
}

.tips-detail img {
  object-position: 50% 34%;
}

.tips-intro {
  padding-bottom: clamp(36px, 5vw, 64px);
  background: #f7f4ee;
}

.compact-section {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(54px, 7vw, 82px);
}

.guide-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: clamp(24px, 4vw, 46px);
  background: #ffffff;
  border: 1px solid rgba(20, 61, 50, 0.12);
  box-shadow: 0 18px 60px rgba(35, 32, 25, 0.08);
}

.guide-feature img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: #e7f3f7;
}

.guide-feature h2,
.guide-safety h2,
.guide-download h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 58px);
}

.guide-feature p,
.guide-safety p,
.guide-download p {
  color: #5d625f;
}

.tips-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: var(--line-dark);
}

.tips-topic-grid article {
  min-height: 260px;
  padding: clamp(24px, 3vw, 38px);
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.tips-topic-grid article:hover {
  z-index: 1;
  background: #fbfaf7;
  box-shadow: 0 24px 70px rgba(35, 32, 25, 0.12);
  transform: translateY(-5px);
}

.tips-topic-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tips-topic-grid h3 {
  margin: 0 0 16px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.28;
}

.tips-topic-grid p {
  margin: 0;
  color: #5d625f;
}

.guide-safety {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  background: #101512;
  color: var(--white);
}

.guide-safety p {
  color: rgba(255, 255, 255, 0.74);
}

.guide-safety img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  background: #e7f3f7;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.safety-list {
  display: grid;
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
}

.safety-list li {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.86);
}

.guide-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  background: transparent;
}

.guide-download > div {
  max-width: 760px;
}

.accommodation {
  background: var(--paper);
  color: var(--ink);
}

.section-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-center p {
  color: #5d625f;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--line-dark);
  perspective: 1200px;
}

.collection-grid.stay-only {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.collection-grid article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fbfaf7;
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.collection-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 61, 50, 0.08));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.collection-grid article:hover {
  z-index: 2;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(35, 32, 25, 0.15);
  transform: translateY(-8px) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
}

.collection-grid article:hover::after {
  opacity: 1;
}

.collection-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  will-change: transform, filter, object-position;
  transition: transform 0.8s ease, filter 0.8s ease;
}

.collection-grid article:hover img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.08);
}

.collection-grid h3,
.collection-grid p {
  padding-left: 24px;
  padding-right: 24px;
}

.collection-grid h3 {
  margin-top: 24px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  z-index: 2;
}

.collection-grid p {
  padding-bottom: 26px;
  color: #5d625f;
  position: relative;
  z-index: 2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 8vw, 96px);
  background: var(--paper);
  color: var(--ink);
}

.image-split {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  perspective: 1400px;
}

.image-split::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(20, 61, 50, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.image-split:hover::before {
  opacity: 1;
  transform: translateY(-4px);
}

.image-split:nth-of-type(even) {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
}

.image-split:nth-of-type(even) img {
  order: 2;
}

.image-split > img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 70px rgba(35, 32, 25, 0.1);
  transform: scale(1) translateZ(0);
  will-change: transform, filter, object-position;
  transition: transform 0.8s ease, box-shadow 0.8s ease, filter 0.8s ease;
}

.image-split:hover > img {
  box-shadow: 0 32px 90px rgba(35, 32, 25, 0.18);
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035) rotateX(calc(var(--tilt-y, 0) * -0.45deg)) rotateY(calc(var(--tilt-x, 0) * 0.45deg));
}

#hokkaido > img {
  aspect-ratio: 16 / 9;
}

.image-split p {
  color: #5d625f;
}

.image-split .btn.dark {
  margin-top: 20px;
}

.dark-feature {
  background: #eef1ec;
  color: var(--ink);
}

.dark-feature p {
  color: #5d625f;
}

.compact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 26px 0 0;
  padding: 0;
  background: var(--line-dark);
  list-style: none;
}

.compact-list li {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-family: Georgia, "Noto Serif SC", serif;
}

.split p {
  color: #5d625f;
}

.copy {
  align-self: center;
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.image-split:hover .copy {
  transform: translateY(-4px);
}

.text-link {
  display: inline-block;
  position: relative;
  margin-top: 18px;
  padding-bottom: 6px;
  color: var(--green);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.text-link:hover::after {
  transform: scaleX(0.38);
}

.black-panel {
  background: var(--charcoal);
}

.panel-heading {
  max-width: 900px;
  margin: 0 auto 46px;
  text-align: center;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.detail-grid div {
  min-height: 230px;
  padding: 28px;
  background: var(--black);
}

.detail-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.detail-grid strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 400;
}

.detail-grid p {
  color: var(--muted);
  font-size: 15px;
}

.business {
  background: var(--paper);
  color: var(--ink);
}

.business-intro {
  max-width: 820px;
}

.business p,
.about p {
  color: #5b625e;
}

.business-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 40px 0 30px;
  background: var(--line-dark);
}

.business-list span {
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px;
  background: #fbfaf7;
}

.about {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about p {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.why {
  background: #ece9e2;
  color: var(--ink);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 30px;
  background: var(--line-dark);
}

.why-grid div {
  display: flex;
  min-height: 148px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fbfaf7;
}

.why-grid strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 22px;
  font-weight: 400;
}

.why-grid span {
  color: #66706a;
}

.tips {
  background: #ece9e2;
  color: var(--ink);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line-dark);
}

.tips-grid article {
  min-height: 230px;
  padding: 28px;
  background: #fbfaf7;
}

.tips-grid span {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tips-grid h3 {
  margin-top: 42px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 25px;
  font-weight: 400;
}

.tips-grid p {
  color: #5d625f;
}

.testimonials {
  background: var(--black);
  text-align: center;
}

.testimonials h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin: 42px auto 0;
  background: var(--line);
}

blockquote {
  margin: 0;
  padding: 34px;
  background: var(--charcoal);
}

blockquote p {
  color: rgba(255, 255, 255, 0.76);
}

cite {
  color: var(--gold);
  font-style: normal;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(26px, 4vw, 60px);
  background: #f7f4ee;
  color: var(--ink);
  align-items: start;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: #5d625f;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  border: 1px solid rgba(20, 61, 50, 0.14);
  background: #ffffff;
  color: var(--ink);
  padding: 15px 18px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 14px 42px rgba(35, 32, 25, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-chip:hover {
  border-color: rgba(20, 61, 50, 0.36);
  box-shadow: 0 20px 54px rgba(35, 32, 25, 0.12);
  transform: translateY(-2px);
}

.contact-chip span {
  color: #5d625f;
  font-size: 13px;
}

.contact-chip strong {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 17px;
  font-weight: 400;
}

.contact-photo {
  grid-column: 1;
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(35, 32, 25, 0.12);
  will-change: transform, filter, object-position;
  transition: transform 0.6s ease, filter 0.6s ease, box-shadow 0.6s ease;
}

.contact-photo:hover {
  filter: saturate(1.05) contrast(1.03);
  box-shadow: 0 34px 90px rgba(35, 32, 25, 0.18);
  transform: translateY(-6px) scale(1.02);
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 80px rgba(35, 32, 25, 0.08);
}

.contact-form label:has(textarea),
.contact-form .full-field,
.contact-form .btn,
.hidden-field {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.contact-form .btn.light {
  background: var(--green);
  color: var(--white);
}

label {
  display: grid;
  gap: 8px;
  color: #4d554f;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fbfaf7;
  color: var(--ink);
  padding: 14px;
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: rgba(20, 61, 50, 0.55);
  box-shadow: 0 0 0 4px rgba(20, 61, 50, 0.08);
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.contact-modal.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.46);
  backdrop-filter: blur(7px);
}

.contact-sheet {
  position: relative;
  width: min(100%, 500px);
  background: #fbfaf6;
  border: 1px solid rgba(20, 61, 50, 0.18);
  color: var(--ink);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 32px 100px rgba(9, 14, 12, 0.28);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.32s ease;
}

.contact-modal.open .contact-sheet {
  transform: translateY(0) scale(1);
}

.contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(20, 61, 50, 0.16);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font: 26px/1 Georgia, serif;
}

.contact-sheet h2 {
  max-width: 360px;
  margin: 12px 0 12px;
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-choice-text {
  margin: 0 0 24px;
  color: #5d625f;
  font-size: 15px;
  line-height: 1.8;
}

.contact-choice-list {
  display: grid;
  gap: 10px;
}

.contact-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  width: 100%;
  border: 1px solid rgba(20, 61, 50, 0.14);
  background: #ffffff;
  color: var(--ink);
  padding: 16px 18px;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.contact-choice:hover,
.contact-choice:focus-visible {
  border-color: rgba(20, 61, 50, 0.34);
  transform: translateY(-2px);
}

.contact-choice.primary {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.contact-choice span {
  font-family: Georgia, "Noto Serif SC", serif;
  font-size: 20px;
  line-height: 1.2;
}

.contact-choice small {
  color: #6b706d;
  font-size: 12px;
  white-space: nowrap;
}

.contact-choice.primary small {
  color: rgba(255, 255, 255, 0.78);
}

.contact-copy-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 13px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(24px, 7vw, 96px);
  background: #ebe7de;
  color: #5d625f;
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.footer-logo {
  display: block;
  width: clamp(150px, 15vw, 220px);
  height: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade-left"] {
  transform: translateX(-30px);
}

[data-reveal="fade-right"] {
  transform: translateX(30px);
}

[data-reveal="fade-left"].in-view,
[data-reveal="fade-right"].in-view {
  transform: translateX(0);
}

.founder-main [data-reveal] {
  opacity: 1;
  transform: none;
}

.collection-grid article,
.service-item,
.compact-list li {
  animation: none;
}

.in-view .service-item,
.in-view .collection-grid article,
.in-view .compact-list li {
  animation: softRise 0.72s ease both;
}

.in-view .service-item:nth-child(2),
.in-view .collection-grid article:nth-child(2),
.in-view .compact-list li:nth-child(2) {
  animation-delay: 0.08s;
}

.in-view .service-item:nth-child(3),
.in-view .collection-grid article:nth-child(3),
.in-view .compact-list li:nth-child(3) {
  animation-delay: 0.16s;
}

.in-view .service-item:nth-child(4),
.in-view .compact-list li:nth-child(4) {
  animation-delay: 0.24s;
}

.in-view .service-item:nth-child(5) {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg {
    animation: cinematicHero 26s ease-in-out infinite alternate;
  }

  .season-banner.in-view img,
  .detail-hero.in-view img,
  .home-hub.in-view .hub-card img,
  .powder.in-view .experience-grid img,
  .in-view .service-item img,
  .in-view .collection-grid img,
  .journal-card img,
  .article-hero img,
  .article-gallery img,
  .founder-portrait img,
  .image-split.in-view > img,
  .contact.in-view .contact-photo {
    animation: photoDrift 16s ease-in-out infinite alternate;
  }

  .powder.in-view .experience-grid article:nth-child(2) img,
  .in-view .service-item:nth-child(2) img,
  .in-view .collection-grid article:nth-child(2) img,
  .image-split:nth-of-type(even).in-view > img {
    animation-delay: -3s;
  }

  .powder.in-view .experience-grid article:nth-child(3) img,
  .in-view .service-item:nth-child(3) img,
  .in-view .collection-grid article:nth-child(3) img,
  .contact.in-view .contact-photo {
    animation-delay: -6s;
  }

  .powder.in-view .experience-grid article:nth-child(4) img {
    animation-delay: -9s;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: clamp(14px, 4vw, 28px);
    right: clamp(14px, 4vw, 28px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: clamp(16px, 4vw, 28px);
    background: rgba(248, 246, 240, 0.98);
    border: 1px solid var(--line-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 0 18px;
    background: #ffffff;
    border: 1px solid rgba(20, 61, 50, 0.1);
    font-size: 20px;
    line-height: 1.2;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: var(--green);
    color: var(--white);
  }

  .header-tools {
    margin-left: auto;
  }

  .language-options {
    justify-content: center;
    width: auto;
  }

  .language-options button {
    flex: 0 0 auto;
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .brand-logo {
    width: clamp(168px, 30vw, 246px);
  }

  .hero-logo {
    width: min(760px, 82vw);
  }

  .hero-service-nav {
    position: relative;
    top: auto;
    right: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
    width: min(940px, calc(100vw - 32px));
    margin: 28px auto 0;
    transform: none;
  }

  .hero-service-nav > span {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero-service-nav > span.quick-nav-label {
    padding: 14px 14px 4px;
  }

  .quick-nav-hint {
    padding: 0 14px 12px;
    text-align: center;
  }

  .hero-service-nav a {
    align-content: space-between;
    align-items: start;
    grid-template-columns: 1fr 28px;
    grid-template-rows: auto 1fr;
    min-height: 124px;
    padding: 14px;
    text-align: left;
  }

  .hero-service-nav a:hover {
    transform: translateY(-2px);
  }

  .quick-index {
    grid-column: 1;
    grid-row: 1;
  }

  .quick-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
  }

  .quick-arrow {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-service-nav strong {
    font-size: 16px;
  }

  .hero-service-nav small {
    font-size: 11px;
  }

  .site-nav.open {
    display: flex;
  }

  .service-grid,
  .service-grid.five,
  .service-grid.premium,
  .experience-grid,
  .detail-grid,
  .collection-grid,
  .tips-grid,
  .business-list,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    max-width: 680px;
  }

  .split,
  .image-split,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .experience-grid {
    max-width: 720px;
  }

  .experience-note {
    max-width: 720px;
  }

  .experience-grid article {
    min-height: 460px;
  }

  .experience-note {
    display: grid;
  }

  .image-split:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .image-split:nth-of-type(even) img {
    order: 0;
  }

  .tips-entry,
  .guide-download {
    align-items: stretch;
    flex-direction: column;
  }

  .tips-blog-hero {
    grid-template-columns: 1fr;
  }

  .tips-blog-hero img {
    min-height: 430px;
    order: -1;
  }

  .guide-feature,
  .guide-safety {
    grid-template-columns: 1fr;
  }

  .tips-topic-grid,
  .blog-card-grid,
  .tips-option-grid,
  .journal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-card.large {
    grid-column: span 2;
    min-height: 540px;
  }

  .article-hero {
    grid-template-columns: 1fr;
  }

  .article-hero img {
    aspect-ratio: 1.55;
  }

  .founder-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .founder-portrait {
    max-width: 460px;
  }
}

@media (max-width: 760px) {
  .blog-card-grid,
  .tips-option-grid,
  .journal-grid,
  .article-gallery {
    grid-template-columns: 1fr;
  }

  .journal-card,
  .journal-card.large {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .article-hero {
    margin-bottom: 38px;
  }

  .article-hero img {
    aspect-ratio: 1.2;
  }

  .founder-hero {
    padding-top: 40px;
  }

  .founder-portrait {
    max-width: none;
  }

  .founder-portrait figcaption {
    display: grid;
  }

  .founder-letter article {
    padding: 42px 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 78px;
    padding: 9px 10px;
    gap: 8px;
  }

  .site-header.scrolled {
    min-height: 78px;
  }

  .brand-logo {
    width: min(122px, 31vw);
  }

  .header-tools {
    gap: 6px;
    margin-left: 6px;
  }

  .language-options {
    padding: 2px;
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(20, 61, 50, 0.14);
  }

  .language-options button {
    min-height: 28px;
    padding: 5px 6px;
    font-size: 10px;
    white-space: nowrap;
  }

  .site-nav {
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 12px;
  }

  .site-nav a {
    min-height: 62px;
    padding: 0 16px;
    font-size: 18px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .brand-symbol {
    width: 54px;
    height: 54px;
    font-size: 23px;
  }

  .hero-logo {
    width: min(330px, 76vw);
  }

  .hero {
    display: block;
    min-height: 100svh;
    padding: 104px 14px 34px;
  }

  .hero-bg {
    background-position: 62% center;
    transform: scale(1.01);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(8, 12, 14, 0.48) 31%, rgba(10, 14, 16, 0.54) 61%, rgba(244, 242, 237, 0.88) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.24) 100%);
  }

  .hero-inner {
    max-width: none;
    margin: 0 auto;
    padding-top: 8px;
    text-align: left;
  }

  .hero-inner .overline {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .hero-logo {
    margin-right: auto;
    margin-left: 0;
  }

  .rule {
    width: 120px;
    margin-left: 0;
    margin-bottom: 18px;
  }

  .hero-cn {
    margin-bottom: 14px;
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.08;
  }

  .hero-en {
    max-width: 100%;
    margin-left: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.72;
    text-align: left;
  }

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

  .hero-service-nav {
    grid-template-columns: 1fr;
    gap: 1px;
    width: 100%;
    margin-top: 22px;
    padding: 10px;
    background: rgba(248, 246, 240, 0.94);
    border-color: rgba(255, 255, 255, 0.58);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  }

  .hero-service-nav a {
    grid-template-columns: 34px minmax(0, 1fr) 30px;
    grid-template-rows: auto;
    align-items: center;
    min-height: 66px;
    padding: 12px 11px;
    background: rgba(255, 255, 255, 0.74);
    text-align: left;
  }

  .hero-service-nav > span.quick-nav-label {
    padding: 4px 4px 0;
    font-size: 10px;
    text-align: left;
  }

  .quick-nav-hint {
    padding: 0 4px 10px;
    font-size: 11px;
    text-align: left;
  }

  .quick-index,
  .hero-service-nav a:last-child .quick-index {
    grid-column: 1;
    grid-row: auto;
  }

  .quick-copy,
  .hero-service-nav a:last-child .quick-copy {
    grid-column: 2;
    grid-row: auto;
    align-self: center;
  }

  .quick-arrow,
  .hero-service-nav a:last-child .quick-arrow {
    grid-column: 3;
    grid-row: auto;
  }

  .hero-service-nav strong {
    font-size: 18px;
    line-height: 1.15;
  }

  .hero-service-nav small {
    font-size: 12px;
  }

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

  .season-banner {
    min-height: 440px;
    margin-top: 0;
  }

  .season-content {
    inset: auto 18px 26px;
    max-width: none;
  }

  .section {
    padding: 58px 18px;
  }

  .section-center {
    margin-bottom: 30px;
    text-align: left;
  }

  .section-center h2,
  .tips-entry h3 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.16;
  }

  .section-center p {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.five,
  .service-grid.premium,
  .experience-grid,
  .detail-grid,
  .collection-grid,
  .tips-grid,
  .business-list,
  .why-grid,
  .quotes {
    grid-template-columns: 1fr;
  }

  .service-item img {
    width: 210px;
  }

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

  .detail-main {
    padding-top: 78px;
  }

  .founder-main {
    padding-top: 78px;
  }

  .founder-hero {
    gap: 26px;
    padding: 34px 18px 42px;
  }

  .founder-intro {
    padding-bottom: 0;
  }

  .founder-intro h1 {
    margin-bottom: 18px;
    font-size: clamp(42px, 14vw, 64px);
  }

  .founder-intro p:not(.overline) {
    font-size: 18px;
    line-height: 1.75;
  }

  .founder-portrait img {
    aspect-ratio: 1;
    object-position: 50% 22%;
  }

  .founder-letter {
    padding: 0 18px 70px;
    opacity: 1 !important;
    transform: none !important;
  }

  .founder-letter article {
    padding: 34px 0;
  }

  .founder-letter h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 9vw, 42px);
  }

  .founder-letter p,
  .founder-letter .lead {
    color: #303832;
    font-size: 16px;
    line-height: 1.92;
  }

  .founder-quote {
    margin: 28px 0;
    padding: 24px 20px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .founder-note span {
    padding: 18px;
    font-size: 18px;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

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

  .hub-card {
    min-height: 0;
  }

  .experience-grid.five,
  .collection-grid.stay-only,
  .local-grid,
  .tips-topic-grid,
  .blog-card-grid,
  .tips-option-grid {
    grid-template-columns: 1fr;
  }

  .tips-blog-copy {
    padding: 42px 20px 46px;
  }

  .tips-blog-hero {
    min-height: 0;
  }

  .tips-blog-hero img {
    min-height: 320px;
  }

  .tips-option-grid a {
    min-height: 300px;
  }

  .journal-grid {
    gap: 12px;
    margin-top: 34px;
  }

  .journal-card,
  .journal-card.large {
    min-height: 380px;
  }

  .article-main {
    padding-top: 92px;
  }

  .tip-article {
    padding-left: 14px;
    padding-right: 14px;
  }

  .article-hero h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.9;
  }

  .guide-page-stack {
    gap: 18px;
    margin-top: 34px;
  }

  .guide-page-stack figure {
    margin-left: -12px;
    margin-right: -12px;
    padding: 5px;
  }

  .experience-grid.five article:nth-child(1) {
    grid-column: auto;
  }

  .tips-entry,
  .guide-feature {
    padding: 22px;
  }

  .guide-safety {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-modal {
    align-items: end;
    padding: 14px;
  }

  .contact-sheet {
    width: 100%;
    padding: 26px 20px 22px;
    transform: translateY(22px);
  }

  .contact-modal.open .contact-sheet {
    transform: translateY(0);
  }

  .contact-sheet h2 {
    max-width: 280px;
    font-size: 32px;
  }

  .contact-choice {
    min-height: 62px;
    padding: 14px 15px;
  }

  .contact-choice span {
    font-size: 18px;
  }

  .compact-list {
    grid-template-columns: 1fr;
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08) translate3d(-1%, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(1.5%, -1%, 0);
  }
}

@keyframes cinematicHero {
  from {
    background-position: 48% 50%;
    transform: scale(1.03);
  }
  to {
    background-position: 53% 48%;
    transform: scale(1.09);
  }
}

@keyframes snowDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 120px 240px, -180px 260px, 240px 360px;
  }
}

@keyframes snowFall {
  from {
    background-position: 0 -320px, 80px -420px, 160px -520px;
  }
  to {
    background-position: 180px 520px, -80px 680px, 300px 820px;
  }
}

@keyframes powderSweep {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(24%) translateY(10%) rotate(-5deg) scale(0.96);
  }
  38% {
    opacity: 0.7;
    transform: translateX(3%) translateY(1%) rotate(-4deg) scale(1.08);
  }
  66% {
    opacity: 0.34;
    transform: translateX(-8%) translateY(-2%) rotate(-3deg) scale(1.14);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -8px + 18px), 0);
  }
  to {
    opacity: 1;
    transform: translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -8px), 0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes photoDrift {
  from {
    object-position: 50% 50%;
    transform: scale(1.015);
    filter: saturate(1) contrast(1);
  }
  to {
    object-position: 53% 47%;
    transform: scale(1.055);
    filter: saturate(1.045) contrast(1.018);
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
