:root {
  --ink: #10241e;
  --ink-soft: #2f463e;
  --paper: #f6fcf9;
  --paper-deep: #e8f6f0;
  --mist: #d8f0e6;
  --fog: #f3faf7;
  --leaf: #1a8768;
  --leaf-mid: #249e78;
  --leaf-deep: #0a4d3c;
  --footer-green: #147a5c;
  --footer-green-deep: #0a4d3c;
  --bloom: #e87550;
  --bloom-soft: #ffd4c4;
  --clay: #a8c4b8;
  --line: rgba(10, 77, 60, 0.14);
  --line-strong: rgba(10, 77, 60, 0.22);
  --white: #ffffff;
  --shadow-soft: 0 22px 54px rgba(15, 95, 74, 0.1);
  --shadow-frame: 0 18px 42px rgba(15, 95, 74, 0.1), 0 2px 8px rgba(15, 95, 74, 0.05);
  --font-display: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-media: 0;
  --frame-pad: 0.85rem;
  --frame-green: #d7efe3;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(980px 520px at 8% -8%, rgba(240, 138, 104, 0.14), transparent 58%),
    radial-gradient(860px 480px at 96% 12%, rgba(31, 154, 120, 0.12), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, var(--fog) 42%, var(--paper) 100%);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(232, 117, 80, 0.22);
  color: var(--ink);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
}

h1,
h2,
h3,
.brand,
.brand-mark,
.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem max(1.75rem, env(safe-area-inset-right)) 0.95rem max(1.75rem, env(safe-area-inset-left));
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(15, 95, 74, 0.06);
}

.brand {
  position: relative;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  line-height: 1;
}

.brand-icon {
  display: block;
  width: 2.85rem;
  height: auto;
  flex-shrink: 0;
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--leaf-deep);
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 3.1rem;
  width: auto;
  filter: none;
  opacity: 1;
}

.brand-logo-hero {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 2px rgba(8, 32, 26, 0.45)) drop-shadow(0 10px 22px rgba(8, 32, 26, 0.35));
}

.brand-logo-footer {
  display: block;
  margin: 0 auto;
  height: 3.6rem;
  width: auto;
}

.brand-tagline {
  margin: 0 0 0.85rem;
  max-width: none;
  font-size: min(1.42rem, calc(100cqw / 27.2));
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.7;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(8, 32, 26, 0.55), 0 8px 22px rgba(8, 32, 26, 0.45);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.site-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.2rem 0;
  opacity: 0;
  transform: translateY(-6px);
  animation: nav-rise 0.55s var(--ease) forwards;
  transition: color 0.3s var(--ease);
}

.site-nav a:nth-child(1) { animation-delay: 0.08s; }
.site-nav a:nth-child(2) { animation-delay: 0.14s; }
.site-nav a:nth-child(3) { animation-delay: 0.2s; }
.site-nav a:nth-child(4) { animation-delay: 0.26s; }
.site-nav a:nth-child(5) { animation-delay: 0.32s; }
.site-nav a:nth-child(6) { animation-delay: 0.38s; }
.site-nav a:nth-child(7) { animation-delay: 0.44s; }
.site-nav a:nth-child(8) { animation-delay: 0.5s; }

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: var(--bloom);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--leaf-deep);
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  color: #fff;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 1.15rem 0.5rem;
  background: linear-gradient(180deg, var(--footer-green) 0%, var(--footer-green-deep) 100%);
  box-shadow: 0 8px 20px rgba(20, 122, 92, 0.22);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-nav .nav-cta:hover {
  background: linear-gradient(180deg, #1a9170 0%, var(--footer-green) 100%);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20, 122, 92, 0.28);
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 42;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}

.site-header.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.site-header.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(15, 95, 74, 0.28);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: 40% center;
  transform: scale(1.14) translate3d(8%, 0, 0);
  filter: brightness(1.16) contrast(1.05) saturate(1.08);
  animation: hero-drift 22s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12, 36, 28, 0.46) 0%, rgba(12, 42, 32, 0.22) 42%, transparent 70%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.16) 0%, rgba(20, 122, 92, 0.12) 40%, rgba(10, 77, 60, 0.58) 100%);
}

.hero-dream-glow {
  display: none;
}

