/* ==========================================================================
   SUSHILA — Redesign 2026
   Modern Japandi: washi paper, sumi ink, aka-iro accent
   Light / Dark themes + iOS-style glass nav + koi pond hero
   ========================================================================== */

:root {
  --paper: #f7f2e9;
  --paper-2: #efe7d8;
  --paper-3: #e9dfcc;
  --surface: #fffdf8;
  --ink: #1d1b18;
  --ink-2: #5b564e;
  --ink-3: #8a8478;
  --aka: #d74226;
  --aka-dark: #b33119;
  --gold: #b8945e;
  --line: rgba(29, 27, 24, 0.14);
  --line-soft: rgba(29, 27, 24, 0.08);
  --band-bg: #1d1b18;
  --band-fg: #f7f2e9;
  --band-fg-2: rgba(247, 242, 233, 0.65);
  --band-stroke: rgba(247, 242, 233, 0.08);
  --shadow-strong: rgba(29, 27, 24, 0.45);
  --shadow-soft: rgba(29, 27, 24, 0.25);
  --kanji-stroke: rgba(29, 27, 24, 0.09);

  --glass-bg: rgba(255, 253, 248, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-inset: rgba(255, 255, 255, 0.65);
  --glass-hover: rgba(29, 27, 24, 0.06);
  --glass-shadow: 0 18px 50px -18px rgba(29, 27, 24, 0.35);
  --stone: rgba(29, 27, 24, 0.08);
  --mist: rgba(247, 242, 233, 0.92);
  --water-deep: rgba(78, 130, 122, 0.2);
  --water-edge: rgba(106, 152, 142, 0.07);

  --radius: 18px;
  --header-h: 86px;
  --font-display: "Playfair Display", "Times New Roman", serif;
  --font-body: "Be Vietnam Pro", "Helvetica Neue", Arial, sans-serif;
  --font-jp: "Noto Serif JP", serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --paper: #15130f;
  --paper-2: #1c1914;
  --paper-3: #262218;
  --surface: #1f1c16;
  --ink: #f0e9dc;
  --ink-2: #b5ab99;
  --ink-3: #7f786a;
  --aka: #e8552f;
  --aka-dark: #c43d1d;
  --gold: #c8a76d;
  --line: rgba(240, 233, 220, 0.16);
  --line-soft: rgba(240, 233, 220, 0.09);
  --band-bg: #0e0d0a;
  --band-fg: #f0e9dc;
  --band-fg-2: rgba(240, 233, 220, 0.6);
  --band-stroke: rgba(240, 233, 220, 0.08);
  --shadow-strong: rgba(0, 0, 0, 0.7);
  --shadow-soft: rgba(0, 0, 0, 0.5);
  --kanji-stroke: rgba(240, 233, 220, 0.1);

  --glass-bg: rgba(26, 23, 18, 0.55);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-inset: rgba(255, 255, 255, 0.08);
  --glass-hover: rgba(255, 255, 255, 0.07);
  --glass-shadow: 0 18px 50px -14px rgba(0, 0, 0, 0.65);
  --stone: rgba(240, 233, 220, 0.1);
  --mist: rgba(21, 19, 15, 0.92);
  --water-deep: rgba(46, 92, 88, 0.3);
  --water-edge: rgba(34, 66, 64, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  transition: background 0.5s, color 0.5s;
}

/* washi grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
b, strong { font-weight: 700; }

/* iOS Safari paints its own button chrome unless appearance is reset */
button {
  -webkit-appearance: none;
  appearance: none;
  font: inherit;
  color: inherit;
}

::selection { background: var(--aka); color: #fff; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.container--narrow { max-width: 880px; }

/* ==========================================================================
   Typography
   ========================================================================== */

.section-head { margin-bottom: 56px; position: relative; }
.section-head--center { text-align: center; }

.section-head .kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aka);
  margin-bottom: 18px;
}
.section-head .kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--aka);
}
.section-head--center .kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--aka);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-sub {
  max-width: 700px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 15.5px;
}
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

