/* ============================================================
   Naoto Yamada — Bassist
   Minimal / warm off-white / monochrome
   ============================================================ */

:root {
  /* Warm, friendly off-white base */
  --bg:        #faf6ef;
  --bg-2:      #f5eee2;
  --bg-3:      #efe6d6;
  --card:      #fffdf9;
  --ink:       #2c2620;
  --ink-soft:  #5a5247;
  --muted:     #8c8475;
  --faint:     #b0a896;
  --line:      #ebe3d4;
  --line-2:    #ddd3c0;
  --white:     #ffffff;

  /* Warm terracotta accent (soft, used sparingly) */
  --acc:       #c8693e;
  --acc-deep:  #b25a32;
  --acc-soft:  #f7e7da;
  --acc-tint:  #fbf0e7;

  --shadow:    0 2px 4px rgba(82,60,38,.04), 0 8px 22px rgba(82,60,38,.06);
  --shadow-sm: 0 1px 2px rgba(82,60,38,.05), 0 4px 12px rgba(82,60,38,.05);

  --maxw:      1120px;
  --gut:       24px;

  --f-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
            "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-round: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Noto Sans JP",
            "Hiragino Kaku Gothic ProN", sans-serif;

  --r:    12px;
  --r-lg: 22px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; }
:lang(ja), [data-lang-active="ja"] { word-break: normal; line-break: strict; }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.narrow { max-width: 720px; }

.section { padding: 88px 0; }
.section--tight { padding: 64px 0; }

.eyebrow {
  font-family: var(--f-round);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
  font-weight: 700;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--acc-soft);
  border: 1.5px solid var(--acc);
  box-shadow: inset 0 0 0 3px var(--bg);
}

.h-sec {
  font-family: var(--f-round);
  font-size: clamp(27px, 6vw, 41px);
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 56ch;
}

.divider { height: 1px; background: var(--line); border: 0; }

/* fade-up on scroll (subtle, respects reduced motion) */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.hdr.scrolled { border-bottom-color: var(--line); }
.hdr__in {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand {
  font-family: var(--f-round);
  font-weight: 800; font-size: 16px; letter-spacing: 0.01em;
  display: flex; align-items: baseline; gap: 9px;
}
.brand .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); display: inline-block; align-self: center; }
.brand small { font-weight: 500; color: var(--muted); font-size: 12px; letter-spacing: 0.04em; }

.nav { display: none; align-items: center; gap: 26px; }
.nav a {
  font-size: 14px; color: var(--ink-soft); font-weight: 500;
  letter-spacing: 0.01em; transition: color .2s ease;
}
.nav a:hover { color: var(--acc); }

.hdr__right { display: flex; align-items: center; gap: 12px; }

.lang {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 3px; gap: 2px;
}
.lang button {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: 999px; color: var(--muted);
  transition: all .2s ease;
}
.lang button[aria-pressed="true"] { background: var(--acc); color: var(--white); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f-round);
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  padding: 12px 22px; border-radius: 999px;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn--solid { background: var(--acc); color: var(--white); box-shadow: 0 4px 14px rgba(200,105,62,.28); }
.btn--solid:hover { background: var(--acc-deep); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,105,62,.34); }
.btn--ghost { border: 1.5px solid var(--line-2); color: var(--ink); background: var(--card); }
.btn--ghost:hover { border-color: var(--acc); color: var(--acc); }
.btn--block { width: 100%; padding: 17px; font-size: 15px; }
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.hdr .btn--solid { padding: 9px 16px; }
.hdr-cta { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 0; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video--ph {
  background:
    repeating-linear-gradient(135deg, #3a322a 0 16px, #443a30 16px 32px);
}
.hero__video--ph .reel__tag {
  position: absolute; left: 16px; top: 16px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px;
  letter-spacing: 0.04em; color: rgba(255,255,255,.72);
  background: rgba(0,0,0,.28); padding: 5px 9px; border-radius: 6px;
}
.hero__video--ph .reel__muted {
  position: absolute; right: 16px; bottom: 16px;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,.72); font-weight: 600;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,15,10,.30) 0%, rgba(20,15,10,.22) 42%, rgba(20,15,10,.74) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 56px; }
