/* ══════════════════════════════════════════
   VILLA CARCARE — style.css  v3.0
   ══════════════════════════════════════════ */

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

:root {
  --ink:    #05050A;
  --fog:    #0f0f18;
  --gold:   #c8a84b;
  --gold2:  #e8ca76;
  --white:  #f0ece2;
  --body:   rgba(240,236,226,.85);
  --muted:  #b8b4ae;
  --dim:    rgba(184,180,174,.6);
  --line:   rgba(200,168,75,.12);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --font-body:    'Noto Sans JP', sans-serif;

  --fs-xs:   16px;
  --fs-sm:   16px;
  --fs-base: 16px;
  --fs-md:   17px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-base);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  /* bottom padding for mobile CTA bar */
  padding-bottom: 0;
}
/* タッチデバイスはデフォルトカーソルを使用 */
@media (hover: none) {
  body, a, button { cursor: auto; }
  #cdot, #cring { display: none !important; }
}

/* ── GRAIN ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 9500;
  animation: grainShift 8s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,-1%); }
  50%  { transform: translate(1%,2%); }
  75%  { transform: translate(-1%,1%); }
  100% { transform: translate(2%,-2%); }
}

/* ── SCANLINES ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,.05) 3px, rgba(0,0,0,.05) 4px);
  pointer-events: none;
  z-index: 9400;
}

/* ── CANVAS & MOUSE LIGHT ── */
#bg-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
#mouse-light {
  position: fixed; width: 500px; height: 500px; border-radius: 50%;
  pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(200,168,75,.06) 0%, transparent 70%);
  transform: translate(-50%,-50%);
}

/* ══════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.ld-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.ld-logo { font-family: var(--font-display); font-size: clamp(40px,8vw,88px); font-weight: 800; letter-spacing: .1em; line-height: 1; }
.ld-logo em { color: var(--gold); font-style: normal; }
.ld-bar { width: 200px; height: 1px; background: rgba(255,255,255,.08); overflow: hidden; }
.ld-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; }
.ld-pct { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--muted); letter-spacing: .2em; }

/* ══════════════════════════════════════════
   CURSOR
   ══════════════════════════════════════════ */
#cdot, #cring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 8500; }
#cdot { width: 6px; height: 6px; background: var(--white); border-radius: 50%; transform: translate(-50%,-50%); mix-blend-mode: difference; }
#cring { width: 36px; height: 36px; border: 1px solid rgba(200,168,75,.4); border-radius: 50%; transform: translate(-50%,-50%); transition: width .4s cubic-bezier(.16,1,.3,1), height .4s cubic-bezier(.16,1,.3,1), border-color .3s; }
#cring.big   { width: 60px; height: 60px; border-color: var(--gold); }
#cring.click { width: 16px; height: 16px; background: rgba(200,168,75,.2); }

/* ── PROGRESS ── */
#prog { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); z-index: 7000; width: 0; }

/* ══════════════════════════════════════════
   MOBILE FIXED CTA BAR
   ══════════════════════════════════════════ */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 600;
  background: rgba(5,5,10,.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  padding: 10px 16px 10px;
  gap: 10px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
.mobile-cta-tel,
.mobile-cta-form {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 12px 0;
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: 600;
  text-decoration: none; border-radius: 0;
  flex: 1;
}
.mobile-cta-tel {
  background: var(--fog);
  border: 1px solid var(--line);
  color: var(--white);
}
.mobile-cta-form {
  background: var(--gold);
  color: var(--ink);
}

/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 48px;
  transition: all .5s cubic-bezier(.16,1,.3,1);
  border-bottom: 1px solid transparent;
}
nav.stuck {
  padding: 13px 48px;
  background: rgba(5,5,10,.96);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
}
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 800; letter-spacing: .14em; color: var(--white); text-decoration: none; text-transform: uppercase; }
.nav-logo em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: .1em; color: var(--muted); text-decoration: none; transition: color .3s; text-transform: uppercase; }

.nbtn {
  display: inline-block;
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 10px 22px; text-decoration: none; cursor: none;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.nbtn::after { content: ''; position: absolute; inset: 0; background: var(--gold2); transform: translateX(-101%); transition: transform .4s cubic-bezier(.76,0,.24,1); }
.nbtn:hover::after { transform: translateX(0); }
.nbtn span { position: relative; z-index: 1; }

.nav-ham { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 1px; background: var(--white); transition: all .3s; }
.nav-ham.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.nav-ham.open span:nth-child(2) { opacity: 0; }
.nav-ham.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(5,5,10,.98);
  flex-direction: column; align-items: flex-start; justify-content: center;
  padding: 80px 32px 32px; gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--white); text-decoration: none; transition: color .3s; letter-spacing: .1em; text-transform: uppercase; }
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .nav-mobile-cta { margin-top: 8px; font-size: 18px; background: var(--gold); color: var(--ink); padding: 14px 28px; text-transform: uppercase; }

