/* ============================================================
   学校施設修繕 — LP styles
   ============================================================ */

:root {
  /* Palette */
  --cream: #F1E5D1;
  --cream-2: #E6D3B2;
  --cream-3: #D4B88B;
  --paper-shadow: #CFB48A;
  --wood: #7B4A2B;
  --wood-dark: #4F2F1C;
  --leaf: #557D47;
  --leaf-dark: #365B2E;
  --ink: #332719;
  --ink-soft: #4E3927;
  --ink-mute: #756047;
  --akane: #A93D35;
  --akane-dark: #873028;
  --stage-red: #6F171B;
  --brass: #B48239;
  --line: rgba(51, 39, 25, 0.19);
  --line-strong: rgba(51, 39, 25, 0.34);
  --texture-paper: url("assets/textures/paper-fiber.jpg");
  --texture-wood: url("assets/textures/soft-woodgrain.jpg");
  --texture-fabric: url("assets/textures/stage-fabric.jpg");
  --surface: rgba(255, 246, 231, 0.90);
  --surface-strong: #FFF4E2;
  --surface-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.68), inset 0 -1px 0 rgba(77, 49, 28, 0.055);
  --surface-depth: 0 20px 42px rgba(51, 39, 25, 0.18), 0 5px 14px rgba(51, 39, 25, 0.09);

  /* Type */
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --hand: "Klee One", "Noto Serif JP", cursive;

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadow */
  --shadow-sm: 0 2px 5px rgba(51, 39, 25, 0.105), 0 5px 12px rgba(51, 39, 25, 0.055);
  --shadow-md: 0 10px 26px rgba(51, 39, 25, 0.15), 0 3px 8px rgba(51, 39, 25, 0.07);
  --shadow-lg: 0 22px 54px rgba(51, 39, 25, 0.22), 0 7px 18px rgba(51, 39, 25, 0.10);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: var(--sans);
  color: var(--ink);
  background: linear-gradient(180deg, var(--cream) 0%, #EAD7B7 100%);
  line-height: 1.75;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html.is-modal-open,
body.is-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* ---- Paper / washi texture (subtle, layered) ---- */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(131, 85, 54, 0.08), transparent 70%),
    radial-gradient(900px 600px at 110% 30%, rgba(54, 91, 46, 0.065), transparent 70%),
    linear-gradient(135deg, rgba(111, 23, 27, 0.025), transparent 34%, rgba(180, 130, 57, 0.035)),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.32  0 0 0 0 0.20  0 0 0 0.10 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  background-size: auto, auto, auto, 320px 320px;
  mix-blend-mode: multiply;
  opacity: 0.58;
}

/* fine paper fibers */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='600'><filter id='f'><feTurbulence type='turbulence' baseFrequency='0.012 0.4' numOctaves='2' seed='2'/><feColorMatrix values='0 0 0 0 0.55  0 0 0 0 0.42  0 0 0 0 0.26  0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23f)'/></svg>");
  background-size: 600px 600px;
  mix-blend-mode: multiply;
  opacity: 0.26;
}

main, header, footer, section { position: relative; z-index: 1; }
section { overflow: hidden; }
main,
footer {
  max-width: 100%;
  overflow-x: hidden;
}
section.section > .container,
section.section > .container-narrow,
.strengths > .container {
  position: relative;
  z-index: 1;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
  text-wrap: pretty;
}
h1 { font-weight: 700; }

p { margin: 0; text-wrap: pretty; }