.hero__copy .from {
  font-family: var(--f-round);
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--white); font-weight: 700; margin-bottom: 20px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(200,105,62,.92); padding: 6px 14px 6px 11px; border-radius: 999px;
}
.hero__copy .from::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--white); }
.hero h1 {
  font-family: var(--f-round);
  font-size: clamp(46px, 15vw, 96px);
  font-weight: 800; letter-spacing: -0.01em; line-height: 1.0;
  margin-bottom: 18px; color: var(--white);
}
.hero .role {
  font-size: clamp(17px, 4.4vw, 22px); font-weight: 500; color: rgba(255,255,255,.92);
  line-height: 1.5; max-width: 32ch;
}
.hero .role b { font-weight: 700; color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero .btn--ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); color: var(--white); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero .btn--ghost:hover { background: rgba(255,255,255,.92); color: var(--ink); border-color: var(--white); }

/* ============================================================
   SERVICES / WHAT I DO  (tap-to-expand accordion)
   ============================================================ */
.svc-list {
  display: flex; flex-direction: column; gap: 14px;
}
.svc {
  background: var(--card);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.svc.open { box-shadow: var(--shadow); border-color: var(--line-2); }
.svc__head {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
}
.svc__name { font-family: var(--f-round); font-size: 21px; font-weight: 800; letter-spacing: 0.005em; }
.svc__head-right { display: flex; align-items: center; gap: 14px; }
.svc__price {
  font-family: var(--f-round); font-size: 16px; font-weight: 800; white-space: nowrap; color: var(--acc);
  padding: 6px 12px; border-radius: 999px; background: var(--acc-tint);
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.svc__price:hover { background: var(--acc); color: var(--white); transform: translateY(-1px); }
.svc__price small { font-size: 12px; font-weight: 500; color: var(--muted); }
.svc__price:hover small { color: rgba(255,255,255,.85); }
.svc__price.ask { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: var(--acc); }
.svc__price.ask:hover { background: var(--acc-deep); }
.svc__chev {
  flex: 0 0 auto; width: 13px; height: 13px; position: relative;
}
.svc__chev::before, .svc__chev::after {
  content: ""; position: absolute; top: 5px; width: 9px; height: 2px; border-radius: 2px;
  background: var(--ink-soft); transition: transform .25s ease;
}
.svc__chev::before { left: 0; transform: rotate(45deg); }
.svc__chev::after  { right: 0; transform: rotate(-45deg); }
.svc.open .svc__chev::before { transform: rotate(-45deg); }
.svc.open .svc__chev::after  { transform: rotate(45deg); }
.svc__detail { overflow: hidden; max-height: 0; transition: max-height .32s ease; }
.svc__detail-in { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 13px; }
.svc__body { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }
.svc__note { font-size: 12.5px; color: var(--faint); line-height: 1.6; }
.svc__sub {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px; border-radius: var(--r); background: var(--bg-2);
}
.svc__sub-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; font-size: 14px; }
.svc__sub-row b { font-weight: 700; }
.svc__sub-row .lbl { color: var(--ink-soft); }
.svc__off { font-size: 12px; color: var(--acc-deep); font-weight: 600; }
.svc__off-bar {
  display: flex; align-items: center; gap: 9px;
  margin-top: 10px; padding-top: 11px;
  border-top: 1px dashed var(--line-2);
}
.svc__off-tag {
  flex: none;
  font-size: 12px; font-weight: 800; letter-spacing: .01em;
  color: var(--acc-deep);
  background: color-mix(in oklch, var(--acc-deep) 12%, transparent);
  border: 1px solid color-mix(in oklch, var(--acc-deep) 28%, transparent);
  padding: 3px 9px; border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.svc__off-txt { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); }
.svc__link {
  align-self: flex-start; margin-top: 2px;
  font-family: var(--f-round); font-size: 13.5px; font-weight: 700; color: var(--acc);
  display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease, color .2s ease;
}
.svc__link:hover { gap: 9px; color: var(--acc-deep); }

.tag {
  font-size: 12.5px; color: var(--acc-deep); font-weight: 600;
  background: var(--acc-tint); border: 1px solid var(--acc-soft); border-radius: 999px; padding: 5px 13px;
}

/* ============================================================
   PLAYER STRENGTH
   ============================================================ */
.strength { background: var(--bg-2); }
.strength__grid { display: grid; gap: 30px; }
.strength h2 {
  font-family: var(--f-round);
  font-size: clamp(30px, 7.5vw, 54px); font-weight: 800;
  letter-spacing: 0.005em; line-height: 1.12;
}
.strength p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.85; }
.strength p + p { margin-top: 16px; }
.techs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.techs .tag { background: var(--card); }

/* ============================================================
   FEATURED VIDEOS
   ============================================================ */
