@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@500;600&display=swap");

:root {
  --ink: #363434;
  --muted: #726d6b;
  --paper: #fffdfa;
  --soft: #f8efeb;
  --pink: #d67c7c;
  --pink-light: #f3d7d3;
  --green: #5b8285;
  --line: rgba(54, 52, 52, .16);
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4, figure, dl, dd { margin: 0; }
button { color: inherit; font: inherit; }
h1, h2, h3, h4 { line-break: strict; text-wrap: balance; word-break: auto-phrase; }
p, li, summary, label { line-break: strict; text-wrap: pretty; word-break: auto-phrase; }

.skip-link {
  background: var(--ink);
  color: var(--white);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -100px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  align-items: center;
  background: rgba(255,253,250,.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 94px;
  justify-content: space-between;
  left: 0;
  padding: 0 3.5vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.logo { width: 218px; }
.logo img { width: 100%; }
.site-header nav { align-items: center; display: flex; gap: 30px; }
.site-header nav a { font-size: 12px; letter-spacing: .06em; }
.site-header nav a:not(.nav-contact):hover { color: var(--pink); }
.nav-contact {
  background: var(--soft);
  color: var(--pink);
  font-weight: 600;
  padding: 16px 22px;
}
.menu-button { display: none; }

.hero {
  display: grid;
  gap: 4vw;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  min-height: 830px;
  overflow: hidden;
  padding: 185px 6vw 92px;
  position: relative;
}
.hero::before {
  border: 1px solid var(--pink-light);
  border-radius: 50%;
  content: "";
  height: 540px;
  left: -330px;
  position: absolute;
  top: 240px;
  width: 700px;
}
.hero-copy { align-self: center; position: relative; z-index: 2; }
.kicker {
  color: var(--pink);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}
.hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(46px, 4.9vw, 76px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.42;
  margin-top: 30px;
}
.hero h1 em { color: var(--pink); font-style: normal; }
.hero-lead { font-size: 17px; line-height: 2; margin-top: 38px; }
.hero-actions { align-items: center; display: flex; gap: 28px; margin-top: 44px; }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: space-between;
  min-width: 260px;
  padding: 18px 20px;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--pink); }
.text-link { border-bottom: 1px solid currentColor; font-size: 12px; padding-bottom: 5px; }
.hero-visual { align-self: center; position: relative; z-index: 2; }
.hero-visual::before {
  background: var(--pink-light);
  border-radius: 48% 52% 42% 58%;
  content: "";
  inset: -40px -70px 35% 42%;
  opacity: .55;
  position: absolute;
  z-index: -1;
}
.hero-visual img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }
.hero-visual figcaption { color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .12em; margin-top: 10px; }
.hero-tags {
  bottom: 34px;
  display: flex;
  gap: 12px;
  left: 6vw;
  position: absolute;
}
.hero-tags span { border: 1px solid var(--line); border-radius: 999px; font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .1em; padding: 8px 13px; }

.section { padding: 125px 6vw; }
.section-head {
  display: grid;
  gap: 5vw;
  grid-template-columns: 86px minmax(0, 1fr);
  margin-bottom: 78px;
}
.section-number { color: var(--pink); font-family: "Noto Serif JP", serif; font-size: 48px; line-height: 1; }
.section-head h2,
.about-copy h2,
.contact-section h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(38px, 4.7vw, 68px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.4;
  margin-top: 20px;
  text-wrap: balance;
}
.section-head > div > p:last-child { font-size: 16px; line-height: 1.9; margin-top: 26px; }

.problems { background: var(--soft); }
.problem-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.problem-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 270px;
  padding: 28px;
}
.problem-grid article b { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 18px!important;}
.problem-grid h3 { font-family: "Noto Serif JP", serif; font-size: 22px; font-weight: 600; line-height: 1.65; margin-top: 45px; }
.problem-grid article > p { color: var(--muted); font-size: 15px; line-height: 1.85; margin-top: 16px; }
.problem-grid .problem-cta { background: var(--pink); color: var(--white); display: flex; flex-direction: column; justify-content: space-between; }
.problem-grid .problem-cta p { color: inherit; font-size: 16px; font-weight: 600; }
.problem-cta a { align-items: center; border-bottom: 1px solid rgba(255,255,255,.7); display: flex; font-size: 13px; justify-content: space-between; padding-bottom: 12px; }