.hand { font-family: var(--hand); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(169, 61, 53, 0.62);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

/* ---- Layout ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}

section.section {
  padding: 128px 0;
}
section.section.tight { padding: 108px 0; }
section.section:not(#pain):not(.about):not(.contact)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(209,183,142,0.22) 0%, rgba(247,240,228,0.04) 18%, rgba(247,240,228,0.04) 82%, rgba(204,173,128,0.18) 100%),
    linear-gradient(90deg, rgba(79,47,28,0.075), transparent 22%, transparent 78%, rgba(79,47,28,0.065));
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(209,183,142,0.20) 0%, rgba(247,240,228,0.04) 18%, rgba(247,240,228,0) 42%),
    linear-gradient(90deg, rgba(79,47,28,0.075), transparent 22%, transparent 78%, rgba(79,47,28,0.065));
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--wood-dark);
  margin-bottom: 18px;
  text-transform: none;
  font-weight: 600;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--akane-dark), var(--brass));
  opacity: 0.86;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.5;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 246, 231, 0.65), 0 10px 24px rgba(51, 39, 25, 0.06);
}
.section-title .accent { color: var(--wood-dark); }
.section-title .leaf { color: var(--leaf-dark); }

.section-lead {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 640px;
  margin-bottom: 56px;
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  overflow: visible;
  isolation: isolate;
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  background:
    linear-gradient(180deg, rgba(255,246,231,0.97), rgba(238,219,188,0.92)),
    var(--texture-paper);
  background-size: auto, 680px 680px;
  background-blend-mode: normal, multiply;
  border-bottom: 1px solid rgba(51, 39, 25, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.74),
    0 12px 32px rgba(51,39,25,0.17),
    0 3px 10px rgba(51,39,25,0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--akane-dark) 18%, var(--brass) 50%, var(--akane-dark) 82%, transparent);
  opacity: 0.78;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(131,85,54,0.34), rgba(180,130,57,0.40), rgba(131,85,54,0.34), transparent);
}
.site-header.scrolled,
body.is-mobile-header-compact .site-header {
  background:
    linear-gradient(180deg, rgba(255,246,231,0.99), rgba(238,219,188,0.96)),
    var(--texture-paper);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.82),
    0 12px 30px rgba(51,39,25,0.14),
    0 2px 9px rgba(51,39,25,0.07);
}
.site-header .inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1240px;
  margin: 0 auto;
  transition: padding 0.2s ease;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
  transition: gap 0.2s ease;
}
.site-header .brand {
  padding: 4px 0;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood-dark), var(--wood) 58%, var(--brass));
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow-sm);
  transition: width 0.2s ease, height 0.2s ease, font-size 0.2s ease;
}
.site-header .brand-mark {
  position: relative;
  border: 1px solid rgba(180, 130, 57, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 218, 0.28),
    inset 0 -8px 16px rgba(51, 39, 25, 0.14),
    0 5px 14px rgba(51,39,25,0.16);
}
.site-header .brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px 8px auto;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 251, 242, 0.20);
  filter: blur(0.2px);
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  transition: font-size 0.2s ease;
}
.site-header .brand-name {
  color: var(--ink);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255,251,242,0.55);
}
.brand-sub {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  margin-top: 2px;
  transition: font-size 0.2s ease, opacity 0.2s ease;
}
.site-header .brand-sub {
  color: rgba(91, 71, 53, 0.78);
}
.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav a:not(.nav-cta):not(.nav-mobile-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--akane-dark), var(--brass));
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav a:hover {
  color: var(--wood-dark);
}
.nav a:not(.nav-cta):not(.nav-mobile-contact):hover {
  transform: translateY(-1px);
}
.nav a:not(.nav-cta):not(.nav-mobile-contact):hover::after {
  opacity: 0.72;
  transform: scaleX(1);
}
.nav .nav-cta {
  color: var(--cream);
  background:
    linear-gradient(135deg, #7D2A24, var(--akane) 62%, #C35C4D);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(255, 239, 209, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.22),
    0 8px 18px rgba(135,48,40,0.24),
    0 2px 6px rgba(51,39,25,0.12);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.nav .nav-cta:hover {
  background:
    linear-gradient(135deg, #6E211C, var(--akane-dark) 68%, #AA463B);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 10px 22px rgba(135,48,40,0.28),
    0 3px 8px rgba(51,39,25,0.14);
}
.nav .nav-mobile-contact {
  display: none;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(131,85,54,0.28);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,251,242,0.94)),
    var(--texture-paper);
  background-size: auto, 520px 520px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.72),
    0 5px 14px rgba(51,39,25,0.10);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,251,242,1)),
    var(--texture-paper);
  border-color: var(--wood);
}
.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 820px) {
  .nav a:not(.nav-cta) { display: none; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 0;
  min-height: 88vh;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: 118px;
  pointer-events: none;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 118' preserveAspectRatio='none'><path d='M0 52 C210 104 390 14 612 46 C842 80 1026 100 1238 56 C1392 24 1508 31 1600 45 L1600 118 L0 118 Z' fill='%23F5EBDD'/><path d='M0 66 C220 108 398 36 624 61 C818 82 1018 96 1228 64 C1404 38 1520 39 1600 54' fill='none' stroke='rgba(94,61,37,0.10)' stroke-width='1.3'/><path d='M0 78 C244 112 432 58 654 74 C884 90 1044 92 1248 76 C1410 61 1520 59 1600 67' fill='none' stroke='rgba(180,130,57,0.08)' stroke-width='1'/></svg>") center bottom / 100% 118px no-repeat;
  filter: drop-shadow(0 -4px 12px rgba(51, 39, 25, 0.045));
}
.hero-media {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 76% 35%, rgba(111, 23, 27, 0.12), transparent 68%),
    linear-gradient(115deg, var(--cream) 0%, var(--cream-2) 40%, rgba(247, 240, 228, 0.12) 100%);
}
.hero-media .ph {
  width: 100%; height: 100%;
  border-radius: 0;
  border: none;
}
.hero-media .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 1;
  object-position: center center;
  filter: saturate(0.96) contrast(0.98) sepia(0.07) brightness(0.98);
  mix-blend-mode: normal;
  transform: scale(1);
  transform-origin: center center;
  animation: hero-primary-cycle 36s ease-in-out infinite;
  will-change: transform;
}
.hero-media .hero-img-alt {
  opacity: 0;
  object-position: 62% center;
  filter: saturate(0.92) contrast(0.96) sepia(0.08) brightness(1.02);
  transform-origin: 62% center;
  animation: hero-alt-cycle 36s ease-in-out infinite;
}
@keyframes hero-primary-cycle {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  38% {
    opacity: 1;
    transform: scale(1.06);
  }
  50% {
    opacity: 0;
    transform: scale(1.075);
  }
  88% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hero-alt-cycle {
  0%, 38% {
    opacity: 0;
    transform: scale(1.02);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.035);
  }
  88% {
    opacity: 0.86;
    transform: scale(1.12);
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(760px 470px at 18% 36%, rgba(255,251,242,0.92) 0%, rgba(247,240,228,0.70) 44%, rgba(247,240,228,0.16) 76%, transparent 100%),
    linear-gradient(180deg, rgba(247,240,228,0.03) 0%, rgba(239,226,204,0.16) 62%, rgba(247,240,228,0.86) 100%),
    linear-gradient(115deg, rgba(247,240,228,0.92) 0%, rgba(239,226,204,0.60) 30%, rgba(94,61,37,0.10) 62%, rgba(247,240,228,0.02) 100%);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 140px 28px 160px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.25em;
  color: #FFF7E8;
  background: rgba(51, 39, 25, 0.62);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  margin-bottom: 32px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 4px rgba(54, 91, 46, 0.28);
}
.hero h1 {
  font-size: clamp(34px, 5.6vw, 64px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 28px;
  max-width: 820px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--wood-dark) 42%, var(--stage-red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--wood-dark) 0%, var(--akane-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 6px;
  background: linear-gradient(90deg, rgba(131, 85, 54, 0.0), rgba(169, 61, 53, 0.34), rgba(131, 85, 54, 0.0));
  border-radius: 4px;
}
.hero .lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 2;
  margin-bottom: 44px;
}
.hero .lede::before {
  content: "";
  display: block;
  width: 78px;
  height: 2px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--akane-dark), var(--brass));
  opacity: 0.74;
}
.hero-actions {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px 36px;
  max-width: 720px;
}
.hero-meta .item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 251, 242, 0.58);
  border: 1px solid rgba(51, 39, 25, 0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  backdrop-filter: blur(3px);
}
.hero-meta .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 251, 242, 0.92);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--wood-dark);
  flex-shrink: 0;
}
.hero-meta .label {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.hero-meta .sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}
@media (max-width: 700px) {
  .hero {
    min-height: 840px;
  }
  .hero::after {
    height: 86px;
    background-size: 140% 86px;
    background-position: 58% bottom;
    filter: drop-shadow(0 -5px 12px rgba(51, 39, 25, 0.08));
  }
  .hero-inner {
    padding: 104px 20px 132px;
  }
  .hero-media .hero-img {
    object-position: 72% 50%;
    opacity: 0.82;
    mix-blend-mode: multiply;
    transform-origin: 72% 50%;
    animation: hero-primary-cycle-mobile 36s ease-in-out infinite;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 20%, #000 48%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.18) 20%, #000 48%, #000 100%),
      linear-gradient(180deg, #000 0%, #000 62%, transparent 100%);
    mask-composite: intersect;
  }
  .hero-media .hero-img-alt {
    object-position: 66% 50%;
    opacity: 0;
    transform-origin: 66% 50%;
    mix-blend-mode: normal;
    animation: hero-alt-cycle-mobile 36s ease-in-out infinite;
  }
  @keyframes hero-primary-cycle-mobile {
    0% {
      opacity: 0.82;
      transform: scale(1.02);
    }
    38% {
      opacity: 0.82;
      transform: scale(1.08);
    }
    50% {
      opacity: 0;
      transform: scale(1.095);
    }
    88% {
      opacity: 0;
      transform: scale(1.02);
    }
    100% {
      opacity: 0.82;
      transform: scale(1.02);
    }
  }
  @keyframes hero-alt-cycle-mobile {
    0%, 38% {
      opacity: 0;
      transform: scale(1.04);
    }
    50% {
      opacity: 0.72;
      transform: scale(1.055);
    }
    88% {
      opacity: 0.72;
      transform: scale(1.14);
    }
    100% {
      opacity: 0;
      transform: scale(1.14);
    }
  }
  .hero h1 {
    font-size: 36px;
    line-height: 1.42;
    max-width: 100%;
    letter-spacing: 0.01em;
  }
  .hero .lede::before {
    width: 58px;
    margin-bottom: 18px;
  }
  .hero .lede {
    font-size: 15px;
    line-height: 1.9;
    max-width: 94%;
    margin-bottom: 32px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 17px 18px;
    line-height: 1.35;
    text-align: center;
  }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; max-width: 100%; }
  .hero-meta .item {
    background: rgba(255, 251, 242, 0.78);
    border: 1px solid rgba(51, 39, 25, 0.11);
    border-radius: var(--r-md);
    padding: 12px 14px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(4px);
  }
  .hero-media::after {
    background:
      radial-gradient(420px 440px at 18% 32%, rgba(255,251,242,0.94) 0%, rgba(247,240,228,0.74) 52%, rgba(247,240,228,0.16) 78%, transparent 100%),
      linear-gradient(180deg, rgba(247,240,228,0.08) 0%, rgba(247,240,228,0.28) 62%, rgba(247,240,228,0.96) 100%),
      linear-gradient(105deg, rgba(247,240,228,0.92) 0%, rgba(239,226,204,0.54) 38%, rgba(131,85,54,0.05) 68%, transparent 100%);
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--akane);
  color: var(--cream);
  box-shadow: var(--shadow-md);
  padding: 18px 32px;
}
.btn-primary:hover {
  background: var(--akane-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-primary .arrow { transition: transform 0.2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-ghost {
  background: rgba(250, 245, 236, 0.9);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover {
  background: var(--cream);
  border-color: var(--wood);
  color: var(--wood);
}
.btn-leaf {
  background: var(--leaf);
  color: var(--cream);
}
.btn-leaf:hover { background: var(--leaf-dark); }

/* ---- Placeholder image style ---- */
.ph {
  position: relative;
  display: block;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(139, 94, 60, 0.10) 0,
      rgba(139, 94, 60, 0.10) 1px,
      transparent 1px,
      transparent 8px
    ),
    linear-gradient(135deg, var(--cream-3) 0%, var(--cream-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--ink-mute);
}
.ph.warm {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(139, 94, 60, 0.12) 0,
      rgba(139, 94, 60, 0.12) 1px,
      transparent 1px,
      transparent 9px
    ),
    linear-gradient(135deg, #C8A682 0%, #A47B53 60%, #8B5E3C 100%);
  color: rgba(250, 245, 236, 0.95);
}
.ph.leaf {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(64, 102, 49, 0.14) 0,
      rgba(64, 102, 49, 0.14) 1px,
      transparent 1px,
      transparent 9px
    ),
    linear-gradient(135deg, #A7BC8E 0%, #7C9E63 100%);
  color: rgba(250, 245, 236, 0.95);
}
.ph .ph-label {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  background: rgba(61, 46, 31, 0.6);
  color: var(--cream);
  padding: 5px 10px;
  border-radius: 6px;
  line-height: 1.2;
}
.ph .ph-corner {
  position: absolute;
  top: 14px; right: 14px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(250, 245, 236, 0.6);
}

.site-img {
  display: block;
  width: 100%;
  object-fit: cover;
  background: var(--cream-2);
}

/* ---- Pain Points ---- */
#pain {
  position: relative;
  background:
    linear-gradient(180deg, #F5EBDD 0%, #F5EBDD 132px, rgba(245,235,221,0.92) 220px, rgba(239,226,204,0.54) 100%),
    linear-gradient(rgba(131, 85, 54, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(131, 85, 54, 0.035) 1px, transparent 1px),
    radial-gradient(820px 380px at 88% 12%, rgba(169, 61, 53, 0.07), transparent 70%),
    radial-gradient(760px 360px at 12% 94%, rgba(54, 91, 46, 0.06), transparent 72%),
    var(--texture-paper);
  background-size: auto, 44px 44px, 44px 44px, auto, auto, 760px 760px;
  background-position: center;
  background-blend-mode: normal, normal, normal, normal, normal, multiply;
}
#pain::before {
  content: none;
}
#pain::after {
  content: none;
}
.pain-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.pain-head .section-eyebrow {
  color: var(--akane-dark);
}
.pain-head .section-eyebrow::before,
.pain-head .section-eyebrow::after {
  background: var(--akane-dark);
}
.pain-title {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.42;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.pain-title .accent {
  color: var(--stage-red);
}
.pain-lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 2;
  color: var(--ink-soft);
}