.vid-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.vid-cat {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line-2);
  color: var(--ink-soft); transition: all .2s ease;
}
.vid-cat[aria-pressed="true"] { background: var(--acc); color: var(--white); border-color: var(--acc); }

.vid-grid { display: grid; gap: 22px; }
.vid {
  display: flex; flex-direction: column; gap: 12px;
}
.vid__embed { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: pointer; }
.vid__thumb {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  border-radius: var(--r); overflow: hidden;
  background: var(--bg-3) repeating-linear-gradient(135deg, var(--bg-2) 0 12px, var(--bg-3) 12px 24px);
  background-size: cover; background-position: center;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vid__embed:hover .vid__thumb { transform: translateY(-4px); box-shadow: var(--shadow); }
.vid__thumb--ph { background: repeating-linear-gradient(135deg, var(--bg-2) 0 12px, var(--bg-3) 12px 24px); }
.vid__cnt {
  position: absolute; left: 12px; top: 12px;
  font-family: var(--f-round); font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-soft);
  background: color-mix(in srgb, var(--bg) 78%, transparent); padding: 4px 9px; border-radius: 999px;
}
.vid__iframe {
  width: 100%; aspect-ratio: 16 / 9; border: 1px solid var(--line-2);
  border-radius: var(--r); box-shadow: var(--shadow-sm); display: block;
}
.vid__play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px;
  border-radius: 50%; background: var(--acc);
  display: grid; place-items: center; box-shadow: 0 4px 14px rgba(200,105,62,.4);
  transition: transform .2s ease;
}
.vid__embed:hover .vid__play { transform: scale(1.08); }
.vid__play svg { fill: var(--white); margin-left: 2px; }
.vid__meta { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; }
.vid__cat { font-family: var(--f-round); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--acc); font-weight: 700; }
.vid__title { font-size: 15.5px; font-weight: 600; letter-spacing: 0.005em; line-height: 1.45; }
.vid__link {
  font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-top: 2px;
  display: inline-flex; align-items: center; gap: 5px; transition: color .2s ease, gap .2s ease;
}
.vid__link:hover { color: var(--acc); gap: 8px; }

.yt-row {
  margin-top: 38px; padding: 26px 28px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-deep) 100%); color: var(--white);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  box-shadow: 0 8px 24px rgba(200,105,62,.26);
}
.yt-row__txt b { font-family: var(--f-round); font-size: 18px; font-weight: 800; display: block; }
.yt-row__txt span { font-size: 13.5px; color: rgba(255,255,255,.82); }
.yt-row .btn--solid { background: var(--white); color: var(--acc-deep); box-shadow: none; }
.yt-row .btn--solid:hover { background: var(--bg); }

/* ============================================================
   BEDITOR
   ============================================================ */
.beditor { background: var(--bg-2); }
.beditor__card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--card); padding: 44px 28px; text-align: center;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.beditor__logo {
  font-family: var(--f-round);
  font-size: clamp(32px, 9vw, 56px); font-weight: 800; letter-spacing: 0.01em;
  color: var(--acc);
}
.beditor__sub { font-family: var(--f-round); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; }
.beditor__soon {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-round);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--acc-soft); border-radius: 999px; padding: 8px 18px; color: var(--acc-deep);
  margin-top: 4px;
}
.beditor__soon .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); }
.beditor__desc { font-size: 14.5px; color: var(--ink-soft); max-width: 44ch; }

/* ============================================================
   GEAR
   ============================================================ */