/* big kanji watermark */
.kanji-mark {
  position: absolute;
  top: -0.35em;
  right: 0;
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: clamp(120px, 16vw, 230px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--kanji-stroke);
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.section-head--center .kanji-mark {
  right: 50%;
  transform: translateX(50%);
}

.v-text {
  writing-mode: vertical-rl;
  font-family: var(--font-jp);
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--ink-3);
  font-size: 13px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn--aka { border-color: var(--aka); color: #fff; }
.btn--aka::before { background: var(--aka); transform: scaleX(1); }
.btn--aka:hover { color: var(--aka); }
.btn--aka:hover::before { transform: scaleX(0); transform-origin: right; }

.btn .arrow { transition: transform 0.4s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

/* ==========================================================================
   Header — "stepping stones on water": no card, just a mist scrim;
   items surface like pebbles with a ripple on hover
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 26px 34px;
  background: linear-gradient(to bottom, var(--mist) 0%, transparent 100%);
  transition: transform 0.55s var(--ease-out), background 0.5s, padding 0.4s;
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-scrolled {
  padding-bottom: 16px;
  background: var(--mist);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 1px 0 var(--line-soft);
}

.glass-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 32px; width: auto; }
[data-theme="dark"] .brand img { filter: invert(0.92) hue-rotate(180deg) saturate(0); }

.nav { display: flex; align-items: center; gap: 6px; }

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 17px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.35s;
  isolation: isolate;
}
/* the pebble that surfaces under the item */
.nav__link::before {
  content: "";
  position: absolute;
  inset: 1px 0;
  z-index: -1;
  background: var(--stone);
  border-radius: 52% 48% 44% 56% / 46% 58% 42% 54%;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out);
}
.nav > .nav__link:nth-child(odd)::before,
.nav__group:nth-child(odd) .nav__link::before {
  border-radius: 45% 55% 57% 43% / 56% 44% 58% 42%;
}
.nav__link:hover::before { opacity: 1; transform: scale(1); }
/* water ring rippling out on hover */
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115%;
  aspect-ratio: 2.2 / 1;
  border: 1px solid var(--aka);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  pointer-events: none;
}
.nav__link:hover::after { animation: navRipple 0.9s var(--ease-out); }
@keyframes navRipple {
  0% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.55); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.3); }
}
.nav__link.active { color: #fff; }
.nav__link.active::before {
  opacity: 1;
  transform: scale(1);
  background: var(--aka);
  box-shadow: 0 12px 26px -10px var(--aka);
}

.nav__caret {
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s;
}

.nav__group { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 14px);
  min-width: 286px;
  padding: 10px;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  backdrop-filter: blur(28px) saturate(1.8);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-inset);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
/* hover bridge so the dropdown doesn't close crossing the gap */
.nav__group::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 16px;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav__group:hover .nav__caret { transform: rotate(225deg) translateY(-2px); }

.nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 16px;
  transition: background 0.25s, color 0.25s;
}
.nav__dropdown a::after {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
  color: var(--aka);
}
.nav__dropdown a:hover { background: var(--glass-hover); color: var(--aka); }
.nav__dropdown a.active { background: var(--glass-hover); color: var(--aka); }
.nav__dropdown a:hover::after { opacity: 1; transform: translateX(0); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  background: var(--aka);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 48% 52% 55% 45% / 60% 52% 48% 40%;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 24px -10px var(--aka);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, border-radius 0.5s var(--ease-out);
}
.nav__cta:hover { border-radius: 55% 45% 47% 53% / 45% 55% 50% 50%; }
.nav__cta:hover {
  transform: translateY(-2px);
  background: var(--aka-dark);
  box-shadow: 0 14px 28px -10px var(--aka);
}

/* theme toggle */
.theme-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 47% 53% 55% 45% / 52% 46% 54% 48%;
  background: var(--stone);
  cursor: pointer;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.4s var(--ease-out);
  flex: 0 0 auto;
}
.theme-toggle:hover { transform: rotate(24deg); }
.theme-toggle svg {
  width: 19px;
  height: 19px;
  position: absolute;
  transition: opacity 0.35s, transform 0.5s var(--ease-out);
}
.theme-toggle .ic-sun { opacity: 0; transform: scale(0.4) rotate(-90deg); }
.theme-toggle .ic-moon { opacity: 1; transform: scale(1); }
[data-theme="dark"] .theme-toggle .ic-sun { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="dark"] .theme-toggle .ic-moon { opacity: 0; transform: scale(0.4) rotate(90deg); }

