/* ==========================================================================
   Fuka House — フカハウス
   Japanese-style villa, Da Nang. Shared stylesheet.

   Palette is sampled from the house logo: the washi cream of its background,
   the sumi-brush circle, the sakura petals. Everything else is negative space.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* Surfaces — warm cream sampled from the logo ground (#faede4) */
  --paper:        #faede4;
  --paper-warm:   #f4e2d5;
  --paper-deep:   #ecd8c9;
  --paper-clean:  #fffaf6;

  /* Ink */
  --sumi:         #241d19;
  --sumi-soft:    #4b403a;
  --sumi-mute:    #857569;
  --sumi-faint:   #a89685;

  /* Accents */
  --hinoki:       #8f6f58;   /* cypress brown — the brush circle */
  --sakura:       #d27b72;   /* petal */
  --sakura-soft:  #f0c3b6;
  --sakura-wash:  #fbe6de;

  /* Lines */
  --line:         rgba(36, 29, 25, 0.14);
  --line-soft:    rgba(36, 29, 25, 0.08);
  --line-strong:  rgba(36, 29, 25, 0.28);

  /* Type */
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", Georgia, "Times New Roman", serif;
  --font-body:    "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.8125rem, 0.79rem + 0.11vw, 0.875rem);
  --step-0:  clamp(1rem, 0.96rem + 0.18vw, 1.0938rem);
  --step-1:  clamp(1.125rem, 1.06rem + 0.32vw, 1.3125rem);
  --step-2:  clamp(1.375rem, 1.24rem + 0.66vw, 1.75rem);
  --step-3:  clamp(1.625rem, 1.35rem + 1.36vw, 2.5rem);
  --step-4:  clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --step-5:  clamp(2.75rem, 1.6rem + 5.75vw, 6rem);

  /* Rhythm */
  --gutter:   clamp(1.25rem, 4vw, 3rem);
  --section:  clamp(4.5rem, 9vw, 8.5rem);
  --measure:  62ch;
  --shell:    82rem;
  --shell-narrow: 64rem;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 4.5rem;
}

@media (min-width: 60em) {
  :root { --nav-h: 5.5rem; }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.75;
  color: var(--sumi-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  color: var(--sumi);
  letter-spacing: 0.005em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--sakura);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--sakura-soft); color: var(--sumi); }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--sumi);
  color: var(--paper);
  font-size: var(--step--1);
  letter-spacing: 0.08em;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.shell--narrow { max-width: var(--shell-narrow); }

.section { padding-block: var(--section); position: relative; }

.section--warm { background: var(--paper-warm); }
.section--ink { background: var(--sumi); color: rgba(250, 237, 228, 0.78); }
.section--ink h2, .section--ink h3 { color: var(--paper); }

/* --------------------------------------------------------------------------
   4. Japanese motifs
   -------------------------------------------------------------------------- */

/* Shoji lattice — a faint paper-screen grid used behind quiet sections. */
.shoji {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    repeating-linear-gradient(to right,  var(--line-soft) 0 1px, transparent 1px 6.5rem),
    repeating-linear-gradient(to bottom, var(--line-soft) 0 1px, transparent 1px 6.5rem);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 78%);
}

/* The soft sun disc from the logo. */
.sun-disc {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, var(--sakura-wash) 0%, rgba(251, 230, 222, 0.5) 45%, transparent 70%);
}

/* Vertical Japanese label — 縦書き */
.tategaki {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.42em;
  color: var(--sumi-faint);
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
}

/* Section eyebrow: hairline · kanji · latin label */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: var(--step--1);
}

.eyebrow::before {
  content: "";
  width: clamp(1.75rem, 5vw, 3.5rem);
  height: 1px;
  background: var(--sakura);
  flex: none;
}

.eyebrow__jp {
  font-family: var(--font-display);
  color: var(--hinoki);
  letter-spacing: 0.3em;
  font-size: 1em;
}