.pain-chart {
  max-width: 960px;
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255,248,234,0.82), rgba(244,230,206,0.96)),
    var(--texture-paper),
    rgba(255, 244, 226, 0.92);
  background-size: auto, 760px 760px, auto;
  background-blend-mode: normal, multiply, normal;
  border: 1px solid rgba(51, 39, 25, 0.24);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    var(--surface-highlight),
    0 22px 50px rgba(51,39,25,0.16),
    0 5px 14px rgba(51,39,25,0.08);
}
.pain-row {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(170px, 0.9fr) minmax(210px, 1.05fr) minmax(210px, 1fr);
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid rgba(51, 39, 25, 0.18);
  transition: background 0.2s ease;
}
.pain-row:last-child {
  border-bottom: none;
}
.pain-row:hover {
  background: rgba(169, 61, 53, 0.045);
}
.pain-num {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--akane-dark);
  background: rgba(123, 74, 43, 0.13);
  border-right: 1px solid rgba(51, 39, 25, 0.18);
}
.pain-symptom,
.pain-target,
.pain-cue {
  padding: 20px 22px;
  border-right: 1px solid rgba(51, 39, 25, 0.15);
}
.pain-cue {
  border-right: none;
}
.pain-row span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.pain-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
}
.pain-symptom strong {
  color: var(--stage-red);
}
.pain-cue p {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.pain-note {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 16px;
  text-align: center;
  color: var(--ink);
}
.pain-note mark {
  padding: 0 2px;
  color: inherit;
  background: linear-gradient(transparent 68%, rgba(169, 61, 53, 0.28) 68%);
}
/* ---- Services ---- */
#services {
  background:
    radial-gradient(850px 420px at 88% 12%, rgba(123, 74, 43, 0.18), transparent 68%),
    radial-gradient(620px 360px at 4% 94%, rgba(111, 23, 27, 0.075), transparent 70%),
    linear-gradient(180deg, rgba(219,196,158,0.54), rgba(241,229,209,0.84)),
    var(--texture-wood);
  background-size: auto, auto, auto, 980px 980px;
  background-blend-mode: normal, normal, normal, soft-light;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background:
    linear-gradient(180deg, rgba(255,248,234,0.82), rgba(244,230,206,0.96)),
    var(--texture-paper),
    var(--surface-strong);
  background-size: auto, 640px 640px, auto;
  background-blend-mode: normal, multiply, normal;
  border: 1px solid rgba(51, 39, 25, 0.24);
  border-radius: 20px;
  padding: 28px;
  box-shadow:
    var(--surface-highlight),
    0 16px 32px rgba(51, 39, 25, 0.14),
    0 3px 9px rgba(51, 39, 25, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--surface-highlight), var(--surface-depth);
  border-color: rgba(139, 94, 60, 0.35);
}
.service-card .head {
  display: flex; align-items: center; gap: 14px;
}
.service-card .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--wood);
  letter-spacing: 0.15em;
}
.service-card .ic {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #F0D9B0, var(--cream-3));
  border: 1px solid rgba(123, 74, 43, 0.20);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48), 0 7px 14px rgba(51,39,25,0.08);
  display: grid; place-items: center;
  color: var(--wood);
  flex-shrink: 0;
}
.service-card h3 {
  font-size: 22px;
  line-height: 1.4;
}
.service-card .desc {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}
.service-card .examples {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.service-card .examples span {
  font-size: 12px;
  color: var(--wood-dark);
  background: rgba(123, 74, 43, 0.13);
  border: 1px solid rgba(123, 74, 43, 0.16);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---- Strengths ---- */
.strengths {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #241809;
  padding: 130px 0;
  border-top: 1px solid rgba(180, 130, 57, 0.42);
  border-bottom: 1px solid rgba(180, 130, 57, 0.28);
}
.strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--texture-wood);
  background-size: 720px 720px;
  opacity: 0.14;
}
.strengths::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.5;
}
.strengths .divider-leaf {
  color: rgba(232, 197, 131, 0.76);
}
.strengths .section-eyebrow {
  color: rgba(232, 197, 131, 0.86);
}
.strengths .section-title {
  color: #F5EDDE;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}
.strengths .section-title .accent {
  color: var(--brass);
  -webkit-text-fill-color: var(--brass);
}
.strengths .section-lead {
  color: rgba(245, 237, 222, 0.72);
}
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .strengths-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .strengths {
    background: #241809;
    padding: 86px 0;
  }
  .strengths-grid {
    gap: 16px;
  }
  .strength-card {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
    align-items: start;
    background:
      linear-gradient(145deg, rgba(73, 50, 29, 0.94), rgba(31, 20, 10, 0.96)),
      var(--texture-wood),
      #2B1B0D;
    border-radius: 16px;
  }
  .strength-card .badge {
    width: 68px;
    height: 68px;
    border-width: 1px;
  }
  .strength-card .badge .num {
    font-size: 23px;
  }
  .strength-card .badge .label {
    font-size: 8px;
    letter-spacing: 0.14em;
    margin-top: 3px;
  }
  .strength-card h3 {
    font-size: 19px;
    line-height: 1.45;
    margin-bottom: 7px;
  }
  .strength-card p {
    font-size: 13px;
    line-height: 1.72;
  }
  .strength-card .tag {
    font-size: 10px;
    margin-top: 8px;
    padding: 3px 9px;
  }
}
.strength-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(73, 50, 29, 0.94), rgba(31, 20, 10, 0.96)),
    var(--texture-wood),
    #2B1B0D;
  background-size: auto, 720px 720px, auto;
  background-blend-mode: normal, soft-light, normal;
  border: 1px solid rgba(180, 130, 57, 0.36);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(232, 197, 131, 0.13),
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 5px 14px rgba(0, 0, 0, 0.18);
  align-items: start;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.strength-card .badge {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(53, 34, 17, 0.92), rgba(26, 17, 8, 0.96));
  border: 1.5px dashed rgba(232, 197, 131, 0.64);
  box-shadow: inset 0 1px 0 rgba(232, 197, 131, 0.12), 0 8px 18px rgba(0, 0, 0, 0.20);
  display: grid; place-items: center;
  text-align: center;
  position: relative;
}
.strength-card .badge .num {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 600;
  color: #E8C583;
  line-height: 1;
  letter-spacing: 0.03em;
}
.strength-card .badge .label {
  font-size: 10px;
  color: rgba(245, 237, 222, 0.58);
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.strength-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #F5EDDE;
}
.strength-card p {
  color: rgba(245, 237, 222, 0.74);
  font-size: 14.5px;
  line-height: 1.95;
}
.strength-card .tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #E8C583;
  background: rgba(180, 130, 57, 0.14);
  border: 1px solid rgba(232, 197, 131, 0.20);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 12px;
}