.services { background: var(--ink); color: var(--white); padding-bottom: 145px; }
.light-head .section-number { color: var(--pink-light); }
.light-head > div > p:last-child { color: rgba(255,255,255,.68); }
.service-row {
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  gap: 6vw;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  padding: 85px 0;
}
.service-row:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.service-row.reverse .service-image { order: 2; }
.service-row.reverse .service-content { order: 1; }
.service-image img { aspect-ratio: 4 / 3; height: 100%; object-fit: cover; width: 100%; }
.service-content { align-self: center; }
.service-index { color: var(--pink-light); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .12em; }
.service-content h3 { font-family: "Noto Serif JP", serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 500; line-height: 1.45; margin-top: 22px; }
.service-lead { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.95; margin-top: 28px; max-width: 650px; }
.service-facts { border-top: 1px solid rgba(255,255,255,.2); display: grid; gap: 30px; grid-template-columns: repeat(2, 1fr); margin-top: 34px; padding-top: 25px; }
.service-facts h4 { color: var(--pink-light); font-size: 14px; }
.service-facts ul { list-style: none; margin: 14px 0 0; padding: 0; }
.service-facts li { color: rgba(255,255,255,.76); font-size: 14px; line-height: 1.9; padding-left: 15px; position: relative; }
.service-facts li::before { content: "・"; left: 0; position: absolute; }
.service-action { align-items: center; border-bottom: 1px solid rgba(255,255,255,.65); display: flex; font-size: 13px; justify-content: space-between; margin-top: 34px; padding-bottom: 12px; }
.service-action:hover { border-color: var(--pink-light); color: var(--pink-light); }
.death-row .service-index { color: #d8ff5d; }

.deliverables { background: var(--paper); }
.compact-head { margin-bottom: 54px; }
.deliverable-list { border-top: 1px solid var(--ink); }
.deliverable-list > div {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 70px minmax(220px, .55fr) 1fr;
  padding: 28px 0;
}
.deliverable-list span { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 18px; }
.deliverable-list h3 { font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; }
.deliverable-list p { color: var(--muted); font-size: 15px; line-height: 1.85; }

.works { background: #f6f4ef; }
.works-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.works-grid article { background: var(--white); }
.works-grid article.work-large { grid-column: 1 / -1; }
.works-grid img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.works-grid article > div { padding: 26px 28px 30px; }
.works-grid small { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 9px; letter-spacing: .1em; }
.works-grid h3 { font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; margin-top: 12px; }
.works-grid p { color: var(--muted); font-size: 15px; line-height: 1.85; margin-top: 12px; }
.works-grid a { border-bottom: 1px solid currentColor; display: inline-block; font-size: 11px; margin-top: 18px; padding-bottom: 4px; }

.flow { background: var(--green); color: var(--white); }
.flow .kicker { color: var(--pink-light); }
.flow-list { list-style: none; margin: 0; padding: 0; }
.flow-list li { border-top: 1px solid rgba(255,255,255,.28); display: grid; gap: 35px; grid-template-columns: 76px 1fr; padding: 30px 0; }
.flow-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.28); }
.flow-list b { color: var(--pink-light); font-family: "DM Sans", sans-serif; font-size: 26px; font-weight: 400; }
.flow-list h3 { font-family: "Noto Serif JP", serif; font-size: 24px; font-weight: 600; }
.flow-list p { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.9; margin-top: 10px; max-width: 760px; }

.about { display: grid; gap: 8vw; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); }
.about-photo img { aspect-ratio: 3 / 4; height: 100%; object-fit: cover; width: 100%; }
.about-copy { align-self: center; }
.about-copy > p:not(.kicker) { color: var(--muted); font-size: 16px; line-height: 2; margin-top: 26px; max-width: 680px; }

.faq { background: var(--soft); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; font-family: "Noto Serif JP", serif; font-size: 19px; font-weight: 600; list-style: none; padding: 26px 55px 26px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--pink); content: "+"; font-family: "DM Sans", sans-serif; font-size: 28px; font-weight: 400; position: absolute; right: 8px; top: 18px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { color: var(--muted); font-size: 15px; line-height: 1.95; max-width: 760px; padding: 0 50px 28px 0; }

.contact-section { background: var(--pink); color: var(--white); padding: 120px 12vw; text-align: center; }
.contact-section .kicker { color: var(--white); }
.contact-section > p:not(.kicker) { font-size: 16px; line-height: 2; margin-top: 28px; }
.contact-button { align-items: center; background: var(--white); color: var(--ink); display: flex; font-size: 15px; font-weight: 600; justify-content: space-between; margin: 45px auto 0; max-width: 520px; padding: 22px 25px; text-align: left; }
.contact-button:hover { background: var(--ink); color: var(--white); }
.contact-button b { font-size: 23px; }
.contact-mail { border-bottom: 1px solid rgba(255,255,255,.75); display: inline-block; font-family: "DM Sans", sans-serif; font-size: 12px; letter-spacing: .06em; margin-top: 25px; padding-bottom: 4px; }

footer { align-items: center; display: grid; gap: 30px; grid-template-columns: 1fr auto 1fr; min-height: 170px; padding: 40px 4vw; }
footer img { width: 160px; }
footer nav { display: flex; gap: 24px; }
footer nav a, footer p { color: var(--muted); font-size: 9px; }
footer p { text-align: right; }