/* ══════════════════════════════════════════
   PHOTO PLACEHOLDER (共通)
   ══════════════════════════════════════════ */
.photo-placeholder {
  width: 100%; height: 100%;
  background: rgba(15,15,24,.8);
  border: 1px dashed rgba(200,168,75,.25);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: rgba(200,168,75,.4);
  transition: border-color .3s, background .3s;
}
.photo-placeholder:hover { border-color: rgba(200,168,75,.5); background: rgba(20,20,32,.9); }
.photo-placeholder.after { border-color: rgba(200,168,75,.4); }
.photo-ph-icon { opacity: .5; }
.photo-ph-txt { font-family: var(--font-mono); font-size: var(--fs-xs); color: var(--muted); text-align: center; line-height: 1.6; letter-spacing: .06em; }
.photo-placeholder span { font-family: var(--font-mono); font-size: 16px; letter-spacing: .2em; color: var(--gold); }

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
/* ── HERO 背景画像 ── */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('images/img_hero.jpg') center center / cover no-repeat;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5,5,10,.72) 0%,
    rgba(5,5,10,.52) 50%,
    rgba(5,5,10,.18) 100%
  );
}

.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 96px 56px 80px;
  overflow: hidden; z-index: 2;
}

.hero-lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-lines::before {
  content: ''; position: absolute;
  top: -20%; right: 14%; width: 1px; height: 180%;
  background: linear-gradient(to bottom, transparent, rgba(200,168,75,.18) 30%, rgba(200,168,75,.35) 50%, rgba(200,168,75,.18) 70%, transparent);
  transform: rotate(-14deg);
}
.hero-lines::after {
  content: ''; position: absolute;
  top: -20%; right: 28%; width: 1px; height: 180%;
  background: linear-gradient(to bottom, transparent, rgba(200,168,75,.07) 40%, rgba(200,168,75,.13) 55%, rgba(200,168,75,.07) 70%, transparent);
  transform: rotate(-14deg);
}

.hero-bracket { position: absolute; width: 40px; height: 40px; pointer-events: none; }
.hero-bracket.tl { top: 84px;   left: 48px;  border-top: 1px solid rgba(200,168,75,.3); border-left:  1px solid rgba(200,168,75,.3); }
.hero-bracket.tr { top: 84px;   right: 48px; border-top: 1px solid rgba(200,168,75,.3); border-right: 1px solid rgba(200,168,75,.3); }
.hero-bracket.bl { bottom: 72px; left: 48px;  border-bottom: 1px solid rgba(200,168,75,.3); border-left: 1px solid rgba(200,168,75,.3); }
.hero-bracket.br { bottom: 72px; right: 48px; border-bottom: 1px solid rgba(200,168,75,.3); border-right: 1px solid rgba(200,168,75,.3); }

.hero-hlines { position: absolute; top: 0; right: 0; bottom: 0; width: 40%; pointer-events: none; }
.hero-hlines span { position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(200,168,75,.04)); }

.hgrid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,168,75,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(200,168,75,.018) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hbg {
  position: absolute;
  font-family: var(--font-display); font-size: clamp(100px,18vw,240px); font-weight: 900;
  color: rgba(200,168,75,.022); white-space: nowrap; line-height: 1;
  bottom: -8px; left: -4px; user-select: none;
}
.hvert {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: .28em; color: var(--muted);
  writing-mode: vertical-rl; display: flex; align-items: center; gap: 14px;
}
.hvert::before { content: ''; width: 1px; height: 36px; background: var(--gold); flex-shrink: 0; }

/* Hero grid: copy left, photo right */
.hero-main {
  position: relative; z-index: 2;
  display: block;
  max-width: 660px;
}
.hero-copy {}

.hsub {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 500;
  color: var(--gold); letter-spacing: .08em; margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px; opacity: 0;
}
.hsub::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.hh1 {
  font-family: var(--font-display); font-size: clamp(28px, 5.5vw, 110px);
  font-weight: 800; line-height: 1.18; letter-spacing: -.01em;
}
.hh1 .ln  { display: block; overflow: hidden; white-space: nowrap; }
.hh1 .wd  { display: inline-block; transform: translateY(110%); opacity: 0; white-space: nowrap; }
.hh1 em   { font-style: italic; color: var(--gold); }

