:root {
  --ink: #3b2822;
  --ink-soft: #725e53;
  --teal: #a64b29;
  --teal-deep: #5a2e23;
  --teal-light: #ffe5d7;
  --coral: #f2642b;
  --coral-dark: #d94e16;
  --white: #ffffff;
  --paper: #fff8f3;
  --line: #edd9cd;
  --font-display: "Noto Serif SC", "Source Han Serif SC", serif;
  --font-body: "Noto Sans SC", "Source Han Sans SC", "Microsoft YaHei", sans-serif;
  --header-height: 84px;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  width: 1em;
  height: 1em;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1200;
  padding: 10px 14px;
  background: var(--white);
  color: var(--teal);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 36px rgba(22, 45, 43, 0.08);
  border-color: transparent;
}

.nav-shell {
  width: min(calc(100% - 64px), 1380px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 132px;
}

.brand-logo {
  width: 132px;
  height: auto;
  display: block;
  border-radius: 3px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta {
  color: var(--white);
  background: var(--coral);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.header-cta svg {
  width: 17px;
  height: 17px;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  padding: 24px 32px 36px;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(13, 41, 39, 0.12);
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 22px;
  border-bottom: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: 760px;
  height: calc(100svh - 24px);
  max-height: 920px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media {
  background-image: url("assets/images/hero-family-health.jpg");
  background-position: center 34%;
  background-size: cover;
  transform: scale(1.02);
  filter: sepia(0.24) saturate(1.08);
  animation: hero-focus 1.5s cubic-bezier(.2,.8,.2,1) both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(58, 28, 20, 0.92) 0%, rgba(58, 28, 20, 0.72) 42%, rgba(58, 28, 20, 0.16) 72%, rgba(58, 28, 20, 0.03) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-height);
}

.hero-copy {
  width: 650px;
  max-width: 62%;
  margin-bottom: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--coral);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.light-link {
  color: var(--white);
}

.hero-features {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 720px;
  max-width: 72%;
  min-height: 94px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(90, 46, 35, 0.9);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature:last-child {
  border-right: 0;
}

.hero-feature svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  color: var(--coral);
}

.hero-feature span {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.hero-feature strong {
  color: var(--white);
  font-size: 15px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
}

.scroll-cue svg {
  width: 20px;
  height: 20px;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.section {
  padding: 128px 0;
}

.section-heading {
  margin-bottom: 74px;
}

.heading-split {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 10%;
  align-items: end;
}

.section-heading h2,
.about-copy h2,
.journey-header h2,
.promise-copy h2,
.faq-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.heading-split > p,
.journey-header > p {
  margin: 0 0 8px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-item {
  position: relative;
  min-height: 356px;
  padding: 34px 30px 36px;
  border-right: 1px solid var(--line);
  overflow: hidden;
  transition: color 240ms ease, background-color 240ms ease;
}

.service-item:last-child {
  border-right: 0;
}

.service-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}

.service-item:hover {
  color: var(--white);
  background: var(--teal);
}

.service-item:hover::after {
  transform: scaleX(1);
}

.service-number {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  transition: color 240ms ease;
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 54px 0 32px;
  color: var(--teal);
  background: var(--teal-light);
  border-radius: 6px;
}

.service-icon svg {
  width: 27px;
  height: 27px;
}

.service-item h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 23px;
}

.service-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.9;
  transition: color 240ms ease;
}

.service-item:hover .service-number,
.service-item:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.about {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 9%;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 660px;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 54px auto -28px -28px;
  width: 72%;
  border: 1px solid rgba(166, 75, 41, 0.24);
}

.about-visual img {
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 1;
  width: 92%;
  height: 610px;
  object-fit: cover;
  object-position: 58% center;
  filter: sepia(0.14) saturate(1.06);
}

.about-caption {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 0;
  width: 290px;
  padding: 24px 28px;
  color: var(--white);
  background: var(--teal);
}

.about-caption span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.about-caption strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.about-copy h2 {
  font-size: 43px;
}

.about-intro {
  margin: 30px 0 40px;
  color: var(--ink-soft);
  line-height: 2;
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.principle > svg {
  width: 28px;
  height: 28px;
  color: var(--coral);
}

.principle h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 18px;
}

.principle p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.section-dark {
  padding: 120px 0 130px;
  color: var(--white);
  background: var(--teal-deep);
}

.section-kicker-light {
  color: #ffc09f;
}

.journey-header {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12%;
  align-items: end;
  margin-bottom: 64px;
}

.journey-header > p {
  color: rgba(255, 255, 255, 0.64);
}

.journey-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-tab {
  position: relative;
  padding: 0 14px 24px;
  color: rgba(255, 255, 255, 0.54);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.journey-tab span {
  margin-right: 14px;
  font-size: 11px;
}

.journey-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.journey-tab.is-active {
  color: var(--white);
}

.journey-tab.is-active::after {
  transform: scaleX(1);
}

.journey-panel {
  min-height: 330px;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.55fr;
  align-items: center;
  gap: 40px;
  outline: 0;
}

.journey-index {
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--font-display);
  font-size: 154px;
  line-height: 1;
}

.journey-panel-copy > p:first-child {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
}

.journey-panel-copy h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 34px;
}

.journey-panel-copy > p:last-child {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.journey-icon {
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  justify-self: end;
  color: var(--coral);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.journey-icon svg {
  width: 48px;
  height: 48px;
}

.promise-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 11%;
}

.promise-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.promise-copy h2 {
  font-size: 42px;
}

.promise-copy blockquote {
  margin: 42px 0 0;
  padding-left: 24px;
  color: var(--ink-soft);
  border-left: 3px solid var(--coral);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.9;
}

.promise-list {
  border-top: 1px solid var(--line);
}

.promise-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 22px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.promise-item > span {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 25px;
}

.promise-item h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
}

.promise-item p {
  margin: 0;
  color: var(--ink-soft);
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 11%;
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  margin-bottom: 20px;
}

.faq-heading > p:last-child {
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid #ccd5d0;
}

.faq-list details {
  border-bottom: 1px solid #ccd5d0;
}

.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 19px;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--coral);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 48px 26px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.contact-photo,
.contact-overlay {
  position: absolute;
  inset: 0;
}

.contact-photo {
  filter: sepia(0.24) saturate(1.08);
  background: url("assets/images/hero-family-health.jpg") center 38% / cover;
}

.contact-overlay {
  background: linear-gradient(90deg, rgba(90, 46, 35, 0.96) 0%, rgba(90, 46, 35, 0.74) 54%, rgba(90, 46, 35, 0.2) 100%);
}

.contact-inner {
  position: relative;
  z-index: 1;
}

.contact-inner > p:not(.section-kicker) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
}