.gear-grid { display: grid; gap: 18px; }
.gear { background: var(--card); padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.gear__label { font-family: var(--f-round); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); font-weight: 700; margin-bottom: 12px; }
.gear ul { display: flex; flex-direction: column; gap: 8px; }
.gear li { font-size: 14.5px; color: var(--ink); display: flex; gap: 9px; align-items: baseline; }
.gear li .b { font-weight: 600; }
.gear li .m { color: var(--muted); font-size: 13px; }
.gear li.soon { color: var(--muted); font-style: italic; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bg-2); }
.faq__list { border-top: 1px solid var(--line-2); }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 22px 0; font-size: 15.5px; font-weight: 600; letter-spacing: -0.005em;
}
.faq__q .ic { flex: 0 0 auto; width: 18px; height: 18px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after {
  content: ""; position: absolute; background: var(--ink); transition: transform .25s ease, opacity .25s ease;
}
.faq__q .ic::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__q .ic::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item.open .faq__q .ic::after { transform: scaleY(0); }
.faq__q .ic::before, .faq__q .ic::after { background: var(--acc); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a-in { padding: 0 0 24px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.8; max-width: 60ch; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; gap: 30px; }
.about__photo {
  aspect-ratio: 3 / 4; border-radius: var(--r-lg); overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--bg-2) 0 14px, var(--bg-3) 14px 28px);
  border: 1px solid var(--line-2); position: relative;
}
.about__photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
}
.about__photo .ph {
  position: absolute; left: 14px; top: 14px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; color: var(--muted);
}
.about__name { font-family: var(--f-round); font-size: clamp(30px, 8vw, 46px); font-weight: 800; letter-spacing: 0.005em; line-height: 1.05; }
.about__tt { font-family: var(--f-round); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--acc); font-weight: 700; margin: 14px 0 22px; }
.about p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; }
.about p + p { margin-top: 14px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--acc-tint); }
.contact .h-sec { color: var(--ink); }
.contact__lead { color: var(--ink-soft); font-size: 15px; line-height: 1.8; }
.contact__grid { display: grid; gap: 40px; margin-top: 40px; }
.contact__aside .reply {
  font-family: var(--f-round); font-weight: 700;
  font-size: 13.5px; color: var(--acc-deep);
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  background: var(--card); padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.contact__aside .reply .d { width: 8px; height: 8px; border-radius: 50%; background: #4caf6e; }
.contact__aside .chmeta { display: flex; flex-direction: column; gap: 16px; }
.contact__aside .chmeta div b { font-family: var(--f-round); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--acc); font-weight: 700; display: block; margin-bottom: 4px; }
.contact__aside .chmeta div span { font-size: 14.5px; color: var(--ink-soft); }

.form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--f-round); font-size: 12px; letter-spacing: 0.04em; font-weight: 700; color: var(--ink-soft); }
.field label .opt { letter-spacing: 0; color: var(--muted); font-weight: 500; }
.field input, .field textarea, .field select {
  font: inherit; font-size: 15px; color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--line-2);
  border-radius: var(--r); padding: 13px 14px; width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc-soft);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8693e' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.field textarea { resize: vertical; min-height: 130px; }
.form .row2 { display: grid; gap: 18px; }
.contact .btn--solid { background: var(--acc); color: var(--white); box-shadow: 0 4px 14px rgba(200,105,62,.28); }
.contact .btn--solid:hover { background: var(--acc-deep); }

.form__done {
  display: none; padding: 40px 28px; text-align: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.form__done.show { display: block; }
.form__done .ok { width: 50px; height: 50px; border-radius: 50%; background: #4caf6e; display: grid; place-items: center; margin: 0 auto 16px; }
.form__done h3 { font-family: var(--f-round); font-size: 19px; font-weight: 800; margin-bottom: 10px; color: var(--ink); }
.form__done p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--bg); padding: 56px 0 40px; }
.foot__top { display: grid; gap: 30px; }
.foot__brand .n { font-family: var(--f-round); font-size: 21px; font-weight: 800; letter-spacing: 0.005em; }
.foot__brand p { font-size: 13px; color: var(--muted); margin-top: 6px; }
.foot__sns { display: flex; flex-direction: column; gap: 2px; }
.foot__sns b { font-family: var(--f-round); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--acc); font-weight: 700; margin-bottom: 10px; }
.foot__sns a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 14.5px; font-weight: 500; transition: padding .2s ease, color .2s ease; }
.foot__sns a:hover { padding-left: 6px; color: var(--acc); }
.foot__sns a .arr { color: var(--acc); }
.foot__nav { display: flex; flex-direction: column; gap: 2px; }
.foot__nav b { font-family: var(--f-round); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--acc); font-weight: 700; margin-bottom: 10px; }
.foot__nav a { font-size: 14px; color: var(--ink-soft); padding: 6px 0; transition: color .2s ease; }
.foot__nav a:hover { color: var(--acc); }
.foot__bot {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font-size: 12px; color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .form .row2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 800px) {
  :root { --gut: 40px; }
  .nav { display: flex; }
  .hdr-cta { display: inline-flex; }
  .section { padding: 120px 0; }
  .svc-list { max-width: 860px; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .vid-grid { grid-template-columns: 1fr 1fr 1fr; }
  .about__grid { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
  .strength__grid { grid-template-columns: 1fr 1.2fr; align-items: start; gap: 48px; }
}

@media (min-width: 960px) {
  .hero { min-height: 92vh; }
  .hero__inner { padding-top: 140px; padding-bottom: 72px; }
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .contact__aside { order: 2; }
  .foot__top { grid-template-columns: 1.4fr 1fr 1fr; }
}