.hdesc {
  margin-top: 24px; font-size: var(--fs-base); line-height: 2;
  color: var(--body); max-width: 440px;
  opacity: 0; transform: translateY(14px);
}

.hbtns { margin-top: 28px; display: flex; gap: 18px; align-items: center; opacity: 0; transform: translateY(14px); }

.mbtn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--ink);
  text-decoration: none; font-family: var(--font-body); font-size: var(--fs-base); font-weight: 600;
  padding: 14px 28px; cursor: none; position: relative; overflow: hidden;
}
.mbtn::after { content: ''; position: absolute; inset: 0; background: var(--gold2); clip-path: circle(0% at 50% 50%); transition: clip-path .5s cubic-bezier(.76,0,.24,1); }
.mbtn:hover::after { clip-path: circle(150% at 50% 50%); }
.mbtn span, .mbtn svg { position: relative; z-index: 1; }

.gbtn {
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: 500;
  color: var(--muted); text-decoration: none; cursor: none;
  transition: color .3s; position: relative;
}
.gbtn::after { content: ''; position: absolute; left: 0; bottom: -3px; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .4s cubic-bezier(.76,0,.24,1); }
.gbtn:hover { color: var(--white); }
.gbtn:hover::after { transform: scaleX(1); transform-origin: left; }

/* Hero photo slot */
.hero-photo-wrap { position: relative; align-self: flex-end; }
.hero-photo-slot { width: 100%; padding-bottom: 72%; position: relative; overflow: hidden; }
.hero-photo-slot .photo-placeholder { position: absolute; inset: 0; }

/* ── MARQUEE removed ── */



/* ══════════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════════ */
.sec { padding: 96px 48px; position: relative; z-index: 2; }

.sec-lbl {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .16em; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
  opacity: 0; transform: translateX(-12px);
  transition: opacity .7s, transform .7s;
}
.sec-lbl::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.sec-lbl.vis { opacity: 1; transform: translateX(0); }

.sec-h {
  font-family: var(--font-display); font-size: clamp(40px,6vw,80px); font-weight: 800;
  line-height: 1.1; letter-spacing: .01em;
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s, transform .9s cubic-bezier(.16,1,.3,1);
}
.sec-h em { font-style: italic; color: var(--gold); }
.sec-h.vis { opacity: 1; transform: translateY(0); }