.contact-info {
  cursor: pointer;
}

.contact-info.button-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.contact-info.text-link:hover {
  color: var(--coral);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #3e2722;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
  gap: 7%;
  padding: 76px 0 64px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 280px;
  margin: 24px 0 0;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 16px;
}

.footer-column a:hover {
  color: var(--coral);
}

.icp-link {
  transition: color 180ms ease;
}

.icp-link:hover,
.icp-link:focus-visible {
  color: var(--coral);
}

.footer-column p {
  margin: 0;
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coral);
  border-color: var(--coral);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal-up 700ms cubic-bezier(.2,.8,.2,1) forwards;
}

.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 220ms; }
.reveal-delay-3 { animation-delay: 340ms; }

:focus-visible {
  outline: 3px solid rgba(238, 114, 93, 0.6);
  outline-offset: 4px;
}

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-focus {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

@media (max-width: 1080px) {
  :root { --header-height: 76px; }

  .desktop-nav { gap: 22px; }
  .desktop-nav a { font-size: 13px; }
  .header-cta { display: none; }
  .hero h1 { font-size: 56px; }
  .hero-copy { max-width: 70%; }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-item:nth-child(2) { border-right: 0; }
  .service-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-layout { gap: 6%; }
  .about-visual { min-height: 580px; }
  .about-visual img { height: 540px; }
  .about-caption { right: 0; }
  .about-copy h2 { font-size: 38px; }
  .journey-panel { grid-template-columns: 0.45fr 1.55fr 0.45fr; }
  .journey-index { font-size: 116px; }
  .journey-icon { width: 110px; height: 110px; }
}

@media (max-width: 820px) {
  .shell,
  .nav-shell { width: min(calc(100% - 40px), var(--shell)); }

  .desktop-nav { display: none; }
  .menu-toggle { display: inline-grid; margin-left: auto; }
  .hero { min-height: 680px; height: calc(100svh - 16px); }
  .hero-media { background-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(58, 28, 20, 0.92) 0%, rgba(58, 28, 20, 0.62) 72%, rgba(58, 28, 20, 0.28) 100%); }
  .hero-copy { max-width: 88%; margin-bottom: 96px; }
  .hero h1 { font-size: 48px; }
  .hero-features { width: calc(100% - 84px); max-width: none; }
  .scroll-cue { right: 20px; }
  .section { padding: 96px 0; }
  .heading-split,
  .journey-header,
  .promise-layout,
  .faq-layout { grid-template-columns: 1fr; gap: 34px; }
  .section-heading h2,
  .journey-header h2,
  .faq-heading h2,
  .contact h2 { font-size: 40px; }
  .section-heading { margin-bottom: 52px; }
  .about-layout { grid-template-columns: 1fr; gap: 72px; }
  .about-visual { min-height: 600px; width: 92%; }
  .about-copy h2 { font-size: 40px; }
  .journey-tabs { overflow-x: auto; grid-template-columns: repeat(4, 190px); }
  .journey-panel { grid-template-columns: 0.5fr 1.5fr; }
  .journey-icon { display: none; }
  .promise-copy { position: static; }
  .faq-heading > p:last-child { max-width: 420px; }
  .footer-main { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .footer-contact { grid-column: 1 / -1; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.11); }
}