@media (min-width: 901px) {
  .hero-media img {
    object-position: 34% center;
    filter: brightness(1.2) contrast(1.04) saturate(1.1);
  }

  .hero-veil {
    background:
      linear-gradient(100deg, rgba(12, 36, 28, 0.5) 0%, rgba(12, 42, 32, 0.28) 32%, rgba(10, 40, 32, 0.06) 56%, transparent 74%),
      linear-gradient(180deg, rgba(255, 250, 240, 0.16) 0%, rgba(20, 122, 92, 0.06) 38%, rgba(10, 77, 60, 0.5) 100%),
      radial-gradient(ellipse at 78% 18%, rgba(255, 244, 214, 0.42), transparent 48%);
  }

  .hero-dream-glow {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 82% 20%, rgba(255, 236, 190, 0.35), transparent 28%),
      radial-gradient(circle at 60% 10%, rgba(255, 255, 255, 0.18), transparent 34%);
    animation: dream-pulse 10s var(--ease) infinite alternate;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(56rem, calc(100% - 3.5rem));
  margin: 0;
  padding: 7.8rem 1.5rem 3.8rem clamp(4.75rem, 7.5vw, 7.25rem);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.15s var(--ease) 0.2s forwards;
  container-type: inline-size;
}

.brand-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(420px, 88vw);
  margin: 0.15rem 0 1.35rem;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.brand-claude {
  display: block;
  width: fit-content;
  margin: 0 0 0.45rem 23.2%;
  padding: 0.22em 0.72em 0.26em;
  border-radius: 999px;
  background: #e87550;
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-shadow: none;
  box-shadow: 0 8px 18px rgba(168, 62, 36, 0.22);
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.55rem, 5.8vw, 4.2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(8, 32, 26, 0.55), 0 10px 24px rgba(8, 32, 26, 0.4);
}

.hero h1::after {
  content: "";
  display: block;
  width: 2.2rem;
  height: 2px;
  margin-top: 0.85rem;
  background: var(--bloom);
}

.hero h1 span {
  display: block;
  white-space: nowrap;
  font-size: min(1em, calc(100cqw / 17.6));
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: none;
  font-size: 1.14rem;
  line-height: 2;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 2px rgba(8, 32, 26, 0.55), 0 8px 18px rgba(8, 32, 26, 0.4);
}

.hero-lead span {
  display: block;
  white-space: nowrap;
  font-size: min(1em, calc(100cqw / 23.4));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.1rem;
  justify-content: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.95rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(180deg, #1a8f6c 0%, var(--footer-green-deep) 100%);
  color: #fff;
  border-color: rgba(20, 122, 92, 0.3);
  box-shadow:
    0 12px 28px rgba(20, 122, 92, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #1a9170 0%, var(--footer-green) 100%);
}

.btn-ghost {
  border-color: rgba(255, 248, 236, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 248, 236, 0.8);
}

.section {
  padding: 6.5rem 0;
}

.section-inner {
  width: min(1040px, calc(100% - 2.75rem));
  margin: 0 auto;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--bloom);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.eyebrow::before {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border: none;
  background: var(--bloom);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(232, 117, 80, 0.16);
}

.section h2 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.15rem, 4.4vw, 3.05rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.section-inner > h2::after,
.method-copy > h2::after,
.consultant-heading h2::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2px;
  margin-top: 0.95rem;
  background: var(--bloom);
}

.section-lead {
  margin: 0 0 2.8rem;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
  line-height: 2;
  font-weight: 500;
}

.booking-lead {
  max-width: none;
}

.booking-lead span {
  display: block;
  white-space: nowrap;
  font-size: min(1.12rem, calc((100vw - 3rem) / 34));
}

.flow-lead {
  max-width: none;
}

.flow-lead span {
  display: block;
  white-space: nowrap;
  font-size: min(1.12rem, calc((100vw - 3rem) / 38));
}

.who {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.99)),
    var(--white);
  border-block: 1px solid var(--line);
}

.voices {
  background:
    radial-gradient(720px 320px at 8% 0%, rgba(240, 138, 104, 0.12), transparent 58%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}

.voices .section-inner {
  width: min(1120px, calc(100% - 2.75rem));
}

.voices-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.78fr);
  gap: 1.6rem 2.2rem;
  align-items: center;
}

.voices-copy {
  container-type: inline-size;
  min-width: 0;
}