.eyebrow__en {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78em;
  font-weight: 500;
  color: var(--sumi-mute);
}

.section--ink .eyebrow__jp { color: var(--sakura-soft); }
.section--ink .eyebrow__en { color: rgba(250, 237, 228, 0.6); }

/* --------------------------------------------------------------------------
   5. Type helpers
   -------------------------------------------------------------------------- */

.display    { font-size: var(--step-4); }
.title      { font-size: var(--step-3); }
.subtitle   { font-size: var(--step-2); }
.lede {
  font-size: var(--step-1);
  line-height: 1.75;
  color: var(--sumi-soft);
  max-width: var(--measure);
}
.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1.25em; }
.muted { color: var(--sumi-mute); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */

.btn {
  --btn-bg: var(--sumi);
  --btn-fg: var(--paper);
  --btn-bd: var(--sumi);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary { --btn-bg: var(--sakura); --btn-bd: var(--sakura); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: #c06a61; --btn-bd: #c06a61; }

.btn--light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.55); }
.btn--light:hover { --btn-bg: #fff; --btn-fg: var(--sumi); --btn-bd: #fff; }

.btn--sm { padding: 0.7em 1.5em; }

/* Text link with an underline that draws in */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sumi);
  padding-bottom: 0.35em;
  background-image: linear-gradient(var(--sakura), var(--sakura));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 1px;
  transition: background-size 0.5s var(--ease-out), color 0.3s var(--ease);
}
.link-arrow:hover { color: var(--sakura); }
.link-arrow svg { transition: transform 0.4s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(0.35em); }

/* --------------------------------------------------------------------------
   7. Site header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  /* Above .nav-panel (110) so the toggle stays tappable while the menu is
     open, below .lightbox (300) so the viewer covers it. */
  z-index: 130;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease),
              border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

/* Over the hero photo — no background of its own; the hero scrim darkens the
   top of the image, so the header has no edge to give itself away. */
.site-header--over { background: none; }
.site-header--over .nav__link,
.site-header--over .nav__toggle,
.site-header--over .site-header__phone { color: rgba(255,255,255,0.92); }
.site-header--over .brand__name { color: #fff; }
.site-header--over .brand__jp { color: rgba(255,255,255,0.6); }
.site-header--over .nav__link::after { background: rgba(255,255,255,0.85); }

/* Two marks ship: the full-colour logo for the cream header, a cream
   silhouette for when the header floats over the hero photograph. */
.brand__mark--light { display: none; }
.site-header--over .brand__mark--dark { display: none; }
.site-header--over .brand__mark--light { display: block; }

/* Scrolled / solid */
.site-header--solid {
  background: rgba(250, 237, 228, 0.9);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line-soft);
}

.site-header__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand__mark {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  flex: none;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--sumi);
  transition: color 0.45s var(--ease);
}

.brand__jp {
  font-family: var(--font-display);
  font-size: 0.625rem;
  letter-spacing: 0.34em;
  color: var(--sumi-faint);
  transition: color 0.45s var(--ease);
}

/* --- desktop nav --- */
.nav { display: none; }

@media (min-width: 62em) {
  .nav {
    display: flex;
    align-items: center;
    /* Tight enough that Russian and Vietnamese labels still fit on one row. */
    gap: clamp(0.8rem, 1.9vw, 2.2rem);
  }
}

.nav__link {
  position: relative;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--sumi-soft);
  padding-block: 0.4rem;
  transition: color 0.3s var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sakura);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--sumi); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }

.site-header__phone {
  display: none;
  font-size: var(--step--1);
  letter-spacing: 0.08em;
  color: var(--sumi-soft);
}
@media (min-width: 82em) {
  .site-header__phone { display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap; }
}

.site-header .btn { display: none; }
@media (min-width: 62em) { .site-header .btn { display: inline-flex; } }

/* --- language switcher --- */

/* A <details> element, so the menu opens and closes with no JavaScript. */
.lang { position: relative; }
.lang--desktop { display: none; }
@media (min-width: 62em) { .lang--desktop { display: block; } }

.lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 0.8em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sumi-soft);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.lang__toggle::-webkit-details-marker { display: none; }
.lang__toggle:hover { border-color: var(--line-strong); }

.lang__toggle svg:last-child { transition: transform 0.3s var(--ease); }
.lang[open] .lang__toggle svg:last-child { transform: rotate(180deg); }

.site-header--over .lang__toggle {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.35);
}
.site-header--over .lang__toggle:hover { border-color: rgba(255, 255, 255, 0.7); }

.lang__menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 10;
  min-width: 11rem;
  padding: 0.4rem;
  background: var(--paper-clean);
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -18px rgba(36, 29, 25, 0.35);
}

.lang__menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: var(--step--1);
  color: var(--sumi-soft);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.lang__menu a:hover { background: var(--paper-warm); color: var(--sumi); }
.lang__menu a[aria-current="true"] {
  color: var(--sumi);
  font-weight: 500;
  background: var(--paper-warm);
}
.lang__menu a[aria-current="true"]::after {
  content: "·";
  margin-left: 0.5em;
  color: var(--sakura);
}

/* Language list inside the mobile panel */
.nav-panel__langs { margin-top: 2.25rem; }

.lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.lang-list a {
  display: inline-block;
  padding: 0.45em 0.9em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--step--1);
  color: var(--sumi-soft);
}
.lang-list a[aria-current="true"] {
  background: var(--sumi);
  border-color: var(--sumi);
  color: var(--paper);
}

/* --- mobile toggle --- */
.nav__toggle {
  position: relative;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  color: var(--sumi);
}
@media (min-width: 62em) { .nav__toggle { display: none; } }

/* All three bars share one centre point, so the open state rotates two of them
   about the same origin and they cross exactly. */
.nav__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.375rem;
  height: 1px;
  margin: -0.5px 0 0 -0.6875rem;
  background: currentColor;
  transition: transform 0.4s var(--ease-out), opacity 0.25s var(--ease);
}
.nav__toggle span:nth-child(1) { transform: translateY(-0.34rem); }
.nav__toggle span:nth-child(3) { transform: translateY(0.34rem); }

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* --- mobile panel --- */
.nav-panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 3rem;
  background: var(--paper);
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out), visibility 0.6s;
  visibility: hidden;
  overflow-y: auto;
}
.nav-panel[data-open="true"] { transform: translateY(0); visibility: visible; }
@media (min-width: 62em) { .nav-panel { display: none; } }

.nav-panel__list { display: flex; flex-direction: column; gap: 0.25rem; }

.nav-panel__link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.7rem;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--sumi);
}

.nav-panel__link span {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  color: var(--sumi-faint);
  text-transform: uppercase;
}

.nav-panel__foot {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #241d19;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  animation: heroDrift 26s var(--ease) forwards;
}

@keyframes heroDrift {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(20,15,12,0.62) 0%, rgba(20,15,12,0.18) 22%, rgba(20,15,12,0.30) 52%, rgba(20,15,12,0.86) 100%),
    linear-gradient(to right, rgba(20,15,12,0.62) 0%, rgba(20,15,12,0.28) 38%, transparent 68%);
}

.hero__inner {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding: calc(var(--nav-h) + 3rem) var(--gutter) clamp(3.5rem, 8vh, 6rem);
  color: #fff;
  position: relative;
}

.hero__jp {
  position: absolute;
  top: calc(var(--nav-h) + 2rem);
  right: var(--gutter);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.5em;
  font-size: 0.75rem;
  display: none;
}
@media (min-width: 48em) { .hero__jp { display: block; } }

.hero__jp::after {
  content: "";
  display: block;
  width: 1px;
  height: clamp(3rem, 12vh, 7rem);
  margin: 1.25rem auto 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: "";
  width: 2.5rem; height: 1px;
  flex: none;
  background: var(--sakura-soft);
}