/* ---- Staff ---- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .staff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .staff-grid { grid-template-columns: 1fr; } }

.staff-card {
  background: #FFFCF5;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
}
.staff-card:hover { transform: translateY(-4px); }
.staff-card .photo {
  aspect-ratio: 4 / 5;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
}
.staff-card .body { padding: 22px; }
.staff-card .role {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--wood);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.staff-card .name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}
.staff-card .years {
  font-size: 12px;
  color: var(--ink-mute);
  margin-left: 8px;
}
.staff-card .quote {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--hand);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.staff-group {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 800px) { .staff-group { grid-template-columns: 1fr; } }
.staff-group .photo { aspect-ratio: 16 / 10; }
.staff-group .copy h3 { font-size: 26px; margin-bottom: 14px; }
.staff-group .copy p { color: var(--ink-soft); font-size: 15px; line-height: 2; }

/* ---- Cases ---- */
#cases {
  background:
    radial-gradient(760px 420px at 10% 10%, rgba(111, 23, 27, 0.075), transparent 70%),
    radial-gradient(780px 420px at 92% 18%, rgba(54, 91, 46, 0.085), transparent 74%),
    linear-gradient(180deg, rgba(241,229,209,0.88), rgba(224,205,174,0.62)),
    var(--texture-paper);
  background-size: auto, auto, auto, 900px 900px;
  background-blend-mode: normal, normal, normal, multiply;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 760px) { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,248,234,0.84), rgba(244,230,206,0.96)),
    var(--texture-paper),
    var(--surface-strong);
  background-size: auto, 680px 680px, auto;
  background-blend-mode: normal, multiply, normal;
  border: 1px solid rgba(51, 39, 25, 0.24);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    var(--surface-highlight),
    0 18px 38px rgba(51, 39, 25, 0.16),
    0 4px 11px rgba(51, 39, 25, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(131, 85, 54, 0.32);
  box-shadow:
    var(--surface-highlight),
    0 26px 52px rgba(51, 39, 25, 0.22),
    0 6px 16px rgba(51, 39, 25, 0.10);
}
.case-photo-wrap {
  position: relative;
  background: var(--wood-dark);
  isolation: isolate;
  display: grid;
  aspect-ratio: 16 / 9;
  gap: 2px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.case-photo-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-photo-triplet {
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "main detail-top"
    "main detail-bottom";
}
.case-photo-triplet .case-photo-main { grid-area: main; }
.case-photo-triplet .case-photo-detail-top { grid-area: detail-top; }
.case-photo-triplet .case-photo-detail-bottom { grid-area: detail-bottom; }
.case-photo-wrap picture {
  display: block;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.case-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 56%, rgba(51, 39, 25, 0.28) 100%),
    linear-gradient(135deg, rgba(180, 130, 57, 0.10), transparent 42%, rgba(111, 23, 27, 0.12));
  mix-blend-mode: multiply;
}
.case-photo-wrap::after {
  content: "施工記録";
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(51, 39, 25, 0.68);
  color: #FFF7E8;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
  backdrop-filter: blur(3px);
}
.case-photo-wrap .ph {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--line);
}
.case-photo {
  width: 100%;
  height: 100%;
  min-width: 0;
  filter: saturate(0.94) contrast(1.02) sepia(0.05);
  transform: scale(1.002);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.case-card:hover .case-photo {
  filter: saturate(1.02) contrast(1.04) sepia(0.03);
  transform: scale(1.025);
}
.case-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.case-ba .ph {
  aspect-ratio: 1 / 1;
  border-radius: 0;
  border: none;
}
.case-ba .ph:first-child { border-right: 1px solid var(--line); }
.case-ba .tag {
  position: absolute;
  top: 12px;
  padding: 4px 10px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.15em;
  border-radius: 999px;
  background: rgba(61, 46, 31, 0.78);
  color: var(--cream);
}
.case-ba .tag.before { left: 12px; }
.case-ba .tag.after  { right: 12px; background: var(--akane); }
.case-body {
  padding: 24px 24px 26px;
  flex: 1;
}
.case-body h3 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.case-body .desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 2;
}

/* ---- Voices ---- */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .voices-grid { grid-template-columns: 1fr; } }

.voice-card {
  background:
    linear-gradient(180deg, rgba(255,248,234,0.82), rgba(244,230,206,0.94)),
    var(--texture-paper);
  background-size: auto, 680px 680px;
  background-blend-mode: normal, multiply;
  border: 1px solid rgba(51, 39, 25, 0.23);
  border-radius: var(--r-lg);
  padding: 36px 30px 28px;
  position: relative;
  box-shadow: var(--surface-highlight), var(--shadow-sm);
}
.voice-card .mark {
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--wood);
  opacity: 0.35;
  line-height: 1;
}
.voice-card .body {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.voice-card .author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.voice-card .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-3);
  display: grid; place-items: center;
  color: var(--wood);
}
.voice-card .who {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink);
}
.voice-card .who span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ---- Process ---- */
.process {
  background:
    linear-gradient(rgba(123, 74, 43, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 74, 43, 0.045) 1px, transparent 1px),
    radial-gradient(760px 380px at 90% 14%, rgba(180, 130, 57, 0.13), transparent 72%),
    linear-gradient(180deg, rgba(123, 74, 43, 0.10), rgba(54, 91, 46, 0.075)),
    var(--texture-paper);
  background-size: 42px 42px, 42px 42px, auto, auto, 820px 820px;
  background-blend-mode: normal, normal, normal, normal, multiply;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background:
    linear-gradient(180deg, rgba(255,248,234,0.84), rgba(244,230,206,0.96)),
    var(--surface-strong);
  border: 1px solid rgba(51, 39, 25, 0.24);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  text-align: left;
  box-shadow: var(--surface-highlight), 0 14px 30px rgba(61, 46, 31, 0.14), 0 3px 8px rgba(61, 46, 31, 0.06);
}
.process-step .num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--wood);
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.process-step .ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #EFD6AB, var(--cream-2));
  border: 1px solid rgba(123, 74, 43, 0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.48), 0 6px 12px rgba(51,39,25,0.08);
  color: var(--wood);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.85;
}
.process-step .free {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--leaf-dark);
  background: rgba(92, 138, 74, 0.14);
  padding: 3px 9px;
  border-radius: 999px;
}