.voices-lines {
  display: grid;
  gap: 1.6rem;
  margin: 0 0 1.7rem;
}

.voices-lines p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 2.1vw, 1.32rem);
  font-weight: 500;
  line-height: 2.15;
}

.voices h2 {
  max-width: none;
  margin: 0;
  padding-top: 0.2rem;
  color: var(--leaf-deep);
  font-size: min(1.85rem, calc(100cqw / 26.6));
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0;
}

.voices-visual {
  position: relative;
  margin: 0;
  padding: 0.72rem;
  background: linear-gradient(155deg, #f7fcf9 0%, var(--frame-green) 58%, #c7e6d6 100%);
  border: 1px solid rgba(15, 110, 82, 0.3);
  box-shadow:
    0 16px 36px rgba(15, 95, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.voices-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.who-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0;
  display: grid;
  gap: 1.6rem;
  border-top: 1px solid rgba(20, 122, 92, 0.16);
  padding-top: 2rem;
}

.who-list li {
  display: grid;
  grid-template-columns: minmax(9.5rem, 12.5rem) 1fr;
  gap: 1.35rem 1.9rem;
  align-items: center;
  padding: 0.35rem 0 1.55rem;
  border-bottom: 1px solid var(--line);
}

.who-visual {
  position: relative;
  padding: 0.72rem;
  background: linear-gradient(155deg, #f7fcf9 0%, var(--frame-green) 58%, #c7e6d6 100%);
  border: 1px solid rgba(15, 110, 82, 0.3);
  box-shadow:
    0 16px 36px rgba(15, 95, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.who-visual::before,
.voices-visual::before,
.build-visual::before,
.consultant-shot::before {
  content: "";
  position: absolute;
  inset: 0.36rem;
  border: 1px solid rgba(232, 117, 80, 0.38);
  pointer-events: none;
  z-index: 1;
}

.who-visual::after,
.voices-visual::after,
.build-visual::after,
.consultant-shot::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--bloom);
  transform: rotate(45deg);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.who-visual img,
.voices-visual img,
.build-visual img,
.consultant-shot img {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.82);
}

.who-visual img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}

.who-copy {
  display: grid;
  gap: 0.45rem;
}

.who-label {
  position: relative;
  display: inline-block;
  padding-left: 0.95rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--leaf-deep);
  letter-spacing: 0.08em;
}

.who-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 2px;
  background: linear-gradient(180deg, var(--bloom), rgba(240, 138, 104, 0.2));
}

.who-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.95;
  font-weight: 500;
}

.build {
  background:
    radial-gradient(760px 360px at 88% 4%, rgba(240, 138, 104, 0.14), transparent 58%),
    radial-gradient(640px 300px at 8% 90%, rgba(31, 154, 120, 0.06), transparent 55%),
    linear-gradient(180deg, #dff5eb 0%, var(--paper) 48%, #eefaf4 100%);
}

.build-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.build-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem 1.5rem;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(240, 138, 104, 0.22);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.build-list li.is-visible {
  opacity: 1;
  transform: none;
}

.build-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.build-list .num {
  font-family: var(--font-display);
  color: var(--bloom);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  padding-top: 0.45rem;
}

.build-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.7rem 2.4rem;
  align-items: center;
}