/* The full "Private villa · Da Nang, Vietnam" line is wider than a small
   phone once letter-spaced; tighten it rather than let it wrap. */
@media (max-width: 26em) {
  .hero__eyebrow { letter-spacing: 0.18em; font-size: 0.625rem; gap: 0.65rem; }
  .hero__eyebrow::before { width: 1.5rem; }
}

.hero__title {
  font-size: var(--step-5);
  font-weight: 400;
  line-height: 1.02;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.hero__title em {
  display: block;
  font-style: normal;
  font-size: 0.42em;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--sakura-soft);
  margin-top: 1.1rem;
}

.hero__lede {
  max-width: 34ch;
  font-size: var(--step-1);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.25rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 3rem; }

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(1.25rem, 3.5vw, 2.75rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.22);
  max-width: 44rem;
}

.hero__fact {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding-block: 0.4rem;
  font-size: var(--step--1);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
}
.hero__fact b {
  font-family: var(--font-display);
  font-size: 1.35em;
  font-weight: 500;
  color: #fff;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@media (min-width: 62em) and (min-height: 44rem) { .hero__scroll { display: flex; } }

.hero__scroll i {
  display: block;
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* --- compact page hero (photos page) --- */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  background: var(--paper-warm);
  overflow: hidden;
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero .sun-disc {
  width: clamp(16rem, 34vw, 30rem);
  aspect-ratio: 1;
  top: -22%;
  right: -6%;
}

/* --------------------------------------------------------------------------
   9. Welcome / intro
   -------------------------------------------------------------------------- */

.intro {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (min-width: 62em) {
  .intro { grid-template-columns: 1fr 1.05fr; }
}

.intro__media { position: relative; }

.intro__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* second, smaller image tucked into the corner — asymmetry (不均整) */
.intro__inset {
  position: absolute;
  right: -1.25rem;
  bottom: -1.75rem;
  width: 42%;
  border: 0.5rem solid var(--paper);
  display: none;
}
@media (min-width: 40em) { .intro__inset { display: block; } }
.intro__inset img { aspect-ratio: 1; object-fit: cover; width: 100%; }

.intro__body .lede { margin-bottom: 1.75rem; }

.intro__signature {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.22em;
  color: var(--sumi-mute);
  text-transform: uppercase;
}
.intro__signature::before {
  content: "";
  width: 2rem; height: 1px; background: var(--line-strong);
}

/* --------------------------------------------------------------------------
   10. Stat / fact row
   -------------------------------------------------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
@media (min-width: 46em) { .facts { grid-template-columns: repeat(4, 1fr); } }

.fact {
  background: var(--paper);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1rem, 2.5vw, 1.75rem);
  text-align: center;
}
.section--warm .fact { background: var(--paper-warm); }

.fact__num {
  font-family: var(--font-display);
  font-size: var(--step-3);
  color: var(--sumi);
  line-height: 1;
  display: block;
}
.fact__label {
  display: block;
  margin-top: 0.65rem;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sumi-mute);
}
.fact__jp {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--sumi-faint);
}

/* --------------------------------------------------------------------------
   11. Signature strip — tall image columns
   -------------------------------------------------------------------------- */

.strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.5rem, 1.2vw, 1rem);
}
@media (min-width: 60em) { .strip { grid-template-columns: repeat(4, 1fr); } }

.strip__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  background: var(--paper-deep);
}
@media (min-width: 60em) {
  .strip__item { aspect-ratio: 3 / 4.6; }
  /* stagger every other column — 不均整 */
  .strip__item:nth-child(even) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }
}

.strip__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.strip__item:hover img { transform: scale(1.06); }

.strip__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,15,12,0.72) 0%, rgba(20,15,12,0.12) 42%, transparent 68%);
}

.strip__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  color: #fff;
}
.strip__caption b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 500;
  line-height: 1.2;
}
.strip__caption span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* --------------------------------------------------------------------------
   12. Spaces grid
   -------------------------------------------------------------------------- */