.ru { opacity: 0; transform: translateY(36px); transition: opacity .8s, transform .8s cubic-bezier(.16,1,.3,1); }
.ru.vis { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   WHY
   ══════════════════════════════════════════ */
#why { background: var(--fog); overflow: hidden; }
#why::before { content: ''; position: absolute; top: -30%; right: -4%; width: 2px; height: 180%; background: linear-gradient(to bottom, transparent, rgba(200,168,75,.2) 30%, rgba(200,168,75,.4) 50%, rgba(200,168,75,.2) 70%, transparent); transform: rotate(-18deg); pointer-events: none; }

.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.ft { background: var(--fog); padding: 44px 36px 40px; position: relative; overflow: hidden; transition: background .4s; cursor: none; }
.ft::before { content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.76,0,.24,1); }
.ft:hover { background: #141422; }
.ft:hover::before { transform: scaleX(1); }
.fn {
  font-family: var(--font-display); font-size: 52px; font-weight: 900;
  color: rgba(200,168,75,.1); line-height: 1; margin-bottom: 14px;
  transition: color .4s;
  position: relative; overflow: hidden;
  background: linear-gradient(
    105deg,
    rgba(200,168,75,.1) 0%,
    rgba(200,168,75,.1) 40%,
    rgba(232,202,118,.85) 50%,
    rgba(200,168,75,.1) 60%,
    rgba(200,168,75,.1) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fn.glint {
  animation: fnGlint .7s ease forwards;
}
@keyframes fnGlint {
  0%   { background-position: 200% center; }
  100% { background-position: -100% center; }
}
.ft:hover .fn {
  background: linear-gradient(
    105deg,
    rgba(200,168,75,.28) 0%,
    rgba(200,168,75,.28) 40%,
    rgba(232,202,118,.95) 50%,
    rgba(200,168,75,.28) 60%,
    rgba(200,168,75,.28) 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ftit { font-size: var(--fs-md); font-weight: 600; margin-bottom: 10px; }
.fdsc { font-size: var(--fs-sm); line-height: 2.1; color: var(--body); }

/* ══════════════════════════════════════════
   WORKS — 施工例
   ══════════════════════════════════════════ */
#works { background: var(--ink); overflow: hidden; }
#works::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,168,75,.2), transparent); }

.works-lead { font-size: var(--fs-sm); color: var(--muted); margin-top: 12px; margin-bottom: 40px; line-height: 1.8; }
.works-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.work-card {
  background: var(--fog);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color .4s;
  opacity: 0; transform: translateY(36px);
  transition: opacity .8s, transform .8s cubic-bezier(.16,1,.3,1), border-color .4s;
}
.work-card.vis { opacity: 1; transform: translateY(0); }
.work-card:hover { border-color: rgba(200,168,75,.3); }

.work-photos {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; background: rgba(8,8,16,.6);
}
.work-photo-slot { padding-bottom: 70%; position: relative; }
.work-photo-slot .photo-placeholder { position: absolute; inset: 0; border: none; border-radius: 0; }
.work-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.work-photo-slot:hover .work-img { transform: scale(1.03); }
.work-badge {
  position: absolute; bottom: 8px; left: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em;
  color: var(--white); background: rgba(5,5,10,.75);
  padding: 3px 8px; pointer-events: none;
}
.work-badge-after { color: var(--gold); }

.work-arrow {
  font-family: var(--font-display); font-size: 20px; font-weight: 800;
  color: var(--gold); padding: 0 8px; text-align: center;
  flex-shrink: 0;
}

.work-info { padding: 20px 20px 22px; }
.work-tag { font-family: var(--font-mono); font-size: 16px; letter-spacing: .14em; color: var(--gold); margin-bottom: 8px; }
.work-title { font-size: var(--fs-base); font-weight: 600; margin-bottom: 8px; line-height: 1.5; }
.work-desc { font-size: var(--fs-sm); color: var(--body); line-height: 1.85; }

.works-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 24px; letter-spacing: .04em; }

/* ══════════════════════════════════════════
   PLANS
   ══════════════════════════════════════════ */
#plans {
  background: radial-gradient(ellipse at 50% 0%, #12120e 0%, var(--ink) 60%);
  overflow: hidden;
}
#plans::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(200,168,75,.02) 1px, transparent 1px); background-size: 100% 72px; pointer-events: none; }

.pg { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.pl { background: #09090e; padding: 44px 36px; position: relative; overflow: hidden;
      display: flex; flex-direction: column; } /* flex で高さ統一 */
.pl .pitms { flex: 1; } /* リスト部分が伸びてボタンを押し下げる */
.pl.hot { background: #0e0e08; }
.pl.hot::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), var(--gold), transparent); }
.pl.hot::before { content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent); animation: shimmer 4s ease-in-out 2s infinite; }
@keyframes shimmer { from { left: -60%; } to { left: 110%; } }

.ptag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600;
  background: var(--gold); color: var(--ink); padding: 4px 10px; letter-spacing: .04em;
  overflow: hidden;
}
.ptag::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.6), transparent);
  animation: badgeShimmer 4s ease-in-out 1.5s infinite;
}
@keyframes badgeShimmer {
  0%   { left: -75%; opacity: 1; }
  40%  { left: 125%; opacity: 1; }
  100% { left: 125%; opacity: 0; }
}
.pnm  { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 600; color: var(--gold); letter-spacing: .1em; margin-bottom: 18px; }
.ppr  { font-family: var(--font-display); font-size: 68px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.ppr sup { font-size: 24px; vertical-align: super; font-weight: 400; }
.ptx  { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 6px; }
.pdur { display: flex; align-items: center; gap: 10px; font-size: var(--fs-xs); color: var(--muted); padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.pdur::before { content: ''; width: 10px; height: 1px; background: var(--muted); }
.pitms { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pitms li { font-size: var(--fs-sm); color: var(--body); display: flex; gap: 12px; align-items: flex-start; line-height: 1.7; }
.pitms li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.pitms small { font-size: 16px; color: var(--muted); }

.plnk {
  display: block; text-align: center;
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: 600;
  padding: 13px; border: 1px solid var(--line); color: var(--muted);
  text-decoration: none; cursor: none; position: relative; overflow: hidden;
  transition: color .3s, border-color .3s;
}
.plnk::after { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateY(101%); transition: transform .4s cubic-bezier(.76,0,.24,1); }
.plnk:hover { color: var(--ink); border-color: var(--gold); }
.plnk:hover::after { transform: translateY(0); }
.plnk span { position: relative; z-index: 1; }
.pl.hot .plnk { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.pl.hot .plnk::after { background: var(--gold2); }

.winter {
  border: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 28px 36px; margin-top: 1px; background: #08080f; overflow: hidden; position: relative;
}
.winter::before { content: '冬季限定'; position: absolute; right: 120px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 60px; font-weight: 900; color: rgba(200,168,75,.04); pointer-events: none; white-space: nowrap; }
.wtg  { font-size: var(--fs-xs); color: var(--gold); font-weight: 600; letter-spacing: .08em; margin-bottom: 8px; }
.wnm  { font-size: var(--fs-md); font-weight: 600; margin-bottom: 7px; }
.wds  { font-size: var(--fs-sm); color: var(--body); line-height: 1.85; }
.winter-r { flex-shrink: 0; text-align: right; }
.wpr  { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--gold2); line-height: 1; }
.wper { font-size: var(--fs-xs); color: var(--muted); margin-top: 3px; }

.plans-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 20px; letter-spacing: .04em; }

/* ══════════════════════════════════════════
   FLOW + AREA — 左右並列レイアウト
   ══════════════════════════════════════════ */
#flow-area {
  background: var(--fog);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
#flow-area::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(200,168,75,.055) 1px, transparent 0);
  background-size: 36px 36px; pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

/* 左右2カラム wrapper */
.fa-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
/* 中央に縦の区切り線 */
.fa-wrap::after {
  content: '';
  position: absolute;
  top: 48px; bottom: 48px;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

/* 各カラム共通 */
.fa-left,
.fa-right {
  padding: 80px 56px;
}
.fa-left  { border-right: none; }
.fa-right { background: rgba(5,5,10,.3); }

/* ヘッダー（sec-lbl + sec-h） */
.fa-head { margin-bottom: 48px; }

/* ── タイムライン（流れ） ── */
.flow-hd { padding: 0; margin-bottom: 0; } /* fa-head に統合したので不要 */

.flow-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0;
  position: relative;
}

.flow-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.flow-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(105deg,
    var(--gold) 0%, var(--gold) 35%,
    var(--gold2) 50%,
    var(--gold) 65%, var(--gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}

.flow-vline {
  flex: 1;
  width: 1px;
  background: rgba(200,168,75,.1);
  margin: 6px 0;
  overflow: hidden;
  min-height: 40px;
}
.flow-vline-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,75,.2));
  transition: height 1.2s cubic-bezier(.16,1,.3,1);
}
.flow-item.line-on .flow-vline-fill { height: 100%; }