/* ---- Contact / Form ---- */
.contact {
  position: relative;
  background: linear-gradient(180deg, #521218, #390D11);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--texture-fabric) center / cover;
  opacity: 0.22;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--brass), transparent);
  opacity: 0.55;
}
.contact > .container-narrow {
  position: relative;
  z-index: 1;
}
.contact .divider-leaf {
  color: rgba(232, 197, 131, 0.78);
}
.contact .section-eyebrow {
  color: rgba(232, 197, 131, 0.88);
}
.contact .section-title {
  color: #F5EDDE;
}
.contact .section-title .accent {
  color: var(--brass);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: var(--brass);
}
.contact .section-lead {
  color: rgba(245, 237, 222, 0.78);
}
.contact-card {
  background:
    linear-gradient(180deg, rgba(255,248,234,0.88), rgba(244,230,206,0.97)),
    repeating-linear-gradient(
      45deg,
      rgba(139, 94, 60, 0.016) 0,
      rgba(139, 94, 60, 0.016) 1px,
      transparent 1px,
      transparent 12px
    ),
    var(--texture-paper),
    #FFFCF5;
  background-size: auto, auto, 760px 760px, auto;
  background-blend-mode: normal, normal, multiply, normal;
  border: 1px solid rgba(51, 39, 25, 0.26);
  border-radius: var(--r-xl);
  padding: 56px clamp(28px, 6vw, 64px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.84),
    inset 0 -1px 0 rgba(61,46,31,0.04),
    0 28px 62px rgba(61,46,31,0.20),
    0 7px 18px rgba(61,46,31,0.09);
  min-height: 360px;
}
.contact-head {
  text-align: center;
  margin-bottom: 16px;
}
.contact-note {
  text-align: center;
  background: rgba(184, 71, 61, 0.06);
  border: 1px dashed rgba(184, 71, 61, 0.35);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 0 auto 36px;
  max-width: 620px;
  line-height: 1.85;
}
.form-global-error {
  max-width: 620px;
  margin: -16px auto 28px;
  padding: 12px 16px;
  border: 1px solid rgba(184, 71, 61, 0.32);
  border-radius: var(--r-md);
  background: rgba(184, 71, 61, 0.06);
  color: var(--akane-dark);
  font-size: 13px;
  line-height: 1.75;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-bottom: 18px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.form-field label .req {
  font-size: 10px;
  background: var(--akane);
  color: var(--cream);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-family: var(--sans);
  font-weight: 500;
}
.form-field label .opt {
  font-size: 10px;
  background: var(--cream-3);
  color: var(--ink-mute);
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  font-family: var(--sans);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--cream);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--wood);
  background: #FFFDF6;
  box-shadow: 0 0 0 4px rgba(139, 94, 60, 0.12);
}
.form-field textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.85;
}
.form-field .err {
  color: var(--akane);
  font-size: 12px;
  display: none;
}
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
  border-color: var(--akane);
  background: rgba(184, 71, 61, 0.03);
}
.form-field.has-error .err { display: block; }
.form-file {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px;
  color: var(--ink-soft);
  padding: 14px 16px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--r-md);
  background: rgba(250, 245, 236, 0.5);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-file:hover {
  border-color: var(--wood);
  background: var(--cream);
}
.form-file input[type=file] { display: none; }
.form-file .filename {
  color: var(--wood);
  font-weight: 500;
  margin-left: auto;
  font-size: 13px;
}
.form-submit-row {
  margin-top: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.form-submit-row .btn-submit {
  background: var(--akane);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  padding: 20px 64px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: 0.08em;
}
.form-submit-row .btn-submit:hover {
  background: var(--akane-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.form-submit-row .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-sub {
  font-size: 12px;
  color: var(--ink-mute);
}

.success-card {
  text-align: center;
  min-height: 320px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.success-card:focus { outline: none; }
.success-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}
.success-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 2;
  max-width: 480px;
  margin: 0 auto 28px;
}

.contact-aside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  margin-top: 36px;
  padding: 20px 24px;
  border: 1px solid rgba(232, 197, 131, 0.34);
  border-radius: var(--r-md);
  background: rgba(20, 12, 7, 0.18);
  box-shadow: inset 0 1px 0 rgba(232, 197, 131, 0.06);
  font-size: 13px;
  color: rgba(245, 237, 222, 0.78);
}
.contact-aside-label {
  line-height: 1.8;
}
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  color: #F5EDDE;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-phone:hover {
  color: #E8C583;
}
.phone-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #E8C583;
}
.phone-number {
  font-family: var(--serif);
  font-size: 26px;
  color: #F5EDDE;
  letter-spacing: 0.06em;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .contact-aside {
    flex-direction: column;
    padding: 18px 16px;
    text-align: center;
  }
  .contact-phone {
    justify-content: center;
  }
  .phone-icon {
    width: 24px;
    height: 24px;
  }
  .phone-number {
    font-size: 23px;
    letter-spacing: 0.05em;
  }
}