.spaces {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 40em) { .spaces { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68em) { .spaces { grid-template-columns: repeat(3, 1fr); } }

.space { display: flex; flex-direction: column; }

.space__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-deep);
  margin-bottom: 1.25rem;
}
.space__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.space:hover .space__media img { transform: scale(1.05); }

.space__index {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  padding: 0.55rem 0.9rem;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--hinoki);
}

.space__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.space__title { font-size: var(--step-2); }
.space__jp {
  font-family: var(--font-display);
  font-size: var(--step--1);
  letter-spacing: 0.26em;
  color: var(--sumi-faint);
  white-space: nowrap;
}
.space__text { font-size: var(--step--1); line-height: 1.75; color: var(--sumi-mute); }

.space__meta {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sumi-faint);
}

/* --------------------------------------------------------------------------
   13. Amenities
   -------------------------------------------------------------------------- */

.amenities {
  display: grid;
  gap: clamp(2rem, 4.5vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 44em) { .amenities { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 70em) { .amenities { grid-template-columns: repeat(3, 1fr); } }

.amenity-group__head {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.amenity-group__title {
  font-size: var(--step-1);
  font-weight: 500;
}
.amenity-group__jp {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: var(--sumi-faint);
}

.amenity-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding-block: 0.4rem;
  font-size: var(--step--1);
  color: var(--sumi-soft);
  line-height: 1.6;
}

.amenity-list li::before {
  content: "";
  flex: none;
  width: 5px; height: 5px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: var(--sakura-soft);
}

/* --------------------------------------------------------------------------
   14. Location
   -------------------------------------------------------------------------- */

.location {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 64em) { .location { grid-template-columns: 0.85fr 1.15fr; } }

.map-frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  overflow: hidden;
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(20rem, 46vw, 30rem);
  border: 0;
  filter: saturate(0.78) contrast(1.02);
}

.distances { border-top: 1px solid var(--line); }

.distance {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
}
.distance__name { font-size: var(--step-0); color: var(--sumi); }
.distance__name span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--sumi-faint);
  margin-top: 0.1rem;
}
.distance__value {
  font-family: var(--font-display);
  font-size: var(--step-0);
  color: var(--hinoki);
  white-space: nowrap;
}

.travel-notes {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 40em) { .travel-notes { grid-template-columns: repeat(2, 1fr); } }

.travel-note {
  padding: 1.25rem 1.4rem;
  background: var(--paper-clean);
  border: 1px solid var(--line-soft);
}
.travel-note b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-0);
  font-weight: 500;
  color: var(--sumi);
  margin-bottom: 0.3rem;
}
.travel-note p { font-size: var(--step--1); color: var(--sumi-mute); line-height: 1.65; }

.address-block {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.address-line {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  font-size: var(--step-0);
}
.address-line svg { flex: none; margin-top: 0.35em; color: var(--sakura); }
.address-line b {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sumi-faint);
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.address-line a:hover { color: var(--sakura); }

/* --------------------------------------------------------------------------
   15. Gallery teaser (home)
   -------------------------------------------------------------------------- */

/* Five tiles: a 2x2 lead image plus four singles fill a 4-column, 2-row grid
   exactly, so no cell is ever left empty. */
.teaser {
  display: grid;
  gap: clamp(0.5rem, 1.2vw, 0.875rem);
  grid-template-columns: repeat(2, 1fr);
}
.teaser__item:first-child { grid-column: span 2; }

@media (min-width: 56em) {
  .teaser {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(10rem, 1fr));
  }
  .teaser__item:first-child { grid-column: span 2; grid-row: span 2; }
}

.teaser__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--paper-deep);
}
@media (min-width: 56em) { .teaser__item { aspect-ratio: auto; } }

.teaser__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out), opacity 0.5s var(--ease);
}
.teaser__item:hover img { transform: scale(1.05); }

