:root {
  --ink: #16251f;
  --forest: #24483c;
  --moss: #6f8a74;
  --gold: #c59b57;
  --terracotta: #b56f4b;
  --ivory: #f7f1e8;
  --paper: #fffaf2;
  --mist: #e8eee8;
  --line: #d8d0c3;
  --muted: #6c716c;
  --shadow: 0 24px 70px rgba(22, 37, 31, 0.13);
  --soft-shadow: 0 14px 36px rgba(22, 37, 31, 0.09);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: 220ms ease;
  --site-max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 155, 87, 0.14), transparent 26rem),
    linear-gradient(180deg, #fffaf2 0%, var(--ivory) 42%, #f9f6ef 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  transition: padding var(--ease), background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 1px 0 rgba(22, 37, 31, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  min-height: 4rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 999px;
  background: rgba(22, 37, 31, 0.92);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 50px rgba(22, 37, 31, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #f1d493);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 250, 242, 0.82);
  transition: background var(--ease), color var(--ease);
}

.nav-links a:hover {
  background: rgba(255, 250, 242, 0.09);
  color: var(--paper);
}

.nav-links .nav-cta {
  margin-left: 0.35rem;
  background: var(--paper);
  color: var(--ink);
}

.nav-links .nav-cta:hover {
  background: #fff;
  color: var(--forest);
}

.menu-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.1);
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(7.5rem, 11vw, 9.5rem) clamp(1rem, 3vw, 2rem) 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.86fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: 5.15rem;
  font-weight: 650;
}

.hero-lede {
  max-width: 38rem;
  color: #46504a;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  min-height: 3.2rem;
  padding: 0.88rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--ease), background var(--ease), border-color var(--ease);
}

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

.btn-primary {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 16px 28px rgba(36, 72, 60, 0.18);
}

.btn-ghost {
  border-color: rgba(36, 72, 60, 0.22);
  background: rgba(255, 250, 242, 0.62);
  color: var(--forest);
}

.btn-light {
  background: var(--paper);
  color: var(--forest);
}

.hero-media {
  position: relative;
  min-height: clamp(25rem, 41vw, 36rem);
  border-radius: 2rem;
  background: var(--mist);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(22, 37, 31, 0.3));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% center;
}

.credential-card {
  position: absolute;
  left: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 2;
  width: min(72%, 19rem);
  padding: 1.25rem;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: 1.35rem;
  background: rgba(22, 37, 31, 0.62);
  color: var(--paper);
  backdrop-filter: blur(16px);
}

.credential-card span {
  display: block;
  margin-bottom: 0.7rem;
  font-weight: 800;
}

.credential-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 0.95;
}

.credential-card p {
  margin: 0 0 0.75rem;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.9rem;
}

.section {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: 3.6rem clamp(1rem, 3vw, 2rem);
  border-top: 2px solid rgba(36, 72, 60, 0.7);
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.yutaka-copy h2,
.method-copy h2,
.contact-copy h2 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 650;
}

.section-heading p,
.method-copy p,
.contact-copy p,
.yutaka-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

.split-heading {
  max-width: 48rem;
  display: block;
}

.objective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mini-card,
.service-card,
.yutaka-grid article {
  border: 1px solid rgba(36, 72, 60, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: var(--soft-shadow);
}

.mini-card {
  padding: 1.25rem;
}

.icon-box {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1rem;
  border-radius: 0.9rem;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--forest);
}

.icon-box svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card h3,
.yutaka-grid h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.25;
}

.mini-card p,
.yutaka-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.signal-strip {
  margin-top: 1rem;
  padding: 1.2rem 1.35rem;
  border: 1px solid rgba(181, 111, 75, 0.2);
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(181, 111, 75, 0.11), rgba(197, 155, 87, 0.11));
}

.signal-strip p {
  max-width: 100%;
  margin: 0;
  color: #4c4b45;
  font-weight: 700;
  font-style: italic;
}