/* ---- About / Company info ---- */
.about {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(820px 420px at 16% 16%, rgba(123, 74, 43, 0.15), transparent 68%),
    radial-gradient(680px 340px at 92% 78%, rgba(111, 23, 27, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(241,229,209,0.78), rgba(224,205,174,0.50)),
    var(--texture-wood);
  background-size: auto, auto, auto, 1040px 1040px;
  background-blend-mode: normal, normal, normal, soft-light;
}
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-intro h3 {
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-photo {
  margin-bottom: 28px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid rgba(51, 39, 25, 0.24);
  box-shadow: var(--surface-highlight), var(--shadow-md);
}
.about-intro p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 2;
}
.about-intro .seal {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border: 1.5px dashed var(--wood);
  border-radius: var(--r-md);
  background:
    linear-gradient(180deg, rgba(255,248,234,0.82), rgba(244,230,206,0.92)),
    rgba(255, 244, 226, 0.82);
  box-shadow: var(--surface-highlight), 0 12px 28px rgba(61, 46, 31, 0.12);
}
.about-intro .seal .ic {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--wood);
  color: var(--cream);
  display: grid; place-items: center;
}
.about-intro .seal .txt {
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
}
.about-intro .seal .txt span {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.about-table {
  background:
    linear-gradient(180deg, rgba(255,248,234,0.84), rgba(244,230,206,0.96)),
    var(--texture-paper),
    var(--surface-strong);
  background-size: auto, 760px 760px, auto;
  background-blend-mode: normal, multiply, normal;
  border: 1px solid rgba(51, 39, 25, 0.25);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--surface-highlight), var(--shadow-md);
}
.about-table dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  margin: 0;
}
@media (max-width: 560px) { .about-table dl { grid-template-columns: 110px 1fr; } }
.about-table dt,
.about-table dd {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.about-table dt {
  font-family: var(--serif);
  color: var(--ink);
  background: linear-gradient(180deg, #EAD6B5, var(--cream-2));
  font-weight: 500;
  letter-spacing: 0.05em;
}
.about-table dd { color: var(--ink-soft); }
.about-table dl > dt:last-of-type,
.about-table dl > dd:last-of-type {
  border-bottom: none;
}
.about-table dd .sub {
  display: block;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.about-table dd ul {
  padding: 0; margin: 0;
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 6px;
}
.about-table dd ul li {
  font-size: 12.5px;
  background: var(--cream-2);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ---- Privacy modal ---- */
.privacy-trigger {
  background: none;
  border: none;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration-color: rgba(232, 222, 201, 0.4);
}
.privacy-trigger:hover { color: #F4E9D2; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(46, 35, 23, 0.55);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  overscroll-behavior: contain;
  animation: modal-fade 0.2s ease;
}
.modal-overlay[hidden],
.contact-success-view[hidden] {
  display: none !important;
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #FFFCF5;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  max-width: 720px;
  width: 100%;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modal-pop 0.25s cubic-bezier(.4, 1.4, .6, 1);
}
@keyframes modal-pop {
  from { transform: translateY(12px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal-head {
  padding: 26px 32px 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.modal-head h3 {
  font-size: 22px;
  letter-spacing: 0.05em;
}
.modal-head .eyebrow {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--wood);
  letter-spacing: 0.2em;
  margin-bottom: 6px;
}
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--cream);
  color: var(--ink-soft);
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
  flex-shrink: 0;
}
.modal-close:hover { background: var(--cream-3); color: var(--ink); }
.modal-body {
  padding: 24px 32px 32px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-soft);
}
.modal-body h4 {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  margin: 24px 0 8px;
  padding-left: 12px;
  border-left: 3px solid var(--wood);
}
.modal-body h4:first-child { margin-top: 0; }
.modal-body p { margin: 0 0 10px; }
.modal-body ul {
  padding-left: 22px;
  margin: 6px 0 14px;
}
.modal-body li {
  margin-bottom: 4px;
}
.modal-body .updated {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
@media (max-width: 560px) {
  .modal-head { padding: 22px 22px 14px; }
  .modal-body { padding: 20px 22px 24px; }
}

/* Privacy consent on form */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
  padding: 16px 18px;
  background: rgba(250, 245, 236, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.form-consent:hover { background: var(--cream); border-color: var(--line-strong); }
.form-consent input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 1.5px solid var(--line-strong);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  display: grid; place-items: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.form-consent input[type=checkbox]:checked {
  background: var(--wood);
  border-color: var(--wood);
}
.form-consent input[type=checkbox]:checked::after {
  content: "";
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg) translateY(-1px);
}
.form-consent.has-error {
  border-color: var(--akane);
  background: rgba(184, 71, 61, 0.04);
}
.form-consent .link {
  color: var(--wood);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.form-consent .link:hover { color: var(--wood-dark); }

/* ---- Footer ---- */
.site-footer {
  background: #2E2317;
  color: #E8DEC9;
  padding: 72px 0 28px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.9  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23f)'/></svg>");
  pointer-events: none;
  opacity: 0.5;
}
.site-footer .inner { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 222, 201, 0.15);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #F4E9D2; }
.footer-brand .brand-sub { color: rgba(232, 222, 201, 0.6); }
.footer-brand p {
  font-size: 13px;
  color: rgba(232, 222, 201, 0.7);
  line-height: 1.9;
  margin-top: 18px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 13px;
  color: #F4E9D2;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col li {
  font-size: 13.5px;
  color: rgba(232, 222, 201, 0.75);
  margin-bottom: 8px;
  list-style: none;
  line-height: 1.7;
}
.footer-col ul { padding: 0; margin: 0; }
.footer-col a {
  color: rgba(232, 222, 201, 0.75);
  text-decoration: none;
}
.footer-col a:hover { color: #F4E9D2; }
.footer-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: rgba(232, 222, 201, 0.5);
  flex-wrap: wrap; gap: 12px;
}

/* ---- Fixed mobile CTA ---- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 245, 236, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(61, 46, 31, 0.08);
}
.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--akane);
  color: var(--cream);
  padding: 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
}
@media (max-width: 760px) {
  body {
    touch-action: pan-y;
    overscroll-behavior-x: none;
    overflow-x: clip;
  }
  .site-header {
    background:
      linear-gradient(180deg, rgba(255,251,242,0.97), rgba(247,240,228,0.91)),
      var(--texture-paper);
  }
  .site-header .inner {
    padding: 12px 18px 11px;
  }
  .brand {
    min-width: 0;
  }
  .brand-name {
    font-size: 16px;
  }
  .brand-sub {
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .menu-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }
  body.is-mobile-header-compact .menu-toggle {
    width: 36px;
    height: 36px;
  }
  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 10px);
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(51,39,25,0.16);
    border-top: 3px solid rgba(169,61,53,0.64);
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,251,242,0.98)),
      var(--texture-paper),
      #FFFCF5;
    background-size: auto, 640px 640px, auto;
    background-blend-mode: normal, multiply, normal;
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.78),
      0 22px 46px rgba(51,39,25,0.18),
      0 5px 14px rgba(51,39,25,0.08);
  }
  .site-header.menu-open .nav {
    display: grid;
    animation: mobile-nav-reveal 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  @keyframes mobile-nav-reveal {
    from {
      opacity: 0;
      transform: translate(-50%, 10px);
    }
    to {
      opacity: 1;
      transform: translate(-50%, 0);
    }
  }
  .nav a,
  .nav a:not(.nav-cta) {
    position: relative;
    display: block;
    padding: 12px 12px 12px 31px;
    border-radius: var(--r-sm);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 14px;
    white-space: nowrap;
    background: rgba(255, 251, 242, 0.34);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.34);
  }
  .nav a:not(.nav-cta):not(.nav-mobile-contact)::after {
    display: none;
  }
  .nav a:not(.nav-cta):not(.nav-mobile-contact)::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: linear-gradient(135deg, var(--brass), var(--akane-dark));
    box-shadow:
      0 0 0 4px rgba(180,130,57,0.10),
      0 2px 5px rgba(51,39,25,0.10);
    transform: translateY(-50%) rotate(45deg);
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .nav a + a {
    margin-top: 0;
    border-top: none;
  }
  .nav a:hover {
    background: rgba(131, 85, 54, 0.09);
    transform: none;
  }
  .nav a:not(.nav-cta):not(.nav-mobile-contact):hover::before,
  .nav a:not(.nav-cta):not(.nav-mobile-contact):focus-visible::before {
    background: linear-gradient(135deg, var(--akane-dark), var(--brass));
    box-shadow:
      0 0 0 4px rgba(169,61,53,0.12),
      0 3px 7px rgba(51,39,25,0.14);
    transform: translateY(-50%) rotate(45deg) scale(1.08);
  }
  .nav a.nav-mobile-contact {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
    padding: 11px 14px;
    border-top: none;
    border-radius: 999px;
    background:
      linear-gradient(135deg, #7D2A24, var(--akane) 62%, #C35C4D);
    color: var(--cream);
    font-family: var(--serif);
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid rgba(255, 239, 209, 0.20);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.20),
      0 8px 18px rgba(135,48,40,0.22);
  }
  .nav a.nav-mobile-contact::before {
    display: none;
  }
  .nav a.nav-mobile-contact:hover {
    background:
      linear-gradient(135deg, #6E211C, var(--akane-dark) 68%, #AA463B);
    color: var(--cream);
  }
  .nav .nav-cta {
    display: none;
  }
  body.is-mobile-header-compact .site-header {
    background:
      linear-gradient(180deg, rgba(255,251,242,0.98), rgba(247,240,228,0.95)),
      var(--texture-paper);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.78),
      0 9px 24px rgba(51, 39, 25, 0.12),
      0 2px 8px rgba(51, 39, 25, 0.06);
  }
  body.is-mobile-header-compact .site-header .inner {
    padding-top: 7px;
    padding-bottom: 7px;
  }
  body.is-mobile-header-compact .brand {
    gap: 9px;
  }
  body.is-mobile-header-compact .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  body.is-mobile-header-compact .brand-name {
    font-size: 14px;
  }
  body.is-mobile-header-compact .brand-sub {
    font-size: 9px;
    opacity: 0.72;
  }
  main,
  footer,
  section,
  .mobile-cta {
    max-width: 100vw;
    overflow-x: hidden;
  }
  img,
  svg,
  canvas,
  video,
  .site-img,
  .ph,
  .contact-card,
  .about-table,
  .hero-inner,
  .container,
  .container-narrow {
    max-width: 100%;
  }
  .mobile-cta { display: none; }
}

/* ---- Small-screen refinements ---- */
@media (max-width: 700px) {
  .container,
  .container-narrow {
    padding-left: 20px;
    padding-right: 20px;
  }
  section.section {
    padding: 88px 0;
  }
  section.section.tight {
    padding: 76px 0;
  }
  .section-title {
    font-size: 30px;
    line-height: 1.45;
    letter-spacing: 0.01em;
  }
  .section-lead {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 40px;
  }
  .pain-head {
    margin-bottom: 28px;
  }
  .pain-title {
    font-size: 31px;
    line-height: 1.36;
    margin-bottom: 16px;
  }
  .pain-lead {
    font-size: 14px;
    line-height: 1.75;
    max-width: 100%;
  }
  .pain-chart {
    border-radius: var(--r-lg);
  }
  .pain-row {
    grid-template-columns: 52px minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .pain-num {
    grid-row: 1 / 3;
    align-items: center;
    padding-top: 0;
    font-size: 16px;
  }
  .pain-symptom,
  .pain-target,
  .pain-cue {
    padding: 14px 16px;
    border-right: none;
    border-bottom: none;
  }
  .pain-symptom {
    grid-column: 2;
    grid-row: 1;
    border-right: 1px solid rgba(51, 39, 25, 0.08);
  }
  .pain-target {
    grid-column: 3;
    grid-row: 1;
  }
  .pain-cue {
    grid-column: 2 / 4;
    grid-row: 2;
    padding-top: 0;
    border-bottom: none;
    border-top: 1px solid rgba(51, 39, 25, 0.07);
  }
  .pain-row span {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
  }
  .pain-row strong {
    font-size: 16px;
    line-height: 1.45;
  }
  .pain-cue p {
    font-size: 12.5px;
    line-height: 1.65;
  }
  .process {
    padding: 72px 0;
  }
  .process .section-lead {
    margin-bottom: 30px !important;
  }
  .process-grid {
    gap: 14px;
  }
  .process-step {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 4px 13px;
    padding: 18px;
    border-radius: 16px;
    align-items: start;
  }
  .process-step .num {
    grid-column: 1 / -1;
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .process-step .ic {
    grid-column: 1;
    grid-row: 2 / 5;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 0;
  }
  .process-step .ic svg {
    width: 22px;
    height: 22px;
  }
  .process-step h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: 17px;
    line-height: 1.42;
    margin-bottom: 2px;
  }
  .process-step p {
    grid-column: 2;
    grid-row: 3;
    font-size: 12.8px;
    line-height: 1.62;
  }
  .process-step .free {
    grid-column: 2;
    grid-row: 4;
    width: max-content;
    margin-top: 5px;
    font-size: 9.5px;
    padding: 2px 8px;
  }
  .service-card,
  .strength-card,
  .case-card,
  .process-step,
  .about-table,
  .contact-card {
    border-radius: var(--r-lg);
  }
  .case-photo-wrap::after {
    left: 12px;
    bottom: 12px;
    font-size: 10px;
  }
  .contact-card {
    padding: 40px 24px;
  }
  .strengths {
    padding: 78px 0;
  }
  .strength-card {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 13px;
    padding: 18px;
  }
  .strength-card .badge {
    width: 64px;
    height: 64px;
  }
  .strength-card .badge .num {
    font-size: 22px;
  }
  .strength-card .badge .label {
    font-size: 7.5px;
    letter-spacing: 0.13em;
  }
  .strength-card h3 {
    font-size: 18.5px;
    line-height: 1.42;
    margin-bottom: 6px;
  }
  .strength-card p {
    font-size: 12.9px;
    line-height: 1.66;
  }
  .strength-card .tag {
    margin-top: 8px;
  }
  .contact-card,
  .contact-card form,
  .form-row,
  .form-field,
  .form-field input,
  .form-field select,
  .form-field textarea,
  .form-file,
  .form-submit-row,
  .form-submit-row .btn-submit {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .form-row {
    overflow: hidden;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    display: block;
    font-size: 16px;
  }
  .form-submit-row .btn-submit {
    width: 100%;
    justify-content: center;
    padding: 18px 18px;
    line-height: 1.45;
    text-align: center;
    white-space: normal;
    flex-wrap: wrap;
  }
  .form-file {
    align-items: flex-start;
    flex-wrap: wrap;
    line-height: 1.6;
  }
  .form-file .filename {
    width: 100%;
    margin-left: 32px;
  }
}

@media (max-width: 430px) {
  .container,
  .container-narrow {
    padding-left: 18px;
    padding-right: 18px;
  }
  section.section {
    padding: 76px 0;
  }
  .strengths {
    padding: 66px 0;
  }
  .hero {
    min-height: 840px;
  }
  .hero-inner {
    padding: 96px 18px 128px;
  }
  .hero-media .hero-img {
    object-position: 76% 50%;
    opacity: 0.86;
    transform-origin: 76% 50%;
  }
  .hero-media .hero-img-alt {
    object-position: 68% 50%;
    transform-origin: 68% 50%;
  }
  .hero-media::after {
    background:
      radial-gradient(360px 420px at 18% 30%, rgba(255,251,242,0.92) 0%, rgba(247,240,228,0.70) 50%, rgba(247,240,228,0.12) 76%, transparent 100%),
      linear-gradient(180deg, rgba(247,240,228,0.03) 0%, rgba(247,240,228,0.24) 58%, rgba(247,240,228,0.98) 100%),
      linear-gradient(102deg, rgba(247,240,228,0.88) 0%, rgba(239,226,204,0.44) 36%, rgba(131,85,54,0.02) 66%, transparent 100%);
  }
  .hero-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
    padding: 7px 12px;
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 31px;
    line-height: 1.44;
    margin-bottom: 22px;
  }
  .hero .lede {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 28px;
  }
  .hero-meta {
    margin-top: 30px;
  }
  .hero-meta .icon {
    width: 38px;
    height: 38px;
  }
  .hero-meta .label {
    font-size: 14px;
  }
  .hero-meta .sub {
    font-size: 11px;
  }
  .section-title {
    font-size: 28px;
  }
  .pain-title {
    font-size: 27px;
    margin-bottom: 14px;
  }
  .pain-head {
    margin-bottom: 24px;
  }
  .pain-lead {
    font-size: 13.5px;
    line-height: 1.65;
  }
  .pain-chart {
    border-radius: 14px;
  }
  .pain-row {
    grid-template-columns: 46px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
  }
  .pain-num {
    grid-row: 1 / 4;
    font-size: 14px;
  }
  .pain-symptom,
  .pain-target,
  .pain-cue {
    grid-column: 2;
    padding: 10px 12px;
    border-right: none;
  }
  .pain-symptom {
    grid-row: 1;
    border-right: none;
  }
  .pain-target {
    grid-row: 2;
    padding-top: 0;
  }
  .pain-cue {
    grid-row: 3;
    padding-top: 0;
    border-top: none;
  }
  .pain-row span {
    font-size: 9.5px;
    margin-bottom: 3px;
  }
  .pain-row strong {
    font-size: 15px;
    line-height: 1.42;
  }
  .pain-cue p {
    font-size: 12px;
    line-height: 1.55;
  }
  .section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.14em;
  }
  .section-eyebrow::before,
  .section-eyebrow::after {
    width: 18px;
  }
  .service-card,
  .strength-card,
  .process-step {
    padding: 24px;
  }
  .process {
    padding: 64px 0;
  }
  .process .section-lead {
    margin-bottom: 24px !important;
  }
  .process-grid {
    gap: 12px;
  }
  .process-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 3px 11px;
    padding: 15px;
    border-radius: 14px;
  }
  .process-step .num {
    font-size: 9px;
    letter-spacing: 0.14em;
    margin-bottom: 3px;
  }
  .process-step .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
  .process-step .ic svg {
    width: 20px;
    height: 20px;
  }
  .process-step h3 {
    font-size: 16px;
    line-height: 1.36;
    margin-bottom: 1px;
  }
  .process-step p {
    font-size: 12.2px;
    line-height: 1.54;
  }
  .process-step .free {
    margin-top: 4px;
    font-size: 9px;
  }
  .strength-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
  }
  .strength-card .badge {
    width: 58px;
    height: 58px;
  }
  .strength-card .badge .num {
    font-size: 20px;
  }
  .strength-card .badge .label {
    font-size: 7px;
    letter-spacing: 0.12em;
  }
  .strength-card h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 6px;
  }
  .strength-card p {
    font-size: 12.8px;
    line-height: 1.62;
  }
  .strength-card .tag {
    font-size: 9.5px;
    margin-top: 7px;
  }
  .case-body {
    padding: 22px;
  }
  .contact-card {
    padding: 32px 16px;
    border-radius: var(--r-md);
  }
  .contact-note {
    padding: 12px 14px;
    margin-bottom: 28px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 13px 12px;
  }
  .form-file {
    padding: 13px 12px;
  }
  .success-card {
    padding: 32px 8px;
  }
  .success-card h3 {
    font-size: 23px;
  }
  .contact-aside .phone {
    font-size: 22px;
  }
  .about-table dl {
    grid-template-columns: 1fr;
  }
  .about-table dt,
  .about-table dd {
    padding: 14px 18px;
  }
  .about-table dt {
    padding-bottom: 4px;
    border-bottom: none;
  }
  .about-table dd {
    padding-top: 4px;
  }
  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 380px) {
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-actions .btn {
    font-size: 14px;
  }
  .container,
  .container-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }
  .contact-card {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ---- Fade-in on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-media .hero-img {
    animation: none;
    transform: scale(1);
    will-change: auto;
  }
  .hero-media .hero-img-alt {
    animation: none;
    opacity: 0;
    transform: scale(1);
    will-change: auto;
  }
  @media (max-width: 700px) {
    .hero-media .hero-img {
      transform: scale(1.02);
    }
    .hero-media .hero-img-alt {
      transform: scale(1.02);
    }
  }
}

/* ---- Decorative dividers ---- */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--wood);
  opacity: 0.55;
  margin: 0 auto 18px;
}
.divider-leaf .line {
  height: 1px;
  width: 56px;
  background: currentColor;
}