/* burger */
/* Safari can't flex-layout <button> children — the bars are positioned
   absolutely so they render everywhere */
.burger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--stone);
  border: 0;
  border-radius: 53% 47% 45% 55% / 48% 56% 44% 52%;
  cursor: pointer;
  flex: 0 0 auto;
}
.burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 26px; }

/* mobile drawer (glass) */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(10, 9, 7, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.drawer {
  position: fixed;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 120;
  width: min(380px, 90vw);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(34px) saturate(1.8);
  backdrop-filter: blur(34px) saturate(1.8);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--glass-inset);
  transform: translateX(calc(100% + 20px));
  transition: transform 0.55s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 26px;
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.drawer__head img { height: 30px; }
[data-theme="dark"] .drawer__head img { filter: invert(0.92) hue-rotate(180deg) saturate(0); }
.drawer__close {
  width: 42px; height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass-hover);
  cursor: pointer;
  position: relative;
}
.drawer__close::before,
.drawer__close::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 17px; height: 1.5px;
  background: var(--ink);
}
.drawer__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.drawer__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

.drawer__nav { display: flex; flex-direction: column; }
.drawer__link,
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 6px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  cursor: pointer;
  text-align: left;
}
.drawer__link.active { color: var(--aka); }
/* same Safari button-flex bug: lay the toggle out as a block instead */
.drawer__toggle {
  display: block;
  position: relative;
  text-align: left;
  padding-right: 32px;
}
.drawer__toggle .nav__caret {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s;
}
.drawer__group.open .drawer__toggle .nav__caret {
  transform: translateY(-30%) rotate(225deg);
}
.drawer__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}
.drawer__group.open .drawer__sub { max-height: 300px; }
.drawer__sub a {
  display: block;
  padding: 13px 6px 13px 22px;
  font-size: 15.5px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
}
.drawer__sub a.active { color: var(--aka); }

/* ==========================================================================
   Hero (home) — koi pond
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 30px) 0 60px;
  /* a soft teal wash — the pond water under everything */
  background:
    radial-gradient(115% 95% at 55% 62%, var(--water-deep) 0%, var(--water-edge) 58%, transparent 100%);
  transition: background 0.5s;
}

#koi-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5; /* the pond stays an undertone — text always wins */
}
[data-theme="dark"] #koi-canvas { opacity: 0.45; }
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.hero__jp {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  font-size: 14px;
  letter-spacing: 0.6em;
  opacity: 0.55;
}

.hero__content { position: relative; z-index: 3; padding-left: clamp(0px, 4vw, 56px); }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--aka);
  margin-bottom: 26px;
}
.hero__eyebrow .dot {
  width: 9px; height: 9px;
  background: var(--aka);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 66, 38, 0.45); }
  60% { box-shadow: 0 0 0 12px rgba(215, 66, 38, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6.2vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero__title .accent {
  display: block;
  color: var(--aka);
  font-style: italic;
  font-weight: 600;
  font-size: 0.42em;
  letter-spacing: 0.01em;
  margin-top: 18px;
}

.hero__desc {
  max-width: 430px;
  margin: 24px 0 38px;
  font-size: 15.5px;
  color: var(--ink-2);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__figure {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(100%, 540px);
}
.hero__figure .frame {
  position: relative;
  border-radius: 270px 270px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  box-shadow: 0 60px 90px -40px var(--shadow-strong);
}
.hero__figure .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-out);
}
.hero:hover .hero__figure .frame img { transform: scale(1.02); }

.hero__figure .sun {
  position: absolute;
  top: -7%;
  left: -16%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e8542f, var(--aka) 70%);
  opacity: 0.92;
  z-index: -1;
  animation: float 7s ease-in-out infinite;
}
.hero__figure .ring {
  position: absolute;
  bottom: -9%;
  right: -13%;
  width: 50%;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: -1;
  animation: float 9s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero__stamp {
  position: absolute;
  bottom: 8%;
  left: -24px;
  width: 68px;
  height: 68px;
  background: var(--aka);
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 23px;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 18px 36px -12px rgba(215, 66, 38, 0.55);
  transform: rotate(-7deg);
}

.hero__scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero__scroll .line {
  width: 1px;
  height: 44px;
  background: var(--ink-3);
  overflow: hidden;
  position: relative;
}
.hero__scroll .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--aka);
  animation: scrollLine 1.8s var(--ease-out) infinite;
}
@keyframes scrollLine {
  to { top: 100%; }
}