.services-section {
  position: relative;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.service-card {
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.82), rgba(232, 238, 232, 0.5)),
    radial-gradient(circle at 16% 0%, rgba(197, 155, 87, 0.16), transparent 14rem);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 48px rgba(22, 37, 31, 0.1);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(36, 72, 60, 0.22);
  box-shadow: 0 22px 58px rgba(22, 37, 31, 0.14);
}

.service-card summary {
  min-height: 9.25rem;
  padding: 0.85rem;
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-thumb {
  height: 7.4rem;
  border-radius: 0.9rem;
  overflow: hidden;
  background: var(--mist);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.96);
}

.service-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1.18rem;
  line-height: 1.15;
}

.service-card small {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-plus {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(36, 72, 60, 0.16);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.74);
  position: relative;
}

.service-plus::before,
.service-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  transform: translate(-50%, -50%);
}

.service-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform var(--ease);
}

.service-card[open] .service-plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.service-body p {
  margin-bottom: 0.8rem;
}

.service-body h4 {
  margin: 0 0 0.45rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-body ul {
  margin: 0;
  padding-left: 1.1rem;
}

.service-body li + li {
  margin-top: 0.35rem;
}

.yutaka-section {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-top: 3.6rem;
}

.yutaka-panel {
  width: min(calc(100% - 2rem), var(--site-max));
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(22, 37, 31, 0.95), rgba(36, 72, 60, 0.94)),
    url("assets/finance-detail.jpg") center/cover;
  color: var(--paper);
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.yutaka-main {
  display: block;
}

.yutaka-copy {
  max-width: 34rem;
}

.yutaka-copy .eyebrow {
  color: #f0cf8e;
}

.yutaka-copy p {
  color: rgba(255, 250, 242, 0.78);
}

.yutaka-copy h2 {
  font-size: 4.1rem;
}

.yutaka-statement {
  margin-top: 1rem;
  padding: 1.45rem 1.65rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 1.25rem;
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(12px);
}

.yutaka-statement p {
  margin: 0;
  color: rgba(255, 250, 242, 0.75);
  font-size: 1.05rem;
}

.yutaka-statement p + p {
  margin-top: 0.65rem;
  color: var(--paper);
  font-weight: 900;
}

.yutaka-focus {
  padding: 0.6rem 0 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.yutaka-focus p {
  margin: 0 0.35rem 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-weight: 900;
}

.yutaka-focus span {
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
}

.includes-title {
  margin: 0.65rem 0 0.55rem;
  color: #f0cf8e;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.yutaka-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  border: 0;
}

.yutaka-grid article {
  padding: 1.1rem;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 1rem;
  background: rgba(255, 250, 242, 0.08);
  box-shadow: none;
}

.yutaka-grid article:last-child {
  border-right: 1px solid rgba(255, 250, 242, 0.16);
}

.yutaka-icon {
  width: 2.45rem;
  height: 2.45rem;
  margin-bottom: 0.85rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 242, 0.14);
  color: #f0cf8e;
}

.yutaka-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yutaka-grid p {
  color: rgba(255, 250, 242, 0.72);
}

.change-list {
  width: auto;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.change-list p {
  width: 100%;
  margin: 0 0 0.35rem;
  color: #f0cf8e;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.change-list span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.14);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 800;
}

.yutaka-cta {
  justify-self: center;
  margin-top: 1.2rem;
}

.yutaka-quote {
  margin: 0;
  padding: 1.15rem 0 0 1.15rem;
  border-left: 3px solid #f0cf8e;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 2.1rem;
  font-style: italic;
  line-height: 1.08;
}

.yutaka-close {
  margin-top: 2rem;
  padding-top: 1.35rem;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(22rem, 1fr);
  gap: 2rem;
  align-items: center;
}

.method-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 0.82fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.method-copy {
  position: static;
}

.stats-band {
  grid-column: 1 / -1;
  margin-top: -1rem;
  padding: 1.15rem 1.35rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(135deg, rgba(22, 37, 31, 0.94), rgba(36, 72, 60, 0.9)),
    radial-gradient(circle at 90% 0%, rgba(197, 155, 87, 0.18), transparent 18rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  color: var(--paper);
  box-shadow: var(--soft-shadow);
}

.stats-band strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.15rem;
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--sans);
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.timeline {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.55rem;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 2.2rem;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(36, 72, 60, 0.18));
}

.timeline article {
  position: relative;
  min-height: 7.8rem;
  padding: 0.7rem 0 1.2rem 4rem;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0.55rem;
  z-index: 1;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid rgba(36, 72, 60, 0.12);
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  color: var(--forest);
  box-shadow: var(--soft-shadow);
}

.timeline-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline h3 {
  margin-bottom: 0.3rem;
  font-size: 1.15rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.contact-card {
  padding: clamp(1.3rem, 3.5vw, 2.3rem);
  border: 1px solid rgba(36, 72, 60, 0.12);
  border-radius: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, 0.94), rgba(232, 238, 232, 0.72)),
    url("assets/desk.jpg") center/cover;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.contact-copy {
  align-self: center;
}

.contact-note {
  margin-top: 1.3rem;
  padding: 1rem;
  border-left: 3px solid var(--terracotta);
  background: rgba(255, 250, 242, 0.72);
  color: #4d514d;
  font-size: 0.92rem;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-form {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(36, 72, 60, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 250, 242, 0.88);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.botcheck-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 72, 60, 0.15);
  border-radius: 0.9rem;
  background: #fffdf8;
  color: var(--ink);
  padding: 0.9rem 0.95rem;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(36, 72, 60, 0.1);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.2rem;
  margin: 0;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-status.success {
  color: var(--forest);
}

.form-status.error {
  color: #9b3f2f;
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.footer {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem) 2.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--forest);
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-weight: 900;
}

.footer-links a {
  color: var(--muted);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-shell {
    position: relative;
    border-radius: 1.4rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    padding: 0.55rem;
    border-radius: 1.2rem;
    background: var(--ink);
    box-shadow: var(--soft-shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
  }

  .nav-links .nav-cta {
    margin: 0.2rem 0 0;
  }

  .hero,
  .split-heading,
  .yutaka-main,
  .yutaka-close,
  .method-about,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  h1 {
    font-size: 4rem;
  }

  .section-heading h2,
  .yutaka-copy h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: 2.8rem;
  }

  .hero-media {
    min-height: 34rem;
  }

  .method-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  h1 {
    max-width: 9ch;
    font-size: 3.55rem;
  }

  .hero {
    padding-bottom: 3.5rem;
  }

  .hero-media {
    min-height: 28rem;
    border-radius: 1.4rem;
  }

  .credential-card {
    width: calc(100% - 2rem);
  }

  .objective-grid,
  .yutaka-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .yutaka-grid article,
  .yutaka-grid article:last-child {
    border: 1px solid rgba(255, 250, 242, 0.16);
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-card summary {
    min-height: auto;
    grid-template-columns: 5.8rem minmax(0, 1fr) auto;
  }

  .service-thumb {
    height: 5.8rem;
  }

  .service-body {
    padding-left: 1.25rem;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .brand {
    gap: 0.5rem;
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .hero,
  .section {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero-actions .btn,
  .contact-form .btn {
    width: 100%;
  }

  .section-heading h2,
  .yutaka-copy h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: 2.4rem;
  }

  .service-card summary {
    grid-template-columns: 1fr auto;
  }

  .service-thumb {
    grid-column: 1 / -1;
    height: 8.8rem;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }

  .yutaka-quote {
    font-size: 1.65rem;
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 2.9rem;
  }

  .section-heading h2,
  .yutaka-copy h2,
  .method-copy h2,
  .contact-copy h2 {
    font-size: 2.35rem;
  }
}