.build-list li:nth-child(even) .build-body {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.build-list li:nth-child(even) .build-visual {
  order: 2;
}

.build-list li:nth-child(even) .build-copy {
  order: 1;
}

.build-visual {
  position: relative;
  overflow: hidden;
  padding: var(--frame-pad);
  background: linear-gradient(155deg, #f7fcf9 0%, var(--frame-green) 58%, #c7e6d6 100%);
  border: 1px solid rgba(15, 110, 82, 0.3);
  box-shadow:
    0 16px 36px rgba(15, 95, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.build-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.8s var(--ease);
  filter: saturate(0.94) contrast(1.03);
}

.build-list li.is-visible:hover .build-visual {
  box-shadow: 0 26px 58px rgba(15, 95, 74, 0.13), 0 3px 10px rgba(15, 95, 74, 0.05);
}

.build-list li.is-visible:hover .build-visual img {
  transform: scale(1.03);
}

.build-copy {
  container-type: inline-size;
}

.build-list h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.build-list h3.build-oneline {
  white-space: nowrap;
  letter-spacing: 0;
  font-size: min(2rem, calc(100cqw / 13.1));
}

.build-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.95;
}

.method {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 36rem;
  padding: 0;
  background:
    linear-gradient(180deg, #f7fcfa 0%, var(--white) 100%);
  overflow: hidden;
  border-block: 1px solid rgba(240, 138, 104, 0.22);
}

.method-visual {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 1.6rem 0 1.6rem 1.6rem;
  background:
    radial-gradient(500px 280px at 20% 50%, rgba(240, 138, 104, 0.1), transparent 70%),
    var(--paper-deep);
}

.method-visual::after {
  content: none;
}

.method-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 22rem;
  padding: var(--frame-pad);
  background: linear-gradient(155deg, #f7fcf9 0%, var(--frame-green) 58%, #c7e6d6 100%);
  border: 1px solid rgba(15, 110, 82, 0.3);
  box-shadow:
    0 16px 36px rgba(15, 95, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  filter: saturate(0.92) contrast(1.03);
  box-sizing: border-box;
}

.method-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.4rem 2.8rem 4.4rem 2.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 249, 0.55));
}

.method-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.method-points li {
  position: relative;
  padding: 0.15rem 0 0.15rem 1.35rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.method-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid var(--bloom);
  background: rgba(232, 117, 80, 0.18);
  transform: rotate(45deg);
}

.consultant {
  background:
    radial-gradient(640px 320px at 8% 12%, rgba(31, 154, 120, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-block: 1px solid var(--line);
}

.consultant .section-inner {
  width: min(1160px, calc(100% - 2.75rem));
}

.consultant-gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.78fr);
  gap: 0.8rem;
  margin-bottom: 1.7rem;
  align-items: stretch;
}

.shot-aside {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
  min-width: 0;
}

.shot-peak {
  margin-top: 0;
}

.consultant-shot {
  position: relative;
  margin: 0;
  padding: 0.68rem;
  background: linear-gradient(155deg, #f7fcf9 0%, var(--frame-green) 58%, #c7e6d6 100%);
  border: 1px solid rgba(15, 110, 82, 0.3);
  box-shadow:
    0 16px 36px rgba(15, 95, 74, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.consultant-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-trail {
  grid-column: 1;
  grid-row: 1;
}

.shot-trail img {
  height: min(38rem, 72vh);
  object-position: center 72%;
}

.shot-peak {
  margin-top: auto;
}

.shot-peak img {
  height: auto;
  aspect-ratio: 490 / 594;
  object-fit: cover;
  object-position: center 62%;
}

.consultant-motto {
  margin: 0.55rem 0 1.7rem;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 2px solid var(--bloom);
}

.consultant-motto-title {
  margin: 0 0 0.4rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.consultant-motto-lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.3vw, 1.45rem);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.consultant-film {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.92fr 1fr;
  gap: 0.7rem;
  align-items: end;
  margin: 0 0 1.6rem;
}

.consultant-film img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.film-sunrise img {
  height: 12.5rem;
  object-position: center 42%;
}

.film-together {
  margin-bottom: 1.1rem;
}

.film-together img {
  height: 15.5rem;
  object-position: center 28%;
}

.film-ridge img {
  height: 13.5rem;
  object-position: 62% 48%;
}

.film-clouds img {
  height: 15.2rem;
  object-position: 72% 42%;
}

.consultant-family {
  margin: 0.55rem 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.consultant-nameplate {
  position: absolute;
  left: 1.15rem;
  top: 1.15rem;
  z-index: 2;
  max-width: 16.5rem;
  padding: 1rem 1.15rem 0.95rem;
  background: rgba(244, 251, 248, 0.94);
  border-left: 3px solid #8dceb4;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 32px rgba(15, 95, 74, 0.14);
}

.consultant-heading {
  margin: 0 0 1.6rem;
}

.consultant-heading h2 {
  margin: 0 0 0.45rem;
}

.consultant-company {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.consultant-person {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.consultant-kana {
  margin: 0.2rem 0 0.35rem;
  color: var(--footer-green);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.consultant-role {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.consultant-card {
  display: grid;
  grid-template-columns: minmax(21rem, 25rem) minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(20, 122, 92, 0.16);
  box-shadow: 0 22px 48px rgba(15, 95, 74, 0.07);
}

.consultant-years-wrap {
  --axis: 0.35rem;
  position: relative;
  padding: 1.7rem 1.45rem 1.85rem 1.45rem;
  background: linear-gradient(180deg, #f6fcf9 0%, #e8f6f0 100%);
  border-right: 1px solid rgba(20, 122, 92, 0.12);
}

.consultant-face {
  width: 6.2rem;
  height: 6.2rem;
  margin: 0 0 1.35rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--frame-green);
  box-shadow:
    0 0 0 1px rgba(20, 122, 92, 0.34),
    0 12px 26px rgba(15, 95, 74, 0.14);
  position: relative;
  z-index: 1;
}

.consultant-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}

.consultant-years {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0 0 calc(var(--axis) + 1.15rem);
  display: grid;
  gap: 0;
  position: relative;
}

.consultant-years::before {
  content: "";
  position: absolute;
  left: var(--axis);
  top: 0.35rem;
  bottom: 0.55rem;
  width: 1px;
  background: linear-gradient(180deg, var(--footer-green), rgba(20, 122, 92, 0.12));
}

.consultant-years li {
  position: relative;
  padding: 0 0 1.45rem;
  background: none;
  border: 0;
}

.consultant-years li:last-child {
  padding-bottom: 0;
  background: none;
}

.consultant-years li:nth-child(even) {
  background: none;
}

.consultant-years li::before {
  content: "";
  position: absolute;
  left: -1.42rem;
  top: 0.32rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--footer-green);
  box-shadow: 0 0 0 4px rgba(20, 122, 92, 0.1);
  display: block;
}

.consultant-years li:last-child::before {
  background: var(--footer-green);
}

.consultant-years li:last-child span,
.consultant-years li:last-child p {
  color: inherit;
}

.consultant-years li:last-child span {
  color: var(--footer-green);
}

.consultant-years li:last-child p {
  color: var(--ink-soft);
}

.consultant-years span {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--footer-green);
  font-family: "Shippori Mincho", serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.consultant-years p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.02em;
  line-break: strict;
  text-wrap: pretty;
}

.consultant-letter {
  padding: 1.9rem 2rem 2rem 2.15rem;
}

.consultant-letter p {
  margin: 0 0 1.55rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.02em;
  line-break: strict;
  text-wrap: pretty;
}

.consultant-letter p:first-of-type {
  font-size: 1.18rem;
  line-height: 2.15;
}

.consultant-letter p:last-child {
  margin-bottom: 0;
}

.consultant-credo {
  margin: 0.35rem 0.15rem 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.consultant-sign {
  display: block;
  margin-top: 0.35rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(20, 122, 92, 0.16);
  font-family: "Shippori Mincho", serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--footer-green-deep);
}

.flow {
  background:
    radial-gradient(720px 360px at 10% 0%, rgba(31, 154, 120, 0.07), transparent 55%),
    radial-gradient(520px 280px at 95% 80%, rgba(240, 138, 104, 0.1), transparent 60%),
    linear-gradient(180deg, #e8f7f0 0%, var(--paper) 100%);
}

.flow-steps {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.flow-steps li {
  position: relative;
  padding: 1.45rem 1.25rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 252, 249, 0.88));
  border: 1px solid rgba(20, 122, 92, 0.16);
  box-shadow: 0 16px 36px rgba(15, 95, 74, 0.06);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(232, 117, 80, 0.45);
  background: linear-gradient(160deg, #fff8f4, #ffe8dc);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--bloom);
}

.flow-steps h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
  color: var(--leaf-deep);
}

.flow-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.booking {
  background: var(--white);
  padding-top: 4rem;
  padding-bottom: 2.8rem;
}

.booking-bottom {
  background:
    linear-gradient(180deg, var(--mist), var(--paper));
  padding-bottom: 4rem;
  border-top: 1px solid var(--line);
}

.booking-inner {
  width: min(52rem, calc(100% - 2.75rem));
}

.booking-frame {
  margin-top: 0.2rem;
  padding: 1.05rem 0.95rem 1.15rem;
  background:
    linear-gradient(180deg, #f7fcf9 0%, #ffffff 1.6rem);
  border: 1px solid rgba(20, 122, 92, 0.2);
  box-shadow: var(--shadow-frame);
  overflow: visible;
}

.booking-note {
  margin: 0 0 1.35rem;
  padding: 0.95rem 1.15rem 1rem 1.15rem;
  max-width: none;
  background: linear-gradient(90deg, rgba(215, 239, 227, 0.78), rgba(255, 255, 255, 0.45));
  border-left: 2px solid var(--leaf);
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.9;
}

.booking-frame-label {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--leaf-deep);
  line-height: 1.5;
}

.goldcast-booking-embed {
  width: 100%;
  max-width: 100%;
  margin: 0;
  line-height: 0;
  padding: 0;
  background: #fff;
  border: 0;
  overflow: visible;
}

.goldcast-booking-embed iframe {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: 420px;
  border: 0;
  background: #fff;
  vertical-align: top;
  display: block;
  overflow: hidden;
}

.contact {
  background:
    radial-gradient(680px 320px at 80% 0%, rgba(240, 138, 104, 0.12), transparent 58%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
  border-top: 1px solid rgba(240, 138, 104, 0.22);
}

.contact-inner {
  width: min(760px, calc(100% - 2.75rem));
  container-type: inline-size;
}

#contact-title {
  white-space: nowrap;
  letter-spacing: 0.01em;
  font-size: min(2.85rem, calc(100cqw / 16.4));
}

.contact-form {
  position: relative;
  margin-top: 0.4rem;
  padding: 1.7rem 1.55rem 1.75rem;
  background:
    linear-gradient(180deg, #ffffff, #f7fcf9);
  border: 1px solid rgba(20, 122, 92, 0.18);
  box-shadow: var(--shadow-frame);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.2rem;
}

.contact-field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.contact-field span {
  font-size: 0.92rem;
  color: var(--leaf-deep);
  letter-spacing: 0.04em;
}

.contact-field em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--bloom);
  margin-left: 0.35rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(44, 42, 39, 0.16);
  background: #fcfbf9;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--leaf);
  background: var(--white);
}

.contact-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.contact-note {
  margin: 0.2rem 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.75;
}

.contact-note a {
  color: var(--leaf);
  border-bottom: 1px solid rgba(31, 154, 120, 0.28);
}

.contact-actions {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
}

.contact-actions .btn {
  min-width: 14rem;
}

.contact-status {
  margin: 0;
  min-height: 1.5em;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.contact-status.is-success {
  color: var(--leaf-deep);
}

.faq {
  background:
    radial-gradient(640px 280px at 12% 0%, rgba(31, 154, 120, 0.07), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  border-top: 1px solid var(--line);
}

.faq-list {
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.faq-list div {
  padding: 1.25rem 1.3rem 1.3rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 122, 92, 0.16);
  box-shadow: 0 12px 28px rgba(15, 95, 74, 0.05);
}

.faq-list dt {
  margin: 0 0 0.55rem;
  padding-left: 2.1rem;
  position: relative;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
}

.faq-list dt::before,
.faq-list dd::before {
  display: inline-grid;
  place-items: center;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.faq-list dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0.12rem;
  color: #fff;
  background: var(--bloom);
}

.faq-list dd::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0.18rem;
  color: #9a4a32;
  background: #ffe8de;
  font-family: var(--font-display);
  font-weight: 700;
}

.faq-list dd {
  margin: 0;
  padding-left: 2.1rem;
  position: relative;
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.95;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1.4rem;
  margin: 0 0 1.35rem;
}

.footer-links a {
  color: rgba(255, 248, 236, 0.82);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(232, 213, 188, 0.35);
  padding-bottom: 0.05rem;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 248, 236, 0.7);
}

.site-footer {
  padding: 3.6rem 1.5rem 2.8rem;
  background:
    radial-gradient(700px 280px at 50% 0%, rgba(240, 138, 104, 0.16), transparent 60%),
    linear-gradient(180deg, #147a5c 0%, var(--leaf-deep) 100%);
  color: rgba(255, 248, 236, 0.9);
  text-align: center;
  border-top: 1px solid rgba(240, 138, 104, 0.35);
}

.footer-brand {
  margin: 0 0 0.9rem;
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 0;
}

.footer-copy {
  margin: 0 auto 1.6rem;
  max-width: 28rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

.footer-small {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.68;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes nav-rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.14) translate3d(8%, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(6.5%, -0.6%, 0);
  }
}

@keyframes dream-pulse {
  from {
    opacity: 0.75;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 41;
    width: min(20.5rem, 88vw);
    height: 100svh;
    margin: 0;
    padding: 5.6rem 1.6rem 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(246, 252, 249, 0.98);
    border-left: 1px solid var(--line);
    transform: translateX(104%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }

  .site-header.is-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    display: block;
    padding: 1.05rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink);
    opacity: 1;
    transform: none;
    animation: none;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--footer-green) 0%, var(--footer-green-deep) 100%);
    color: #fff;
    text-align: center;
    padding: 1rem 1rem;
  }

  .method {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    overflow: visible;
  }

  .hero-content {
    width: min(36rem, calc(100% - 2rem));
    padding: 6.4rem 1.15rem 2.8rem;
  }

  .method-visual {
    padding: 1.25rem 1.25rem 0;
  }

  .method-visual img {
    min-height: 16rem;
  }

  .method-copy {
    padding: 2.8rem 1.5rem 3.6rem;
  }

  .consultant-gallery {
    grid-template-columns: 1fr;
  }

  .shot-aside,
  .shot-trail,
  .shot-peak,
  .consultant-nameplate {
    grid-column: auto;
    grid-row: auto;
  }

  .shot-aside {
    display: contents;
  }

  .consultant-credo {
    order: 2;
    margin: 0.2rem 0 0.15rem;
    font-size: 1.55rem;
  }

  .shot-peak {
    order: 3;
    margin-top: 0;
  }

  .shot-trail img {
    height: 26rem;
    object-position: center 70%;
  }

  .shot-peak {
    margin-top: 0;
  }

  .shot-peak img {
    height: auto;
    aspect-ratio: 490 / 594;
  }

  .consultant-nameplate {
    order: -1;
    position: static;
    max-width: none;
    margin-bottom: 0.15rem;
  }

  .consultant-film {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .film-together {
    margin-bottom: 0;
  }

  .film-sunrise img,
  .film-together img,
  .film-ridge img,
  .film-clouds img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .consultant-motto-title {
    font-size: 1.85rem;
  }

  .consultant-motto-lead {
    font-size: 1.15rem;
  }

  .consultant-card {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .consultant-years-wrap {
    --axis: 0.35rem;
    padding: 1.25rem 1.05rem 1.35rem;
    border-right: 0;
    border-bottom: 1px solid rgba(20, 122, 92, 0.12);
  }

  .consultant-face {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 0.8rem;
  }

  .consultant-years {
    padding-left: calc(var(--axis) + 0.95rem);
  }

  .consultant-years li::before {
    left: -1.42rem;
  }

  .consultant-years span {
    font-size: 1.12rem;
  }

  .consultant-letter {
    padding: 1.35rem 1.05rem 1.45rem;
    border-top: 0;
  }

  .voices-layout {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .voices-visual {
    max-width: 22rem;
    margin: 0 auto;
  }

  .voices h2 {
    font-size: min(1.55rem, calc(100cqw / 26.6));
    white-space: nowrap;
  }

  .faq-list dt {
    font-size: 1.28rem;
  }

  .faq-list dd {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink-soft);
  }

  .flow-steps {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .flow-steps li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 1.12rem;
    line-height: 2;
  }

  .site-header {
    padding: 0.75rem max(1rem, env(safe-area-inset-right)) 0.75rem max(1rem, env(safe-area-inset-left));
  }

  .brand-icon {
    width: 2.45rem;
  }

  .brand-word {
    font-size: 1.7rem;
    letter-spacing: 0.1em;
  }

  .brand-logo {
    height: 2.6rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media img {
    object-position: 44% center;
  }

  .hero-content {
    width: calc(100% - 1.5rem);
    padding: 6.2rem max(1rem, env(safe-area-inset-right)) 2.4rem max(1rem, env(safe-area-inset-left));
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-mark {
    width: min(360px, 92vw);
    margin: 0 auto 0.5rem;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .brand-tagline {
    margin: 0 auto 0.85rem;
    letter-spacing: 0.01em;
    font-size: min(1.05rem, calc(100cqw / 29.2));
    font-weight: 700;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: clamp(1.72rem, 7.4vw, 2.35rem);
    margin-bottom: 0.95rem;
    font-weight: 700;
  }

  .hero h1 span {
    white-space: nowrap;
    font-size: min(1em, calc(100cqw / 18.8));
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
  }

  .btn {
    width: min(100%, 22rem);
    min-height: 3.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 4.2rem 0;
  }

  .section-inner,
  .booking-inner,
  .contact-inner {
    width: calc(100% - 1.5rem);
  }

  .contact-form {
    padding: 1.25rem 1rem 1.35rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-items: center;
  }

  .contact-actions .btn {
    width: min(100%, 22rem);
  }

  .section h2 {
    font-size: clamp(1.85rem, 7.4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  .voices h2 {
    font-size: min(1.45rem, calc(100cqw / 26.6));
    letter-spacing: 0;
    white-space: nowrap;
    color: var(--leaf-deep);
  }

  .section-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
  }

  .eyebrow {
    font-size: 0.9rem;
  }

  .who-list li {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.9rem 0;
    padding-bottom: 1.35rem;
  }

  .who-visual {
    width: min(12.5rem, 62%);
    padding: 0.58rem;
  }

  .who-label {
    font-size: 1.35rem;
    font-weight: 700;
  }

  .voices-lines p {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--ink);
  }

  .who-list p,
  .build-list p,
  .method-points li,
  .flow-steps p,
  .consultant-letter p,
  .consultant-years p {
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--ink-soft);
  }

  .consultant-letter p {
    color: var(--ink);
  }

  .build-list h3,
  .flow-steps h3 {
    font-size: 1.48rem;
    font-weight: 700;
  }

  .build-list h3 {
    font-size: 1.62rem;
    color: var(--ink);
  }

  .build-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.7rem 0.9rem;
    padding: 1.9rem 0;
  }

  .build-body,
  .build-list li:nth-child(even) .build-body {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .build-list li:nth-child(even) .build-visual,
  .build-list li:nth-child(even) .build-copy {
    order: initial;
  }

  .build-list h3.build-oneline {
    white-space: normal;
    font-size: clamp(1.38rem, 6.2vw, 1.62rem);
  }

  .flow-lead span {
    white-space: normal;
    font-size: 1.08rem;
  }

  .build-visual {
    padding: 0.68rem;
  }

  .build-visual::before {
    inset: 0.34rem;
  }

  .build-visual img {
    aspect-ratio: 16 / 10;
  }

  .contact-field span {
    font-size: 1.02rem;
    font-weight: 700;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 1.08rem;
    font-weight: 500;
    padding: 0.95rem 1rem;
  }

  .contact-note,
  .contact-status {
    font-size: 1rem;
  }

  .booking {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .booking-bottom {
    padding-bottom: 3.2rem;
  }

  .goldcast-booking-embed iframe {
    min-height: 0;
    height: 420px;
  }

  .booking-frame {
    padding: 0.9rem 0.75rem 1.1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .booking-note {
    margin: 0 0 1.15rem;
    text-align: left;
  }

  .booking-frame-label {
    font-size: 1.15rem;
    text-align: center;
  }

  .site-footer {
    padding: 2.7rem max(1rem, env(safe-area-inset-right)) calc(2.2rem + env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  }

  .footer-brand {
    font-size: 1.35rem;
  }

  .footer-copy {
    font-size: 1.05rem;
  }

  .footer-links a {
    font-size: 0.98rem;
  }

  .site-nav a {
    font-size: 1.12rem;
    font-weight: 600;
  }
}

@media (max-width: 420px) {
  .hero-content {
    padding-top: 5.6rem;
  }

  .brand-tagline {
    font-size: min(0.98rem, calc(100cqw / 30.4));
  }

  .voices h2 {
    font-size: min(1.22rem, calc(100cqw / 28.8));
  }

  #contact-title {
    white-space: normal;
    font-size: clamp(1.55rem, 7.4vw, 1.9rem);
    line-height: 1.45;
  }

  .who-visual {
    max-width: 11rem;
  }

  .method-copy {
    padding: 2.8rem 1rem 3.2rem;
  }

  .consultant-film {
    gap: 0.5rem;
  }

  .footer-links {
    gap: 0.7rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-content,
  .hero-dream-glow,
  .build-list li,
  .site-nav,
  .site-nav a {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header.is-open .site-nav {
    transform: none;
  }
}