.flow-right {
  background: rgba(10,10,18,.7);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 24px 24px 24px 24px;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
  transition: background .4s, border-color .4s;
  backdrop-filter: blur(4px);
}
.flow-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 0;
  background: linear-gradient(to right, rgba(200,168,75,.05), transparent);
  transition: width .5s ease;
}
.flow-item:hover .flow-right { background: rgba(16,16,28,.85); border-color: rgba(200,168,75,.4); }
.flow-item:hover .flow-right::before { width: 100%; }

.flow-tag {
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 8px;
  opacity: .7;
}
.flow-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 10px;
  line-height: 1;
}
.flow-body {
  font-size: var(--fs-base);
  line-height: 1.9;
  color: var(--body);
  margin-bottom: 14px;
}
.flow-meta { display: flex; flex-wrap: wrap; gap: 6px; }
.flow-chip {
  font-size: 16px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 3px 12px;
  background: rgba(200,168,75,.04);
}
.flow-chip-warn {
  color: var(--gold2);
  border-color: rgba(200,168,75,.3);
  background: rgba(200,168,75,.07);
}

/* ── エリアカード（縦並び） ── */
.ac-v {
  border: 1px solid var(--line);
  padding: 32px 28px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: background .4s, border-color .4s;
  background: rgba(8,8,16,.5);
}
.ac-v:last-child { margin-bottom: 0; }
.ac-v:hover { background: rgba(14,14,24,.85); border-color: rgba(200,168,75,.3); }
.ac-v::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.76,0,.24,1);
}
.ac-v:hover::after { transform: scaleX(1); }
/* 光が走るエフェクト */
.ac-v::before {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent, rgba(200,168,75,.04), transparent);
  transform: skewX(-15deg); transition: left .65s ease; pointer-events: none;
}
.ac-v:hover::before { left: 120%; }

/* ══════════════════════════════════════════
   AREA（fa-right 内の縦並びカード用）
   ══════════════════════════════════════════ */
#area { background: transparent; overflow: visible; }
#area::before { display: none; }