/* ==========================================================================
   Marquee divider
   ========================================================================== */

.marquee {
  position: relative;
  z-index: 2;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 56px;
  padding-right: 56px;
  flex: 0 0 auto;
}
.marquee span {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  white-space: nowrap;
}
.marquee span::after {
  content: "●";
  font-size: 8px;
  color: var(--aka);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section { position: relative; padding: clamp(80px, 11vw, 150px) 0; }
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.section--shade { background: var(--paper-2); }

/* --- Space / không gian quán --- */
.space__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.space__media { position: relative; }
.space__media .photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
}
.space__media .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.space__media:hover .photo img { transform: scale(1.05); }
.space__media .v-text {
  position: absolute;
  top: 24px;
  right: -34px;
}
.space__media::after {
  content: "";
  position: absolute;
  inset: 26px -26px -26px 26px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.space__body .section-head { margin-bottom: 30px; }
.space__text { color: var(--ink-2); font-size: 17px; margin-bottom: 38px; }

/* --- Perks --- */
.perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(60px, 8vw, 100px);
}
.perk {
  position: relative;
  padding: 36px 26px 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
  overflow: hidden;
}
.perk::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--aka);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.perk:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -25px var(--shadow-soft);
  border-color: transparent;
}
.perk:hover::before { transform: scaleX(1); }
.perk__icon {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border-radius: 50%;
}
.perk__icon img { width: 26px; height: 26px; }
.perk__text { font-size: 13.5px; font-weight: 500; line-height: 1.6; }

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery a {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: zoom-in;
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}
.gallery a::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 242, 233, 0.92);
  border-radius: 50%;
  font-size: 20px;
  color: #1d1b18;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}
.gallery a:hover::after { opacity: 1; transform: translateY(0); }
.gallery a:hover img { transform: scale(1.07); }

/* --- Services --- */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.service-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 11;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 18, 15, 0.82) 0%, rgba(20, 18, 15, 0.18) 45%, transparent 70%);
  z-index: 1;
  transition: background 0.5s;
}
.service-card:hover img { transform: scale(1.06); }
.service-card__body {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 26px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}
.service-card__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}
.service-card__arrow {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.4s, color 0.4s, transform 0.4s var(--ease-out);
}
.service-card:hover .service-card__arrow {
  background: var(--aka);
  border-color: var(--aka);
  transform: rotate(-45deg);
}

/* ==========================================================================
   Page hero (subpages)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(50px, 8vw, 110px)) 0 clamp(50px, 7vw, 90px);
  overflow: hidden;
}
.page-hero .kanji-bg {
  position: absolute;
  top: var(--header-h);
  right: -2%;
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: clamp(160px, 24vw, 360px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--kanji-stroke);
  pointer-events: none;
  user-select: none;
}
.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--aka);
  margin-bottom: 18px;
}
.page-hero__kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--aka);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 16em;
}
.page-hero__desc {
  max-width: 680px;
  margin-top: 22px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.page-hero__desc .link { color: var(--aka); font-weight: 600; }
.page-hero__desc .link:hover { text-decoration: underline; }

.page-hero__banner {
  margin-top: clamp(40px, 6vw, 70px);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 8;
}
.page-hero__banner img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ==========================================================================
   Branch cards (menu page)
   ========================================================================== */

.branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.branch-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.branch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 60px -30px var(--shadow-soft);
}
.branch-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.branch-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.branch-card:hover .branch-card__media img { transform: scale(1.06); }
.branch-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 16px;
  background: var(--aka);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}
.branch-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  padding: 28px;
}
.branch-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}
.branch-card__row {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}
.branch-card__row .label { flex: 0 0 auto; font-weight: 600; color: var(--ink); }
.branch-card__row a { color: var(--aka); font-weight: 600; }
.branch-card__body .btn { margin-top: 22px; align-self: stretch; }