@media (max-width: 560px) {
  :root { --header-height: 68px; }

  body { font-size: 15px; }
  .shell,
  .nav-shell { width: min(calc(100% - 32px), var(--shell)); }
  .brand { min-width: 0; }
  .brand-logo { width: 108px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-nav { padding: 18px 20px 28px; }
  .hero { min-height: 640px; height: calc(100svh - 14px); max-height: 760px; }
  .hero-media { background-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(58, 28, 20, 0.94) 0%, rgba(58, 28, 20, 0.76) 58%, rgba(58, 28, 20, 0.5) 100%); }
  .hero-inner { justify-content: flex-start; padding-top: 142px; }
  .hero-copy { width: 100%; max-width: none; margin: 0; }
  .eyebrow { margin-bottom: 15px; font-size: 11px; }
  .hero h1 { font-size: 38px; line-height: 1.35; }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.8; }
  .hero-actions { margin-top: 26px; gap: 18px; }
  .button { min-height: 46px; padding: 0 16px; }
  .hero-features { left: 16px; right: 16px; bottom: 18px; width: auto; min-height: 72px; }
  .hero-feature { padding: 12px 8px; justify-content: center; }
  .hero-feature svg { display: none; }
  .hero-feature span { text-align: center; font-size: 10px; }
  .hero-feature strong { font-size: 13px; }
  .scroll-cue { display: none; }
  .section { padding: 76px 0; }
  .section-heading h2,
  .journey-header h2,
  .faq-heading h2,
  .contact h2 { font-size: 32px; }
  .heading-split { gap: 24px; }
  .service-list { grid-template-columns: 1fr; }
  .service-item { min-height: auto; padding: 26px 22px 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-item:last-child { border-bottom: 0; }
  .service-icon { margin: 30px 0 24px; }
  .about-layout { gap: 52px; }
  .about-visual { width: calc(100% - 16px); min-height: 440px; }
  .about-visual::before { inset: 34px auto -18px -16px; }
  .about-visual img { width: 100%; height: 410px; }
  .about-caption { right: -16px; width: 238px; padding: 18px 20px; }
  .about-copy h2,
  .promise-copy h2 { font-size: 32px; }
  .principle { grid-template-columns: 38px 1fr; gap: 12px; }
  .section-dark { padding: 76px 0 84px; }
  .journey-header { margin-bottom: 42px; }
  .journey-tabs { grid-template-columns: repeat(4, 152px); }
  .journey-tab { padding: 0 8px 18px; }
  .journey-tab span { margin-right: 8px; }
  .journey-panel { min-height: 300px; grid-template-columns: 1fr; gap: 0; }
  .journey-index { position: absolute; font-size: 128px; }
  .journey-panel-copy { position: relative; z-index: 1; padding-top: 68px; }
  .journey-panel-copy h3 { font-size: 28px; }
  .promise-item { grid-template-columns: 46px 1fr; gap: 12px; padding: 28px 0; }
  .promise-item > span { font-size: 19px; }
  .promise-item h3 { font-size: 21px; }
  .faq-list summary { min-height: 76px; font-size: 17px; }
  .faq-list details p { margin-right: 0; }
  .contact { min-height: 510px; }
  .contact-photo { background-position: 63% center; }
  .contact-overlay { background: rgba(90, 46, 35, 0.86); }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 44px 24px; padding: 58px 0 48px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { min-height: 94px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 4px; padding: 20px 0; }
  .back-to-top { right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