.ag { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 48px; }
.ac { padding: 52px 40px 48px; position: relative; background: var(--ink); overflow: hidden; transition: background .4s; cursor: none; }
.ac:hover { background: #0c0c14; }
.ac::before { content: ''; position: absolute; top: -50%; left: -60%; width: 40%; height: 200%; background: linear-gradient(105deg, transparent, rgba(200,168,75,.04), transparent); transform: skewX(-15deg); transition: left .65s ease; pointer-events: none; }
.ac:hover::before { left: 120%; }
.ac::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold2)); transform: scaleX(0); transform-origin: left; transition: transform .5s cubic-bezier(.76,0,.24,1); }
.ac:hover::after { transform: scaleX(1); }
.aen  { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .3em; color: var(--gold); margin-bottom: 10px; }
.ajp  { font-family: var(--font-display); font-size: clamp(40px,5.5vw,64px); font-weight: 800; font-style: italic; line-height: 1; margin-bottom: 18px; }
.ads  { font-size: var(--fs-sm); line-height: 2; color: var(--body); margin-bottom: 20px; }
.atags { display: flex; flex-wrap: wrap; gap: 7px; }
.atag { font-size: var(--fs-xs); color: var(--muted); border: 1px solid var(--line); padding: 4px 10px; transition: all .3s; letter-spacing: .04em; }
.ac:hover .atag { border-color: rgba(200,168,75,.22); color: rgba(200,168,75,.65); }
.abgn { position: absolute; bottom: 6px; right: 16px; font-family: var(--font-display); font-size: 140px; font-weight: 900; color: rgba(200,168,75,.03); line-height: 1; pointer-events: none; }

/* ══════════════════════════════════════════
   REPRESENTATIVE
   ══════════════════════════════════════════ */
#representative { background: var(--fog); overflow: hidden; position: relative; z-index: 2; }
#representative::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,168,75,.25), transparent); }

.rep-grid { display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: flex-start; margin-top: 48px; }
.rep-frame { position: relative; padding-bottom: 100%; }
.rep-in { position: absolute; inset: 0; background: linear-gradient(135deg, #141420, #0a0a10); overflow: hidden; }
.rep-photo-ph { border: 1px dashed rgba(200,168,75,.2); }
.rc-tl { position: absolute; top: 0; left: 0; width: 28px; height: 28px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); z-index: 1; }
.rc-br { position: absolute; bottom: 0; right: 0; width: 28px; height: 28px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); z-index: 1; }
.rep-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; filter: brightness(.92) contrast(1.05); }

.rep-role { font-size: var(--fs-xs); font-weight: 600; color: var(--gold); letter-spacing: .08em; margin-bottom: 12px; }
.rep-nm   { font-family: var(--font-display); font-size: clamp(32px,4vw,52px); font-weight: 800; font-style: italic; margin-bottom: 6px; }
.rep-sub  { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 28px; }
.rep-msg  { font-size: var(--fs-sm); line-height: 1.85; color: var(--body); border-left: 1px solid rgba(200,168,75,.2); padding-left: 18px; }
.rep-msg br + br { display: block; content: ''; margin-top: -.4em; }

/* ══════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════ */
#reviews { background: #08080f; padding: 96px 0; overflow: hidden; position: relative; z-index: 2; }
#reviews::before { content: ''; position: absolute; top: -30%; right: -8%; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle, rgba(200,168,75,.05) 0%, transparent 70%); pointer-events: none; }

.rv-hd  { padding: 0 48px; margin-bottom: 48px; }
.rv-row { display: flex; gap: 14px; padding: 0 48px; overflow-x: auto; scrollbar-width: none; }
.rv-row::-webkit-scrollbar { display: none; }

.rv {
  flex-shrink: 0; width: 340px;
  background: rgba(12,12,20,.85); border: 1px solid var(--line);
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: border-color .4s, transform .4s cubic-bezier(.16,1,.3,1); cursor: none;
}
.rv:hover { border-color: rgba(200,168,75,.28); transform: translateY(-4px); }
.rv-str { color: var(--gold); font-size: var(--fs-xs); letter-spacing: 4px; margin-bottom: 16px; }
.rv-mk  { position: absolute; top: 12px; right: 18px; font-family: var(--font-display); font-size: 60px; font-weight: 900; font-style: italic; color: rgba(200,168,75,.08); line-height: 1; }
.rv-txt { font-size: var(--fs-sm); line-height: 2.1; color: var(--body); margin-bottom: 22px; }
.rv-nm  { font-size: var(--fs-base); font-weight: 600; margin-bottom: 3px; }
.rv-sb  { font-size: var(--fs-xs); color: var(--muted); letter-spacing: .04em; }

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */
#faq { background: var(--fog); position: relative; z-index: 2; overflow: hidden; }
#faq::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,168,75,.2), transparent); }