/* hotline cards (booking) */
.hotlines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.hotline-card {
  position: relative;
  display: block;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.hotline-card::after {
  content: "☎";
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 22px;
  opacity: 0.18;
  transition: opacity 0.3s, color 0.3s;
}
.hotline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -28px var(--shadow-soft);
}
.hotline-card:hover::after { opacity: 1; color: var(--aka); }
.hotline-card__label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hotline-card__branch {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hotline-card__phone {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 29px);
  font-weight: 600;
  color: var(--aka);
  margin: 8px 0 10px;
}
.hotline-card__addr { font-size: 14px; color: var(--ink-2); }

/* ==========================================================================
   Promo rows
   ========================================================================== */

.promo-list { display: flex; flex-direction: column; gap: clamp(50px, 7vw, 90px); }
.promo {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
.promo:nth-child(even) .promo__media { order: 2; }
.promo__media {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
}
.promo__media img {
  width: 100%;
  transition: transform 0.9s var(--ease-out);
}
.promo__media:hover img { transform: scale(1.04); }
.promo__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--aka);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.promo__num::after {
  content: "";
  width: 48px; height: 1px;
  background: var(--aka);
}
.promo__title {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 26px);
  font-weight: 600;
  line-height: 1.32;
  margin-bottom: 16px;
}
.promo__content { color: var(--ink-2); font-size: 14.5px; }
.promo__content p { margin-bottom: 6px; }
.promo__expired { color: var(--aka); font-weight: 600; margin-bottom: 10px; }

/* ==========================================================================
   Editorial (about / core value)
   ========================================================================== */

.editorial {
  max-width: 720px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--ink-2);
}
.editorial h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 26px);
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 28px;
}
.editorial p { margin-bottom: 24px; }
.editorial p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.4em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 6px 14px 0 0;
  color: var(--aka);
}
.editorial .list-dots { margin: 0 0 24px; }
.editorial .list-dots li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px dashed var(--line);
}
.editorial .list-dots li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 1.05em;
  width: 9px; height: 9px;
  background: var(--aka);
  border-radius: 50%;
}
.editorial .sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15em;
  color: var(--ink);
}

.about-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(50px, 7vw, 80px);
}
.about-collage figure {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 3.7;
}
.about-collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.about-collage figure:hover img { transform: scale(1.06); }

/* pull quote */
.pull-quote {
  position: relative;
  margin: 40px 0;
  padding: 30px 34px;
  background: var(--paper-2);
  border-left: 3px solid var(--aka);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2em;
  color: var(--ink);
}

/* ==========================================================================
   Photo grids (explore / membership)
   ========================================================================== */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.photo-grid a {
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
}
.photo-grid a.wide { aspect-ratio: 3 / 2; }
.photo-grid a.square { aspect-ratio: 1; }
.photo-grid a.tall { aspect-ratio: 3 / 4.2; }
.photo-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.photo-grid a:hover img { transform: scale(1.05); }
.photo-grid--3 { grid-template-columns: repeat(3, 1fr); }

.member-cards {
  display: grid;
  gap: 30px;
  max-width: 905px;
  margin: 0 auto;
}
.member-cards a {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 30px 60px -35px var(--shadow-soft);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.member-cards a:hover {
  transform: translateY(-6px);
  box-shadow: 0 44px 70px -35px var(--shadow-strong);
}

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0;
  background: var(--band-bg);
  color: var(--band-fg);
  overflow: hidden;
  text-align: center;
}
.cta-band .kanji-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-jp);
  font-size: clamp(200px, 30vw, 420px);
  color: transparent;
  -webkit-text-stroke: 1px var(--band-stroke);
  pointer-events: none;
  line-height: 1;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(25px, 3.2vw, 40px);
  font-weight: 600;
  margin-bottom: 14px;
}
.cta-band__sub {
  color: var(--band-fg-2);
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 15px;
}
.cta-band .btn { border-color: var(--band-stroke); color: var(--band-fg); border-color: rgba(247,242,233,0.5); }
.cta-band .btn::before { background: var(--aka); }
.cta-band .btn:hover { color: #fff; border-color: var(--aka); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  z-index: 2;
  background: #14120f;
  color: rgba(247, 242, 233, 0.78);
  padding: clamp(70px, 9vw, 110px) 0 0;
  overflow: hidden;
}
[data-theme="dark"] .site-footer { background: #0b0a08; }
.site-footer .container { z-index: 2; }

.footer-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(247, 242, 233, 0.12);
  margin-bottom: 56px;
}
.footer-head__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 600;
  color: #f7f2e9;
  line-height: 1.05;
}
.footer-head__title .jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.32em;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--aka);
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 12px; }
.icon-btn {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 242, 233, 0.22);
  border-radius: 50%;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease-out);
}
.icon-btn img { width: 21px; height: 21px; filter: brightness(0) invert(1); }
.icon-btn:hover {
  background: var(--aka);
  border-color: var(--aka);
  transform: translateY(-4px);
}
.icon-btn--app { width: 46px; height: 46px; }
.icon-btn--app img { filter: none; width: 24px; height: 24px; }