/* ---- Tweaks panel small overrides ---- */
.tweak-card {
  font-family: var(--sans) !important;
}

/* ============================================================
   Top hero refresh
   ============================================================ */
.hero {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}
.hero::after {
  display: none;
}
.hero-stage {
  position: relative;
  height: clamp(600px, calc(100svh - 80px), 940px);
  overflow: hidden;
  background: #3B2114;
}
.hero-stage .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.96) contrast(1.02) sepia(0.04);
  animation: hero-image-intro 2.6s cubic-bezier(0.22, 0.6, 0.24, 1) both;
  transform-origin: center;
}
@keyframes hero-image-intro {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(96deg, rgba(245, 237, 222, 0.55) 0%, rgba(245, 237, 222, 0.12) 30%, rgba(24, 12, 8, 0.12) 55%, rgba(24, 12, 8, 0.52) 100%),
    linear-gradient(180deg, rgba(24, 12, 8, 0.14), transparent 26%, transparent 68%, rgba(24, 12, 8, 0.32));
}
.hero h1.hero-title {
  position: absolute;
  top: 47%;
  right: clamp(60px, 9vw, 150px);
  z-index: 2;
  transform: translateY(-50%);
  margin: 0;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-weight: 600;
  font-size: min(4.3vw, 6.8svh, 56px);
  line-height: 1.92;
  letter-spacing: 0.14em;
  color: #FFF7E8;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #FFF7E8;
  text-shadow: 0 2px 26px rgba(20, 10, 6, 0.55);
  animation: hero-title-fade 1.6s 0.25s ease both;
}
.hero-title > span {
  white-space: nowrap;
}
.hero h1.hero-title .accent {
  color: #E8C583;
  background: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #E8C583;
}
.hero h1.hero-title .accent::after {
  display: none;
}
@keyframes hero-title-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.hero .hero-eyebrow {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 2;
  width: clamp(28px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(232, 197, 131, 0.34);
  border-radius: 0;
  background: rgba(20, 12, 7, 0.34);
  backdrop-filter: none;
  color: rgba(255, 247, 232, 0.92);
}
.hero .hero-eyebrow span {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 10.5px;
  letter-spacing: 0.42em;
  white-space: nowrap;
}
.hero-scroll {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll em {
  writing-mode: vertical-rl;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.3em;
  color: rgba(255, 247, 232, 0.85);
}
.hero-scroll .line {
  position: relative;
  width: 1px;
  height: 64px;
  overflow: hidden;
  background: rgba(255, 247, 232, 0.4);
}
.hero-scroll .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 22px;
  background: #FFF7E8;
  animation: hero-scroll-line 2.6s ease-in-out infinite;
}
@keyframes hero-scroll-line {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(40px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
.hero-hem {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 7px;
  background: var(--stage-red);
}
.hero-hem::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.hero-panel {
  position: absolute;
  left: clamp(20px, 5vw, 84px);
  bottom: clamp(48px, 8vh, 84px);
  z-index: 3;
  width: min(520px, calc(100% - 40px));
  padding: clamp(24px, 3vw, 34px) clamp(22px, 3vw, 36px) clamp(24px, 3vw, 32px);
  border: 1px solid rgba(123, 74, 43, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.97), rgba(250, 244, 231, 0.94)),
    var(--texture-paper);
  background-size: auto, 640px 640px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 20px 42px rgba(20, 10, 6, 0.24);
  animation: hero-panel-rise 1.1s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes hero-panel-rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.hero-panel p {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 2.15;
  color: var(--ink-soft);
}
.hero-panel-actions {
  display: flex;
  align-items: center;
  gap: 18px 22px;
  flex-wrap: wrap;
}
.hero-panel .btn-primary {
  padding: 16px 24px;
}
.hero-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 13.5px;
  text-decoration: none;
}
.hero-link:hover {
  border-color: var(--stage-red);
  color: var(--stage-red);
}
.hero-trust {
  position: relative;
  z-index: 2;
  padding: 24px 28px 0;
  background: var(--cream);
}
.hero-trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(255, 251, 242, 0.90), rgba(247, 240, 228, 0.90)),
    var(--texture-paper);
  background-size: auto, 640px 640px;
  box-shadow: var(--shadow-sm);
}
.hero-trust-item {
  min-width: 0;
  padding: 20px 24px;
}
.hero-trust-item + .hero-trust-item {
  border-left: 1px solid var(--line);
}
.hero-trust-item strong {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.hero-trust-item strong::before {
  content: "◆";
  flex: 0 0 auto;
  color: var(--stage-red);
  font-size: 8px;
}
.hero-trust-item span {
  display: block;
  margin-top: 3px;
  padding-left: 18px;
  font-size: 11.5px;
  line-height: 1.7;
  color: var(--ink-mute);
}

@media (max-width: 920px) {
  .hero-stage {
    height: 66svh;
    min-height: 470px;
    max-height: 680px;
  }
  .hero h1.hero-title {
    right: 52px;
    font-size: min(8vw, 5.6svh, 38px);
  }
  .hero-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: -64px 16px 0;
    animation-delay: 0.35s;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    gap: 5px;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  body.is-mobile-header-compact .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 0;
  }
  .menu-toggle span:nth-child(3) {
    width: 10px;
    align-self: flex-start;
    margin-left: 11px;
  }
  .site-header.menu-open .menu-toggle span:nth-child(1),
  .site-header.menu-open .menu-toggle span:nth-child(2),
  .site-header.menu-open .menu-toggle span:nth-child(3) {
    opacity: 1;
    transform: none;
  }
  .nav {
    position: absolute;
    left: 50%;
    right: auto;
    top: 100%;
    width: 100vw;
    display: none;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0;
    padding: 6px 18px 20px;
    transform: translateX(-50%);
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(255, 251, 242, 0.98), rgba(247, 240, 228, 0.98)),
      var(--texture-paper);
    background-size: auto, 640px 640px;
    box-shadow: 0 18px 34px rgba(51, 39, 25, 0.16);
  }
  .site-header.menu-open .nav {
    display: grid;
  }
  .nav a,
  .nav a:not(.nav-cta) {
    display: block;
    padding: 13px 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    box-shadow: none;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    text-align: center;
    white-space: normal;
  }
  .nav a:not(.nav-cta):not(.nav-mobile-contact)::before,
  .nav a:not(.nav-cta):not(.nav-mobile-contact)::after {
    display: none;
  }
  .nav a:hover {
    background: rgba(131, 85, 54, 0.06);
    color: var(--stage-red);
  }
  .nav a.nav-mobile-contact {
    grid-column: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 14px 16px;
    border: 0;
    border-radius: var(--r-md);
    background: var(--stage-red);
    color: #FFF7E8;
    font-family: var(--serif);
    font-size: 14.5px;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 18px rgba(111, 23, 27, 0.22);
  }
  .nav a.nav-mobile-contact:hover {
    background: #571013;
    color: #FFF7E8;
  }
  .hero-panel-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-panel .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .hero-link {
    align-self: flex-start;
  }
  .hero-trust {
    padding: 20px 16px 0;
  }
  .hero-trust-inner {
    grid-template-columns: 1fr;
  }
  .hero-trust-item {
    padding: 18px 20px;
  }
  .hero-trust-item + .hero-trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 0;
  }
  .hero-stage .hero-img {
    object-position: center 38%;
  }
  .hero h1.hero-title {
    right: 48px;
    font-size: min(8vw, 5.4svh, 34px);
    line-height: 1.82;
    letter-spacing: 0.11em;
  }
  .hero-panel {
    margin-right: 18px;
    margin-left: 18px;
    padding: 26px 22px;
    border-radius: var(--r-lg);
  }
  .hero-panel p {
    font-size: 14px;
    line-height: 2;
  }
}

@media (max-width: 380px) {
  .hero h1.hero-title {
    font-size: min(8vw, 5.2svh, 32px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stage .hero-img,
  .hero h1.hero-title,
  .hero-panel,
  .hero-scroll .line::after {
    animation: none;
    transform: none;
  }
  .hero h1.hero-title {
    transform: translateY(-50%);
  }
  .site-header.menu-open .nav {
    animation: none;
  }
}