.fq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 48px; }
.fq-col {}
.fq-list { margin-top: 48px; max-width: 740px; }
.fqi { border-bottom: 1px solid var(--line); }
.fqq { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: none; gap: 16px; }
.fqqt { font-size: var(--fs-base); font-weight: 500; line-height: 1.6; }
.fqic { width: 28px; height: 28px; flex-shrink: 0; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--gold); transition: all .35s; }
.fqi.on .fqic { background: var(--gold); color: var(--ink); transform: rotate(45deg); }
.fqa { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.76,0,.24,1); }
.fqi.on .fqa { max-height: 280px; }
.fqat { font-size: var(--fs-sm); line-height: 2.1; color: var(--body); padding: 0 0 20px 16px; border-left: 1px solid rgba(200,168,75,.2); }

/* ══════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════ */
#contact {
  position: relative; overflow: hidden; z-index: 2;
  background: radial-gradient(ellipse at 50% 110%, rgba(200,168,75,.1) 0%, rgba(200,168,75,.03) 30%, var(--ink) 65%);
}
#contact::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,168,75,.25), transparent); }
#contact::after { content: ''; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%); width: 650px; height: 650px; border-radius: 50%; border: 1px solid rgba(200,168,75,.06); pointer-events: none; }

/* 電話 ヒーローブロック */
.tel-hero {
  display: block; width: 100%;
  border: 1px solid rgba(200,168,75,.35);
  padding: 40px 36px;
  text-decoration: none; text-align: left;
  margin-bottom: 32px;
  position: relative; overflow: hidden;
  transition: border-color .4s, background .4s;
  background: rgba(200,168,75,.04);
  cursor: none;
}
.tel-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,168,75,.08), transparent);
  opacity: 0; transition: opacity .4s;
}
.tel-hero:hover { border-color: var(--gold); background: rgba(200,168,75,.08); }
.tel-hero:hover::before { opacity: 1; }
.tel-hero::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.06), transparent);
  transform: skewX(-15deg); transition: left .7s ease; pointer-events: none;
}
.tel-hero:hover::after { left: 120%; }

.tel-hero-label {
  font-family: var(--font-mono); font-size: 16px; letter-spacing: .2em;
  color: var(--gold); margin-bottom: 14px; text-transform: uppercase;
}
.tel-hero-num {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 80px); font-weight: 900; line-height: 1;
  color: var(--white); letter-spacing: .04em; margin-bottom: 10px;
}
.tel-hero-sub {
  font-size: 16px; color: var(--muted); letter-spacing: .04em; margin-bottom: 24px;
}
.tel-hero-cta {
  display: inline-block;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); background: var(--gold); padding: 12px 32px;
  position: relative; z-index: 1;
}

/* or divider */
.ct-divider {
  display: flex; align-items: center; gap: 16px; margin: 0 0 32px;
}
.ct-divider::before, .ct-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--line);
}
.ct-divider span { font-size: 16px; color: var(--muted); letter-spacing: .06em; white-space: nowrap; }

.ct-in { max-width: 700px; margin: 0 auto; text-align: left; padding: 0 48px; position: relative; z-index: 1; }
.ct-h  { font-family: var(--font-display); font-size: clamp(44px,8vw,96px); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.ct-h em { font-style: italic; color: var(--gold); }
.ct-d  { font-size: var(--fs-base); line-height: 2; color: var(--body); margin-bottom: 44px; }

.ct-meths { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; text-align: left; }
.cmt { border: 1px solid var(--line); padding: 28px 22px; text-decoration: none; display: block; transition: border-color .4s; cursor: none; position: relative; overflow: hidden; }
.cmt::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,168,75,.04), transparent); opacity: 0; transition: opacity .4s; }
.cmt:hover { border-color: rgba(200,168,75,.35); }
.cmt:hover::before { opacity: 1; }
.cml { font-size: var(--fs-xs); font-weight: 600; color: var(--gold); letter-spacing: .1em; margin-bottom: 9px; }
.cmv { font-family: var(--font-display); font-size: 20px; font-weight: 700; font-style: italic; margin-bottom: 5px; }
.cmn { font-size: var(--fs-xs); color: var(--muted); }