/* Static contact form */
.contact-page-body { background: var(--paper); }
.contact-header { position: absolute; }
.contact-back { align-items: center; color: var(--pink); display: flex; font-size: 12px; gap: 18px; }
.contact-back span { font-size: 18px; }
.contact-page-hero {
  background: var(--ink);
  color: var(--white);
  min-height: 620px;
  overflow: hidden;
  padding: 185px 7vw 100px;
  position: relative;
}
.contact-page-hero::after {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  content: "";
  height: 560px;
  position: absolute;
  right: -120px;
  top: 80px;
  transform: rotate(-15deg);
  width: 720px;
}
.contact-page-hero .kicker { color: var(--pink-light); }
.contact-page-hero h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(48px, 6.2vw, 88px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.4;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}
.contact-page-hero h1 em { color: var(--pink); font-style: normal; }
.contact-page-hero > p:last-child { font-size: 16px; line-height: 2; margin: 42px 0 0 12vw; position: relative; z-index: 1; }
.contact-form-section { display: grid; gap: 8vw; grid-template-columns: minmax(220px,.62fr) minmax(0,1.38fr); padding: 120px 7vw 145px; }
.contact-form-intro { align-self: start; position: sticky; top: 40px; }
.contact-form-intro h2 { font-family: "Noto Serif JP", serif; font-size: clamp(40px,4.7vw,66px); font-weight: 500; letter-spacing: -.04em; margin-top: 22px; }
.contact-form-intro > p:last-child { color: var(--muted); font-size: 15px; line-height: 1.9; margin-top: 30px; max-width: 350px; }
.required-mark,
.form-field > label > b,
.form-field legend b,
.privacy-check b { background: var(--pink); border-radius: 999px; color: var(--white); display: inline-block; font-size: 9px; font-weight: 600; line-height: 1; margin-left: 7px; padding: 5px 7px; vertical-align: 2px; }
.required-mark { margin-left: 0; margin-right: 5px; }
.contact-form { min-width: 0; }
.form-field { border: 0; border-top: 1px solid var(--ink); margin: 0; padding: 30px 0 38px; }
.form-field > label,
.form-field legend { display: block; font-size: 15px; font-weight: 600; margin-bottom: 16px; padding: 0; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field textarea { appearance: none; background: var(--white); border: 1px solid rgba(54,52,52,.35); border-radius: 0; color: var(--ink); font: inherit; font-size: 16px; padding: 15px 16px; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-field textarea { line-height: 1.7; min-height: 210px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(214,124,124,.2); outline: 0; }
.show-validation .form-field input:invalid,
.show-validation .form-field textarea:invalid,
.show-validation .privacy-check input:invalid { border-color: #a0134d; }
.name-fields { display: grid; gap: 18px; grid-template-columns: repeat(2,1fr); }
.name-fields label span { display: block; font-size: 12px; margin-bottom: 8px; }
.choice-grid { display: grid; gap: 12px; grid-template-columns: repeat(2,minmax(0,1fr)); }
.choice-grid label { align-items: center; background: var(--white); border: 1px solid rgba(54,52,52,.25); cursor: pointer; display: flex; font-size: 15px; font-weight: 600; gap: 10px; min-height: 62px; padding: 14px 16px; }
.choice-grid label:has(input:checked) { background: var(--pink-light); border-color: var(--pink); }
.choice-grid input,
.privacy-check input { accent-color: var(--pink); flex: 0 0 auto; height: 18px; width: 18px; }
.field-error { color: #a0134d; font-size: 12px; font-weight: 600; line-height: 1.6; margin-top: 10px; }
.honeypot { height: 0; left: -9999px; overflow: hidden; position: absolute; width: 0; }
.privacy-check { align-items: flex-start; border-top: 1px solid var(--ink); cursor: pointer; display: flex; font-size: 15px; gap: 12px; line-height: 1.8; padding-top: 30px; }
.privacy-check input { margin-top: 4px; }
.recaptcha-wrap { margin-top: 30px; max-width: 100%; overflow: hidden; }
.form-submit { align-items: center; background: var(--ink); border: 0; color: var(--white); cursor: pointer; display: flex; font: inherit; font-size: 16px; font-weight: 600; justify-content: space-between; margin-top: 38px; min-height: 70px; padding: 18px 24px; transition: background .2s,color .2s; width: 100%; }
.form-submit b { font-size: 24px; }
.form-submit:hover,
.form-submit:focus-visible { background: var(--pink); color: var(--white); }
.form-note { color: var(--muted); font-family: "DM Sans",sans-serif; font-size: 9px; margin-top: 12px; text-align: right; }
.contact-footer { background: var(--paper); border-top: 1px solid var(--line); }
.contact-footer a { color: var(--muted); font-size: 10px; }
.form-result-page { background: var(--ink); color: var(--white); min-height: 100vh; padding: 45px 7vw 80px; }
.result-logo { display: block; width: 180px; }
.result-logo img { filter: brightness(0) invert(1); width: 100%; }
.form-result-card { margin: 15vh auto 0; max-width: 820px; }
.form-result-card h1 { font-family: "Noto Serif JP",serif; font-size: clamp(42px,6.2vw,78px); font-weight: 500; letter-spacing: -.045em; line-height: 1.4; margin-top: 24px; }
.form-result-card h1 em { color: var(--pink); font-style: normal; }
.form-result-card > p:not(.kicker) { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.9; margin-top: 32px; }
.form-result-card .form-submit { background: var(--pink); max-width: 420px; }

@media (max-width: 980px) {
  .site-header { height: 82px; padding: 0 5vw; }
  .logo { width: 180px; }
  .menu-button { background: none; border: 0; display: grid; gap: 5px; padding: 8px; }
  .menu-button span { background: var(--pink); display: block; height: 1px; width: 32px; }
  .menu-button small { color: var(--pink); font-family: "DM Sans", sans-serif; font-size: 7px; letter-spacing: .1em; }
  .site-header nav { align-items: stretch; background: var(--paper); border-bottom: 1px solid var(--line); display: none; flex-direction: column; gap: 0; left: 0; padding: 20px 5vw 30px; position: absolute; right: 0; top: 82px; }
  .site-header nav.is-open { display: flex; }
  .site-header nav a { border-bottom: 1px solid var(--line); font-size: 13px; padding: 16px 4px; }
  .site-header nav .nav-contact { border: 0; margin-top: 15px; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { margin-left: 14vw; }
  .hero-tags { position: static; margin-top: 10px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { gap: 48px; grid-template-columns: 1fr; }
  .service-row.reverse .service-image, .service-row.reverse .service-content { order: initial; }
  .service-image img { max-height: 520px; }
  .about { gap: 60px; }
  .contact-form-section { gap: 65px; grid-template-columns: 1fr; padding: 90px 6vw 120px; }
  .contact-form-intro { position: static; }
}

@media (max-width: 680px) {
  .desktop-break { display: none; }
  .section { padding: 85px 6vw; }
  .hero { min-height: 0; padding: 135px 6vw 75px; }
  .hero h1 { font-size: 39px; letter-spacing: -.035em; line-height: 1.48; }
  .hero-lead br { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .button { min-width: 0; width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-visual { margin: 45px 0 0; }
  .hero-tags { flex-wrap: wrap; margin-top: 28px; }
  .section-head { gap: 22px; grid-template-columns: 46px 1fr; margin-bottom: 52px; }
  .section-number { font-size: 28px; }
  .section-head h2, .about-copy h2, .contact-section h2 { font-size: 33px; letter-spacing: -.035em; line-height: 1.5; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article { min-height: 230px; }
  .service-row { padding: 60px 0; }
  .service-content h3 { font-size: 31px; }
  .service-facts { grid-template-columns: 1fr; }
  .deliverable-list > div { gap: 12px; grid-template-columns: 42px 1fr; }
  .deliverable-list p { grid-column: 2; }
  .works-grid { grid-template-columns: 1fr; }
  .works-grid article.work-large { grid-column: auto; }
  .flow-list li { gap: 15px; grid-template-columns: 46px 1fr; }
  .flow-list b { font-size: 20px; }
  .about { grid-template-columns: 1fr; }
  .about-photo { max-height: 520px; overflow: hidden; }
  .about-photo img { object-position: center 24%; }
  .faq-list summary { font-size: 17px; }
  .contact-section { padding: 85px 6vw; }
  .contact-page-hero { min-height: 520px; padding: 145px 6vw 80px; }
  .contact-page-hero h1 { font-size: 40px; letter-spacing: -.03em; }
  .contact-page-hero > p:last-child { margin-left: 0; }
  .contact-form-intro h2 { font-size: 36px; }
  .name-fields, .choice-grid { grid-template-columns: 1fr; }
  .g-recaptcha { transform: scale(.9); transform-origin: left top; }
  .form-result-page { padding-left: 6vw; padding-right: 6vw; }
  .form-result-card { margin-top: 12vh; }
  footer { align-items: start; grid-template-columns: 1fr; }
  footer nav { flex-wrap: wrap; }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Sales-focused redesign */
:root {
  --ink: #292d33;
  --muted: #69676a;
  --paper: #fffdfa;
  --soft: #f8f2ef;
  --pink: #d96f73;
  --pink-deep: #be565d;
  --pink-light: #f4d2d0;
  --green: #456e73;
  --yellow: #f3c84b;
  --line: rgba(41,45,51,.16);
}

body { font-size: 16px; }
.site-header { backdrop-filter: blur(12px); }
.site-header nav a { font-size: 13px; font-weight: 600; }
.nav-contact { background: var(--ink); color: var(--white); min-width: 140px; text-align: center; }
.nav-contact:hover { background: var(--pink); }

.hero {
  align-items: center;
  background: linear-gradient(118deg,#fffdfa 0%,#fffdfa 58%,#f7ece8 58%,#f7ece8 100%);
  gap: 5vw;
  grid-template-columns: minmax(0,1fr) minmax(390px,.92fr);
  min-height: 760px;
  padding: 155px 6vw 70px;
}
.hero::before { border-color: rgba(217,111,115,.22); height: 450px; left: -300px; top: 220px; width: 600px; }
.hero-copy { max-width: 720px; }
.hero-eyebrow { border-left: 4px solid var(--yellow); font-size: 15px; font-weight: 700; margin-top: 22px; padding: 6px 0 6px 14px; }
.hero h1 { font-size: clamp(52px,5.4vw,82px); line-height: 1.24; margin-top: 25px; }
.hero h1 em { display: block; margin-top: .12em; }
.hero-lead { font-size: 17px; line-height: 2; margin-top: 30px; max-width: 660px; }
.hero-actions { margin-top: 36px; }
.button { min-width: 285px; padding: 20px 22px; }
.button-primary { box-shadow: 8px 8px 0 var(--yellow); }
.hero-note { color: var(--muted); font-size: 13px; line-height: 1.7; margin-top: 24px; }
.hero-visual { background: var(--white); box-shadow: 0 22px 65px rgba(41,45,51,.13); padding: 14px 14px 0; }
.hero-visual::before { display: none; }
.hero-visual img { aspect-ratio: 4 / 3; }
.hero-visual figcaption { align-items: center; display: flex; justify-content: space-between; margin: 0; padding: 15px 5px 17px; }
.hero-visual figcaption b { color: var(--pink); font-size: 10px; letter-spacing: .12em; }
.hero-visual figcaption span { color: var(--ink); font-family: "Noto Sans JP",sans-serif; font-size: 11px; letter-spacing: .02em; }

.service-jump { background: var(--ink); display: grid; grid-template-columns: repeat(3,1fr); padding: 0 6vw; }
.service-jump a { align-items: center; border-right: 1px solid rgba(255,255,255,.18); color: var(--white); display: grid; gap: 18px; grid-template-columns: 30px 1fr 20px; min-height: 130px; padding: 24px 28px; }
.service-jump a:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.service-jump a:hover { background: var(--pink); }
.service-jump small { color: var(--yellow); font-family: "DM Sans",sans-serif; font-weight: 600; }
.service-jump span { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }
.service-jump span b { color: var(--white); display: block; font-family: "Noto Serif JP",serif; font-size: 18px; margin-bottom: 4px; }
.service-jump i { font-style: normal; text-align: right; }

.section { padding: 125px 7vw; }
.section-label { align-items: center; display: flex; gap: 16px; margin-bottom: 55px; }
.section-label span { align-items: center; border: 1px solid var(--pink); border-radius: 50%; color: var(--pink); display: flex; font-family: "DM Sans",sans-serif; font-size: 11px; height: 38px; justify-content: center; width: 38px; }
.section-label p { color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .14em; }
.section-label.light span { border-color: var(--pink-light); color: var(--pink-light); }
.section-label.light p { color: var(--pink-light); }
.section-label.compact { margin-bottom: 35px; }
.split-heading { align-items: start; display: grid; gap: 9vw; grid-template-columns: minmax(330px,.85fr) minmax(0,1.15fr); margin-bottom: 75px; }
.split-heading h2,.services-intro h2 { font-family: "Noto Serif JP",serif; font-size: clamp(42px,4.6vw,67px); font-weight: 500; letter-spacing: -.045em; line-height: 1.42; }
.split-heading > div > p,.split-heading > p { color: var(--muted); font-size: 16px; line-height: 2; }
.split-heading .lead-copy { color: var(--ink); font-size: 19px; font-weight: 500; line-height: 1.95; }
.split-heading > div > p + p { margin-top: 24px; }

.problems { background: var(--soft); }
.problem-grid article { background: rgba(255,255,255,.42); min-height: 285px; padding: 32px; }
.problem-grid article > b { color: var(--pink); font-size: 13px !important; }
.problem-grid h3 { font-size: 23px; line-height: 1.6; margin-top: 38px; }
.problem-grid article > p { font-size: 16px; line-height: 1.9; }
.problem-grid .problem-cta { background: var(--pink); padding: 32px; }
.problem-cta > span { color: var(--white); font-family: "DM Sans",sans-serif; font-size: 10px; letter-spacing: .14em; }
.problem-grid .problem-cta p { font-family: "Noto Serif JP",serif; font-size: 24px; line-height: 1.65; margin-top: 20px; }
.problem-cta a { font-size: 14px; }

.approach { background: var(--paper); }
.approach-grid { display: grid; gap: 22px; grid-template-columns: repeat(3,1fr); }
.approach-grid article { background: var(--white); border: 1px solid var(--line); box-shadow: 0 15px 35px rgba(41,45,51,.06); min-height: 300px; padding: 36px 32px; position: relative; }
.approach-grid article::before { background: var(--yellow); content: ""; height: 5px; left: 0; position: absolute; right: 66%; top: 0; }
.approach-grid span { color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .13em; }
.approach-grid h3 { font-family: "Noto Serif JP",serif; font-size: 25px; margin-top: 54px; }
.approach-grid p { color: var(--muted); font-size: 16px; line-height: 1.9; margin-top: 20px; }

.services { background: var(--ink); }
.services-intro { display: grid; gap: 8vw; grid-template-columns: 1fr .8fr; margin-bottom: 70px; }
.services-intro h2 { color: var(--white); }
.services-intro p { align-self: end; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.9; }
.service-row { scroll-margin-top: 94px; }
.service-image { align-self: start; background: var(--white); padding: 10px; }
.service-image img { aspect-ratio: 4 / 3; }
.service-content h3 { font-size: clamp(34px,3.4vw,51px); }
.service-lead { font-size: 16px; }
.outcome { background: rgba(255,255,255,.08); border-left: 4px solid var(--yellow); margin-top: 30px; padding: 20px 22px; }
.outcome b { color: var(--yellow); font-size: 12px; }
.outcome p { color: var(--white); font-size: 16px; line-height: 1.8; margin-top: 6px; }
.service-facts li { font-size: 15px; }
.service-action { font-size: 14px; }

.works { background: #f5f3ef; }
.works-heading { margin-bottom: 60px; }
.works-grid { gap: 24px; }
.works-grid article { border: 1px solid rgba(41,45,51,.08); box-shadow: 0 12px 30px rgba(41,45,51,.05); }
.works-grid article.work-large { display: grid; grid-template-columns: 1.35fr .65fr; }
.works-grid article.work-large img { height: 100%; }
.works-grid article.work-large > div { align-self: center; padding: 45px; }
.works-grid article > div { padding: 30px; }
.works-grid h3 { font-size: 26px; }
.works-grid p { font-size: 16px; }
.works-grid a { font-size: 13px; }

.about { background: var(--paper); gap: 9vw; padding-left: 10vw; padding-right: 10vw; }
.about-photo { align-self: center; max-height: 650px; }
.about-photo img { object-position: center 25%; }
.about-copy h2 { font-size: clamp(40px,4.4vw,62px); }
.about-copy .about-lead { color: var(--ink); font-size: 18px; font-weight: 500; line-height: 2; }
.strength-list { border-top: 1px solid var(--ink); list-style: none; margin: 35px 0 0; padding: 0; }
.strength-list li { border-bottom: 1px solid var(--line); display: grid; gap: 24px; grid-template-columns: 150px 1fr; padding: 20px 0; }
.strength-list b { color: var(--pink); font-size: 14px; }
.strength-list span { color: var(--muted); font-size: 15px; line-height: 1.8; }
.about-more { border-bottom: 1px solid var(--pink); color: var(--pink); display: flex; font-size: 13px; justify-content: space-between; margin: 30px 0 0 auto; max-width: 360px; padding-bottom: 10px; }
.insight-promo { align-items: center; background: var(--yellow); display: grid; gap: 8vw; grid-template-columns: .85fr 1.15fr; }
.insight-promo-copy h2 { font-family: "Noto Serif JP",serif; font-size: clamp(38px,4.5vw,62px); font-weight: 500; line-height: 1.5; margin-top: 20px; }
.insight-promo-copy > p:not(.kicker) { font-size: 16px; line-height: 1.95; margin-top: 24px; }
.insight-promo-copy > a { border-bottom: 1px solid var(--ink); display: flex; font-size: 14px; font-weight: 700; justify-content: space-between; margin-top: 32px; padding-bottom: 12px; }
.insight-promo > img { aspect-ratio: 16 / 10; box-shadow: 14px 14px 0 rgba(255,255,255,.7); object-fit: cover; width: 100%; }

.flow { background: var(--green); }
.flow .split-heading h2 { color: var(--white); }
.flow .split-heading p { color: rgba(255,255,255,.78); }
.flow-list li { grid-template-columns: 110px minmax(0,1fr); padding: 35px 0; }
.flow-list b { font-size: 32px; }
.flow-list h3 { font-size: 26px; }
.flow-list p { font-size: 16px; }

.faq-heading { margin-bottom: 35px; }
.faq-list summary { font-size: 20px; padding: 30px 60px 30px 0; }
.faq-list details p { font-size: 16px; }

.contact-section { background: var(--pink); overflow: hidden; position: relative; }
.contact-section::before,.contact-section::after { border: 1px solid rgba(255,255,255,.22); border-radius: 50%; content: ""; position: absolute; }
.contact-section::before { height: 380px; left: -170px; top: -130px; width: 500px; }
.contact-section::after { bottom: -230px; height: 420px; right: -100px; width: 530px; }
.contact-section h2,.contact-section > p,.contact-section a { position: relative; z-index: 1; }
.contact-button { box-shadow: 10px 10px 0 var(--yellow); }
.contact-button span small { color: var(--pink); display: block; font-family: "DM Sans",sans-serif; font-size: 9px; letter-spacing: .12em; margin-bottom: 5px; }

@media (max-width: 980px) {
  .hero { background: linear-gradient(165deg,#fffdfa 0%,#fffdfa 60%,#f7ece8 60%,#f7ece8 100%); grid-template-columns: 1fr; padding-top: 140px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { margin: 35px 8vw 0; }
  .service-jump { grid-template-columns: 1fr; }
  .service-jump a { border-bottom: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); min-height: 105px; }
  .split-heading { gap: 55px; grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid article { min-height: 230px; }
  .services-intro { gap: 35px; grid-template-columns: 1fr; }
  .works-grid article.work-large { grid-template-columns: 1fr; }
  .works-grid article.work-large img { height: auto; }
  .insight-promo { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .hero { padding: 125px 6vw 65px; }
  .hero-eyebrow { font-size: 13px; }
  .hero h1 { font-size: clamp(38px,11vw,48px); line-height: 1.4; }
  .hero h1 em { margin-top: .2em; }
  .hero-lead { font-size: 16px; line-height: 1.95; }
  .hero-note { font-size: 12px; }
  .hero-visual { margin: 35px 0 0; padding: 8px 8px 0; }
  .hero-visual figcaption { align-items: start; flex-direction: column; gap: 4px; }
  .service-jump { padding: 0 6vw; }
  .service-jump a { gap: 12px; grid-template-columns: 26px 1fr 15px; padding: 20px 16px; }
  .service-jump span b { font-size: 17px; }
  .section { padding: 85px 6vw; }
  .section-label { margin-bottom: 38px; }
  .split-heading { gap: 30px; margin-bottom: 50px; }
  .split-heading h2,.services-intro h2 { font-size: 35px; line-height: 1.5; }
  .split-heading .lead-copy { font-size: 17px; }
  .problem-grid h3 br { display: none; }
  .approach-grid article { min-height: 0; padding: 30px 26px; }
  .approach-grid h3 { font-size: 23px; margin-top: 40px; }
  .service-content h3 { font-size: 31px; }
  .outcome { padding: 18px; }
  .works-grid article.work-large > div,.works-grid article > div { padding: 26px; }
  .about { padding-left: 6vw; padding-right: 6vw; }
  .about-copy h2 { font-size: 34px; }
  .strength-list li { gap: 8px; grid-template-columns: 1fr; }
  .flow-list li { grid-template-columns: 48px 1fr; }
  .flow-list b { font-size: 21px; }
  .flow-list h3 { font-size: 22px; }
  .faq-list summary { font-size: 18px; }
}

/* Search landing pages */
.breadcrumbs {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 10px;
  padding: 122px 7vw 0;
}
.breadcrumbs a { border-bottom: 1px solid var(--line); }
.detail-hero {
  align-items: center;
  display: grid;
  gap: 7vw;
  grid-template-columns: minmax(0,1fr) minmax(360px,.8fr);
  min-height: 660px;
  padding: 65px 7vw 100px;
}
.detail-hero-copy h1,.about-hero h1,.guide-header h1 {
  font-family: "Noto Serif JP",serif;
  font-size: clamp(48px,5.4vw,78px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.4;
  margin-top: 24px;
}
.detail-hero-copy h1 em,.about-hero h1 em,.guide-header h1 em { color: var(--pink); font-style: normal; }
.detail-hero-copy > p:last-of-type,.about-hero > div > p:last-child { font-size: 17px; line-height: 2; margin-top: 30px; max-width: 680px; }
.detail-hero-image { background: var(--soft); margin: 0; padding: 14px; }
.detail-hero-image img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.detail-section { padding: 110px 9vw; }
.detail-section:nth-of-type(even) { background: var(--soft); }
.detail-heading { margin-bottom: 55px; max-width: 820px; }
.detail-heading h2 {
  font-family: "Noto Serif JP",serif;
  font-size: clamp(38px,4.5vw,64px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.5;
  margin-top: 18px;
}
.detail-heading > p:last-child:not(.kicker) { color: var(--muted); font-size: 17px; line-height: 2; margin-top: 25px; }
.check-list { border-top: 1px solid var(--ink); list-style: none; margin: 0 0 0 30%; padding: 0; }
.check-list li { border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 500; line-height: 1.7; padding: 24px 50px 24px 0; position: relative; }
.check-list li::after { color: var(--pink); content: "✓"; font-size: 20px; position: absolute; right: 5px; top: 22px; }
.change-grid { align-items: stretch; display: grid; gap: 28px; grid-template-columns: 1fr 55px 1fr; }
.change-grid article { background: var(--white); border: 1px solid var(--line); min-height: 230px; padding: 34px; }
.change-grid article:last-child { border: 3px solid var(--yellow); }
.change-grid > span { align-self: center; color: var(--pink); font-size: 36px; text-align: center; }
.change-grid small { color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 10px; letter-spacing: .12em; }
.change-grid h3 { font-family: "Noto Serif JP",serif; font-size: 26px; margin-top: 34px; }
.change-grid p { color: var(--muted); font-size: 16px; line-height: 1.9; margin-top: 15px; }
.scope-grid { display: grid; gap: 20px; grid-template-columns: repeat(3,1fr); }
.scope-grid article { background: var(--white); border: 1px solid var(--line); min-height: 310px; padding: 32px; }
.scope-grid article > b { color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 14px; }
.scope-grid h3 { font-family: "Noto Serif JP",serif; font-size: 25px; margin-top: 45px; }
.scope-grid ul { margin: 20px 0 0; padding-left: 1.2em; }
.scope-grid li,.scope-grid article > p { color: var(--muted); font-size: 16px; line-height: 1.9; }
.scope-grid article > p { margin-top: 20px; }
.industry-insight { background: var(--ink) !important; color: var(--white); }
.industry-insight .kicker { color: var(--pink-light); }
.insight-list { margin: 0; }
.insight-list > div { border-top: 1px solid rgba(255,255,255,.2); display: grid; gap: 6vw; grid-template-columns: .65fr 1.35fr; padding: 30px 0; }
.insight-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.insight-list dt { font-family: "Noto Serif JP",serif; font-size: 22px; font-weight: 600; }
.insight-list dd { color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.95; }
.inline-guide { border-bottom: 1px solid var(--pink-light); color: var(--pink-light); display: flex; font-size: 14px; justify-content: space-between; margin: 40px 0 0 auto; max-width: 430px; padding-bottom: 12px; }
.detail-flow ol { list-style: none; margin: 0; padding: 0; }
.detail-flow li { border-top: 1px solid var(--line); display: grid; gap: 40px; grid-template-columns: 70px 1fr; padding: 28px 0; }
.detail-flow li:last-child { border-bottom: 1px solid var(--line); }
.detail-flow li > b { color: var(--pink); font-family: "DM Sans",sans-serif; font-size: 22px; }
.detail-flow h3 { font-family: "Noto Serif JP",serif; font-size: 23px; }
.detail-flow li p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-top: 8px; }
.detail-faq { background: var(--paper) !important; }
.proof-band { align-items: center; background: var(--soft) !important; display: grid; gap: 7vw; grid-template-columns: .8fr 1.2fr; }
.proof-copy h2 { font-family: "Noto Serif JP",serif; font-size: clamp(36px,4vw,58px); font-weight: 500; line-height: 1.5; margin-top: 20px; }
.proof-copy > p:last-child { color: var(--muted); font-size: 16px; line-height: 2; margin-top: 24px; }
.proof-band img { width: 100%; }

/* About */
.about-hero { align-items: center; display: grid; gap: 9vw; grid-template-columns: 1.25fr .75fr; padding: 65px 10vw 110px; }
.about-hero > div > p:last-child { max-width: 740px; }
.about-hero > img { aspect-ratio: 3 / 4; max-height: 600px; object-fit: cover; object-position: center 25%; width: 100%; }
.about-message { display: grid; gap: 8vw; grid-template-columns: .8fr 1.2fr; }
.long-copy { padding-top: 45px; }
.long-copy p { color: var(--muted); font-size: 18px; line-height: 2.1; }
.long-copy p + p { margin-top: 26px; }
.profile-detail { display: grid; gap: 9vw; grid-template-columns: .75fr 1.25fr; }
.profile-detail dl { margin: 35px 0 0; }
.profile-detail dl > div { border-top: 1px solid var(--line); display: grid; gap: 30px; grid-template-columns: 130px 1fr; padding: 24px 0; }
.profile-detail dl > div:last-child { border-bottom: 1px solid var(--line); }
.profile-detail dt { color: var(--pink); font-size: 14px; font-weight: 700; }
.profile-detail dd { color: var(--muted); font-size: 16px; line-height: 1.9; }

/* Guide article */
.guide-article { margin: 0 auto; max-width: 980px; padding: 70px 6vw 120px; }
.guide-header { max-width: 900px; }
.guide-header h1 { font-size: clamp(45px,6vw,76px); }
.guide-summary { border-left: 5px solid var(--yellow); font-size: 19px; font-weight: 500; line-height: 2; margin-top: 40px; padding-left: 24px; }
.guide-meta { color: var(--muted); display: flex; flex-wrap: wrap; font-size: 11px; gap: 22px; margin-top: 25px; }
.guide-main-image { margin: 65px 0; }
.guide-main-image img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.answer-box { background: var(--ink); color: var(--white); margin: 0 0 55px; padding: 38px 42px; }
.answer-box h2 { color: var(--yellow); font-family: "Noto Serif JP",serif; font-size: 24px; }
.answer-box ul { margin: 22px 0 0; padding-left: 1.2em; }
.answer-box li { font-size: 16px; line-height: 1.95; }
.guide-toc { background: var(--soft); margin-bottom: 70px; padding: 32px 38px; }
.guide-toc > p { font-family: "Noto Serif JP",serif; font-size: 22px; font-weight: 600; }
.guide-toc ol { margin: 18px 0 0; padding-left: 1.5em; }
.guide-toc li { font-size: 15px; line-height: 2; }
.guide-toc a { border-bottom: 1px solid var(--line); }
.guide-section { scroll-margin-top: 110px; }
.guide-section + .guide-section { border-top: 1px solid var(--line); margin-top: 70px; padding-top: 70px; }
.guide-section h2 { font-family: "Noto Serif JP",serif; font-size: clamp(29px,3.6vw,43px); font-weight: 600; line-height: 1.6; }
.guide-section h3 { font-family: "Noto Serif JP",serif; font-size: 23px; margin-top: 32px; }
.guide-section p,.guide-section li { color: #4f4d4f; font-size: 17px; line-height: 2.05; }
.guide-section p { margin-top: 24px; }
.guide-section ul { margin: 20px 0 0; padding-left: 1.4em; }
.point-number { color: var(--pink) !important; font-family: "DM Sans",sans-serif; font-size: 11px !important; font-weight: 700; letter-spacing: .13em; margin-bottom: 12px !important; }
.example-box { background: var(--soft); border-left: 4px solid var(--pink); margin-top: 28px; padding: 28px 32px; }
.example-box b { color: var(--pink); display: block; font-size: 13px; }
.example-box p { margin: 8px 0 20px; }
.example-box p:last-child { margin-bottom: 0; }
.guide-conclusion { background: var(--soft); border: 0 !important; margin-left: -40px; margin-right: -40px; padding: 50px 40px !important; }
.author-box { align-items: center; border-top: 1px solid var(--ink); display: grid; gap: 35px; grid-template-columns: 130px 1fr; margin-top: 80px; padding-top: 35px; }
.author-box img { aspect-ratio: 1 / 1; border-radius: 50%; object-fit: cover; object-position: center 24%; }
.author-box h2 { font-family: "Noto Serif JP",serif; font-size: 24px; margin-top: 8px; }
.author-box p:not(.kicker) { color: var(--muted); font-size: 14px; line-height: 1.85; margin-top: 10px; }
.author-box a { border-bottom: 1px solid currentColor; display: inline-block; font-size: 12px; margin-top: 15px; }

/* Contact conversion */
.contact-reassurance { background: var(--paper); display: grid; grid-template-columns: repeat(3,1fr); padding: 0 7vw; }
.contact-reassurance > div { border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: grid; gap: 18px; grid-template-columns: 30px 1fr; padding: 35px 28px; }
.contact-reassurance > div:first-child { border-left: 1px solid var(--line); }
.contact-reassurance b { color: var(--pink); font-family: "DM Sans",sans-serif; }
.contact-reassurance strong { display: block; font-family: "Noto Serif JP",serif; font-size: 17px; }
.contact-reassurance span { color: var(--muted); display: block; font-size: 13px; line-height: 1.8; margin-top: 8px; }
.form-help,.form-submit-note { color: var(--muted); font-size: 12px; line-height: 1.7; margin-top: 9px; }
.form-field select { appearance: none; background: var(--white); border: 1px solid rgba(54,52,52,.35); border-radius: 0; color: var(--ink); font: inherit; font-size: 15px; min-height: 56px; padding: 14px 42px 14px 16px; width: 100%; }
.form-two-columns { display: grid; gap: 24px; grid-template-columns: repeat(2,1fr); }
.compact-choices label { min-height: 56px; }
.form-submit-note { text-align: center; }

@media (max-width: 980px) {
  .detail-hero { grid-template-columns: 1fr; }
  .detail-hero-image { margin: 0 10vw; }
  .check-list { margin-left: 15%; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-grid article { min-height: 0; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero > img { max-width: 480px; }
  .about-message,.profile-detail,.proof-band { grid-template-columns: 1fr; }
  .contact-reassurance { grid-template-columns: 1fr; }
  .contact-reassurance > div { border-left: 1px solid var(--line); }
}

@media (max-width: 680px) {
  .breadcrumbs { padding: 105px 6vw 0; }
  .detail-hero { gap: 45px; padding: 50px 6vw 75px; }
  .detail-hero-copy h1,.about-hero h1,.guide-header h1 { font-size: 38px; }
  .detail-hero-copy > p:last-of-type { font-size: 16px; }
  .detail-hero-image { margin: 0; padding: 8px; }
  .detail-section { padding: 80px 6vw; }
  .detail-heading h2 { font-size: 34px; }
  .check-list { margin-left: 0; }
  .check-list li { font-size: 16px; padding-right: 35px; }
  .change-grid { grid-template-columns: 1fr; }
  .change-grid > span { transform: rotate(90deg); }
  .insight-list > div { gap: 12px; grid-template-columns: 1fr; }
  .detail-flow li { gap: 15px; grid-template-columns: 45px 1fr; }
  .about-hero { padding: 50px 6vw 80px; }
  .about-hero > img { max-width: none; }
  .long-copy { padding-top: 0; }
  .profile-detail dl > div { gap: 10px; grid-template-columns: 1fr; }
  .guide-article { padding-left: 6vw; padding-right: 6vw; }
  .guide-summary { font-size: 17px; }
  .answer-box,.guide-toc { padding: 26px 24px; }
  .guide-section p,.guide-section li { font-size: 16px; }
  .guide-conclusion { margin-left: -3vw; margin-right: -3vw; padding: 35px 3vw !important; }
  .author-box { grid-template-columns: 90px 1fr; }
  .form-two-columns { grid-template-columns: 1fr; }
}

/* Keep the top visual compact and landscape on every screen */
.hero-visual img {
  aspect-ratio: auto;
  height: clamp(300px, 34vw, 480px);
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

@media (max-width: 980px) {
  .hero-visual img { height: clamp(270px, 48vw, 410px); }
}

@media (max-width: 680px) {
  .hero-visual img {
    height: 220px;
    object-position: center 50%;
  }
}

/* Preserve the original 16:9 ratio of every project banner */
.works-grid img,
.works-grid article.work-large img {
  aspect-ratio: 16 / 9;
  background: var(--white);
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

@media (max-width: 680px) {
  .works-grid,
  .works-grid article.work-large {
    grid-template-columns: minmax(0, 1fr);
  }

  .works-grid img,
  .works-grid article.work-large img {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}

/* Consistent image ratios across the whole site */
.service-image img,
.detail-hero-image img,
.insight-promo > img,
.guide-main-image img {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.about-photo img,
.about-hero > img {
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.about-photo { max-height: none; overflow: visible; }

.proof-band img {
  aspect-ratio: 16 / 9;
  background: var(--white);
  height: auto;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.author-box {
  align-items: start;
  gap: 38px;
  grid-template-columns: 200px minmax(0, 1fr);
}

.author-box img {
  aspect-ratio: 3 / 4;
  border-radius: 0;
  height: auto;
  object-fit: cover;
  object-position: center center;
  width: 200px;
}

@media (max-width: 680px) {
  .service-image img,
  .detail-hero-image img,
  .insight-promo > img,
  .guide-main-image img {
    aspect-ratio: 4 / 3;
  }

  .about-photo,
  .about-hero > img {
    margin-left: auto;
    margin-right: auto;
    max-width: 440px;
  }

  .author-box {
    gap: 22px;
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .author-box img {
    aspect-ratio: 3 / 4;
    width: 130px;
  }
}