.footer-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
  padding-bottom: 70px;
}
.f-branch__num {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--aka);
  margin-bottom: 12px;
}
.f-branch__num::after {
  content: "";
  width: 30px; height: 1px;
  background: rgba(215, 66, 38, 0.6);
}
.f-branch__addr {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: #f7f2e9;
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 2.8em;
}
.f-branch__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  margin-bottom: 18px;
}
.f-branch__meta .row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.f-branch__meta img { width: 17px; height: 17px; filter: brightness(0) invert(0.85); }
.f-branch__meta a { color: #f7f2e9; font-weight: 600; }
.f-branch__meta a:hover { color: var(--aka); }
.f-branch__apps { display: flex; gap: 10px; }

.footer-bottom {
  position: relative;
  padding: 26px 0;
  border-top: 1px solid rgba(247, 242, 233, 0.1);
  text-align: center;
  font-size: 13.5px;
  letter-spacing: 0.12em;
  color: rgba(247, 242, 233, 0.45);
}

.footer-wordmark {
  position: absolute;
  bottom: -0.36em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(110px, 19vw, 290px);
  line-height: 1;
  color: rgba(247, 242, 233, 0.045);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lb {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 16, 13, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.lb.open { opacity: 1; visibility: visible; }
.lb img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-out);
}
.lb.open img { transform: scale(1); }
.lb__btn {
  position: absolute;
  width: 52px; height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.lb__btn:hover { background: var(--aka); border-color: var(--aka); }
.lb__close { top: 26px; right: 26px; }
.lb__prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb__next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb__count {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  letter-spacing: 0.22em;
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-img {
  position: relative;
  overflow: hidden;
}
.reveal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--paper-3);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
  z-index: 3;
}
.reveal-img.in::after { transform: scaleY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img::after { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .reveal-img::after { display: none; }
  .marquee__track { animation: none; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .nav { display: none; }
  .nav__cta { display: none; }
  .burger { display: inline-block; }
  .hero__jp { display: none; }
}

@media (max-width: 920px) {
  :root { --header-h: 80px; }

  /* the full-screen grain layer costs composite memory on phones */
  body::before { display: none; }

  .site-header { padding: 12px 16px 22px; }
  .site-header.is-scrolled { padding-bottom: 12px; }

  .hero { min-height: auto; padding-bottom: 90px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { padding-left: 0; }
  .hero__figure { justify-self: center; width: min(100%, 440px); }
  .hero__stamp { left: auto; right: -14px; }
  .hero__scroll { display: none; }

  .space__grid { grid-template-columns: 1fr; }
  .space__media { order: -1; }
  .space__media::after { display: none; }
  .space__media .v-text { display: none; }
  .space__media .photo { aspect-ratio: 4 / 3; }

  .perks { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .branches { grid-template-columns: 1fr; }
  .hotlines { grid-template-columns: 1fr; }
  .promo,
  .promo:nth-child(even) { grid-template-columns: 1fr; }
  .promo:nth-child(even) .promo__media { order: 0; }
  .about-collage { grid-template-columns: 1fr 1fr; }
  .photo-grid,
  .photo-grid--3 { grid-template-columns: 1fr 1fr; }
  .footer-branches { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }
  .perks { grid-template-columns: 1fr 1fr; gap: 12px; }
  .perk { padding: 26px 16px 24px; }
  .gallery { gap: 10px; }
  .photo-grid,
  .photo-grid--3 { grid-template-columns: 1fr; }
  .footer-branches { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .branch-card__body { padding: 22px; }
  .lb__prev { left: 12px; }
  .lb__next { right: 12px; }
}