.cf   { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fl   { font-size: var(--fs-xs); font-weight: 600; color: var(--muted); letter-spacing: .06em; margin-bottom: 5px; display: block; }
.fi, .fs, .fta { width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line); color: var(--white); font-family: var(--font-body); font-size: var(--fs-base); padding: 12px 14px; outline: none; transition: border-color .3s, background .3s; appearance: none; }
.fi:focus, .fs:focus, .fta:focus { border-color: var(--gold); background: rgba(200,168,75,.03); }
/* selectの未選択状態はグレー、選択後は白 */
.fs { color: var(--muted); }
.fs:valid { color: var(--white); }
.fs option { background: #0f0f18; color: var(--white); }
.fs option[disabled] { color: var(--muted); }
::placeholder { color: rgba(184,180,174,.35); }
.fta { min-height: 100px; resize: vertical; }
.fsub { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--gold); color: var(--ink); border: none; font-family: var(--font-body); font-size: var(--fs-base); font-weight: 700; padding: 17px 40px; width: 100%; cursor: none; position: relative; overflow: hidden; margin-top: 4px; }
.fsub::after { content: ''; position: absolute; inset: 0; background: var(--gold2); transform: translateY(101%); transition: transform .4s cubic-bezier(.76,0,.24,1); }
.fsub:hover::after { transform: translateY(0); }
.fsub span { position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer { background: #050508; border-top: 1px solid var(--line); padding: 44px 48px 28px; position: relative; z-index: 2; }
.ft-t { display: flex; justify-content: space-between; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.ft-lg { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: .12em; }
.ft-lg em { color: var(--gold); font-style: normal; }
.ft-lk { display: flex; gap: 24px; flex-wrap: wrap; }
.ft-lk a { font-size: var(--fs-xs); color: var(--muted); text-decoration: none; transition: color .3s; letter-spacing: .04em; }
.ft-lk a:hover { color: var(--gold); }
.ft-b { display: flex; justify-content: space-between; }
.ft-c, .ft-co { font-size: var(--fs-xs); color: var(--muted); letter-spacing: .04em; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1100px) {
  .works-grid { grid-template-columns: 1fr 1fr; }
  .hero-main  { grid-template-columns: 1fr 320px; gap: 32px; }
}

@media (max-width: 960px) {
  nav { padding: 18px 32px; }
  nav.stuck { padding: 12px 32px; }
  .hero { padding: 92px 32px 72px; }
  .sec { padding: 72px 32px; }
  .hero-main { grid-template-columns: 1fr; gap: 28px; }
  .hero-photo-wrap { display: none; }
  .flow-hd, .flow-ntc { padding-left: 32px; padding-right: 32px; }
  .flow-row, .rv-row   { padding-left: 32px; }
  .rv-hd { padding: 0 32px; }
  .ct-in { padding: 0 32px; }
  footer { padding: 36px 32px 24px; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  body { cursor: auto; padding-bottom: 72px; }
  #cdot, #cring { display: none; }

  /* Mobile CTA bar */
  .mobile-cta { display: flex; }

  /* Nav */
  nav { padding: 14px 18px; }
  nav.stuck { padding: 10px 18px; }
  .nav-links, .nbtn { display: none; }
  .nav-ham { display: flex; }

  /* Hero */
  .hero { padding: 86px 18px 52px; }
  .hero-bracket.tr, .hero-bracket.br { display: none; }
  .hero-bracket.tl { top: 74px; left: 18px; }
  .hero-bracket.bl { bottom: 48px; left: 18px; }
  .hvert { display: none; }
  .hero-photo-wrap { display: none; }
  .hh1 { font-size: 36px; }
  .hstats { gap: 28px; margin-top: 28px; padding-top: 20px; }
  .hsn { font-size: 36px; }

  /* Text alignment: left on mobile */
  .ct-in { text-align: left; padding: 0 18px; }
  .sec-lbl { justify-content: flex-start !important; }
  #contact::after { display: none; }

  /* Sections */
  .sec { padding: 56px 18px; }

  /* Single column grids */
  .fg, .pg, .ag, .ct-meths, .rep-grid, .fq-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }

  /* Flow + Area */
  .fa-wrap { grid-template-columns: 1fr; }
  .fa-wrap::after { display: none; }
  .fa-left  { padding: 56px 18px 40px; }
  .fa-right { padding: 40px 18px 56px; background: rgba(5,5,10,.5); }
  .flow-item { grid-template-columns: 64px 1fr; }
  .flow-num  { font-size: 44px; }
  .flow-right { padding: 20px 16px; }
  .flow-title { font-size: 20px; }

  /* Reviews */
  .rv-hd { padding: 0 18px; }
  .rv-row { padding: 0 18px; flex-direction: column; overflow-x: visible; }
  .rv { width: 100%; }

  /* Plans */
  .winter { flex-direction: column; gap: 14px; padding: 22px 18px; }
  .winter-r { text-align: left; }
  .winter::before { display: none; }

  /* Footer */
  footer { padding: 28px 18px 20px; }
  .ft-t { flex-direction: column; gap: 18px; align-items: flex-start; }
  .ft-b { flex-direction: column; gap: 5px; }
}

@media (max-width: 400px) {
  .hh1 { font-size: 32px; }
  .hstats { flex-direction: column; gap: 14px; }
}