/* --------------------------------------------------------------------------
   16. Photos page — filters + grid
   -------------------------------------------------------------------------- */

.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(250, 237, 228, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-block: 1px solid var(--line-soft);
}

.filter-bar__inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-block: 0.9rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }

.filter {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  padding: 0.55em 1.15em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--step--1);
  letter-spacing: 0.1em;
  color: var(--sumi-soft);
  white-space: nowrap;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}
.filter em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.8em;
  letter-spacing: 0.16em;
  color: var(--sumi-faint);
  transition: color 0.35s var(--ease);
}
.filter:hover { border-color: var(--line-strong); }
.filter[aria-pressed="true"] {
  background: var(--sumi);
  border-color: var(--sumi);
  color: var(--paper);
}
.filter[aria-pressed="true"] em { color: var(--sakura-soft); }

.filter__count {
  font-size: 0.7em;
  color: var(--sumi-faint);
  font-variant-numeric: tabular-nums;
}
.filter[aria-pressed="true"] .filter__count { color: rgba(250,237,228,0.6); }

/* Grid */
.gallery {
  display: grid;
  gap: clamp(0.5rem, 1.4vw, 1rem);
  grid-template-columns: 1fr;
}
@media (min-width: 40em) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68em) { .gallery { grid-template-columns: repeat(3, 1fr); } }

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
  cursor: zoom-in;
  aspect-ratio: 3 / 2;
}

/* Portrait shots take a double-height cell on wider screens */
@media (min-width: 40em) {
  .shot[data-orient="portrait"] { aspect-ratio: 2 / 3; grid-row: span 2; }
}

.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), opacity 0.6s var(--ease);
}
.shot:hover img { transform: scale(1.045); }

.shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1.1rem 1rem;
  background: linear-gradient(to top, rgba(20,15,12,0.78), transparent);
  color: #fff;
  font-size: var(--step--1);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(0.5rem);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease-out);
}
.shot:hover figcaption,
.shot:focus-within figcaption { opacity: 1; transform: translateY(0); }

.shot figcaption em {
  display: block;
  font-style: normal;
  font-size: 0.6875rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sakura-soft);
  margin-bottom: 0.25rem;
}

/* A real button covering each thumbnail: the grid is then reachable and
   operable by keyboard, not just by mouse. */
.shot__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.shot__btn:focus-visible {
  outline: 2px solid var(--sakura);
  outline-offset: -4px;
  border-radius: 0;
}

/* Filtering */
.shot[hidden] { display: none; }

.gallery-empty {
  padding: 4rem 0;
  text-align: center;
  color: var(--sumi-mute);
}

/* --------------------------------------------------------------------------
   16b. House rules
   -------------------------------------------------------------------------- */

.rules-layout {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
@media (min-width: 62em) {
  .rules-layout { grid-template-columns: 16rem 1fr; }
}

/* Skimmable index; sticks alongside the rules on a wide screen. */
.rules-index { display: none; }
@media (min-width: 62em) {
  .rules-index {
    display: block;
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
  }
}

.rules-index ol { display: flex; flex-direction: column; gap: 0.1rem; }

.rules-index a {
  display: flex;
  gap: 0.7rem;
  padding: 0.4rem 0;
  font-size: var(--step--1);
  line-height: 1.4;
  color: var(--sumi-mute);
  transition: color 0.3s var(--ease);
}
.rules-index a:hover { color: var(--sakura); }
.rules-index a span {
  font-family: var(--font-display);
  color: var(--sumi-faint);
  flex: none;
  font-variant-numeric: tabular-nums;
}

.rules-list { display: flex; flex-direction: column; }

.rule {
  display: grid;
  gap: 0.35rem 1.5rem;
  grid-template-columns: 1fr;
  padding-block: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}
.rule:first-child { border-top: 0; padding-top: 0; }

@media (min-width: 40em) {
  .rule { grid-template-columns: auto 1fr; }
}

.rule__num {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1;
  color: var(--sakura);
  font-variant-numeric: tabular-nums;
  -webkit-user-select: none;
  user-select: none;
}
@media (min-width: 40em) {
  .rule__num { min-width: 2.5rem; padding-top: 0.15em; }
}

.rule__title {
  font-size: var(--step-1);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.rule__body p {
  font-size: var(--step--1);
  line-height: 1.75;
  color: var(--sumi-soft);
  max-width: 58ch;
}
.rule__body p + p { margin-top: 0.7rem; }

/* --------------------------------------------------------------------------
   17. Lightbox
   -------------------------------------------------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #14100d;
  opacity: 0;
  visibility: hidden;
  /* Hiding waits for the fade to finish; showing is instant, so focus can move
     into the dialog on the very next frame. */
  transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
}
.lightbox[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s var(--ease), visibility 0s;
}

.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: rgba(255,255,255,0.75);
  font-size: var(--step--1);
  letter-spacing: 0.16em;
}

.lightbox__count { font-variant-numeric: tabular-nums; }

.lightbox__close {
  display: grid;
  place-items: center;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

.lightbox__stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.lightbox__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  /* Clicks fall through to the stage, which closes the viewer. */
  pointer-events: none;
}
.lightbox__img[data-ready="true"] { opacity: 1; }

.lightbox__nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 3rem; height: 3rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(18,13,10,0.35);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.5); }
.lightbox__nav--prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.lightbox__nav--next { right: clamp(0.5rem, 2vw, 1.5rem); }

.lightbox__caption {
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 2rem;
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: var(--step--1);
  line-height: 1.5;
  min-height: 4.5rem;
}
.lightbox__caption em {
  display: block;
  font-style: normal;
  font-size: 0.6875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sakura-soft);
  margin-bottom: 0.35rem;
}

body[data-lightbox-open] { overflow: hidden; }

/* --------------------------------------------------------------------------
   18. Booking / contact
   -------------------------------------------------------------------------- */

.booking {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 62em) { .booking { grid-template-columns: 1fr 1fr; } }

.booking__media { position: relative; }
.booking__media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; }

.contact-grid {
  display: grid;
  gap: 1px;
  background: rgba(250, 237, 228, 0.16);
  border: 1px solid rgba(250, 237, 228, 0.16);
  margin-top: 2.25rem;
}
@media (min-width: 30em) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-cell {
  background: var(--sumi);
  padding: 1.35rem 1.5rem;
}
.contact-cell b {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(250, 237, 228, 0.5);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.contact-cell a, .contact-cell span {
  font-family: var(--font-display);
  font-size: var(--step-0);
  color: var(--paper);
  word-break: break-word;
}
.contact-cell a:hover { color: var(--sakura-soft); }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--paper-warm);
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}

.footer-grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 44em) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; align-items: flex-start; }
.footer-brand img { width: 8rem; }
.footer-brand p { font-size: var(--step--1); color: var(--sumi-mute); max-width: 34ch; }

.footer-title {
  font-size: 0.6875rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sumi-faint);
  font-weight: 500;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
}

.footer-list li { padding-block: 0.32rem; font-size: var(--step--1); }
.footer-list a { color: var(--sumi-soft); transition: color 0.3s var(--ease); }
.footer-list a:hover { color: var(--sakura); }

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--sumi-faint);
  letter-spacing: 0.06em;
}

/* Korean wraps at word boundaries, not between any two syllables. Set by the
   generated per-language <style> block via this hook. */
html[lang="ko"] body {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* --------------------------------------------------------------------------
   20. Reveal on scroll
   -------------------------------------------------------------------------- */

/* Content is visible by default. The hidden starting state is applied only
   after site.js has confirmed it can observe and restore it, so a script that
   never loads — or throws — can never leave the page blank. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js-reveal [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { animation: none; }
}

/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */

@media print {
  .site-header, .nav-panel, .filter-bar, .lightbox, .hero__scroll { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; }
}
