:root {
  --cream: #fff8ed;
  --champagne: #f3dfc6;
  --paper: #f8efe2;
  --linen: #ead6bd;
  --sage: #778a67;
  --sage-soft: #c8d1bd;
  --terracotta: #c87461;
  --clay: #b66a55;
  --plum: #6a3452;
  --green: #173d36;
  --green-2: #214f45;
  --ink: #202427;
  --muted: #6c645c;
  --line: rgba(32, 36, 39, 0.13);
  --line-strong: rgba(32, 36, 39, 0.2);
  --shadow: 0 28px 70px rgba(32, 36, 39, 0.14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.45;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
.thesis {
  font-family: var(--serif);
  letter-spacing: 0;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(200, 116, 97, 0.16) 0 13%, transparent 13% 100%),
    linear-gradient(103deg, transparent 0 70%, rgba(119, 138, 103, 0.14) 70% 78%, transparent 78% 100%),
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.86), transparent 26%),
    linear-gradient(180deg, #fff8ed 0%, #f8efe2 52%, #fff8ed 100%);
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 30;
  width: min(1120px, calc(100% - 36px));
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  background: rgba(255, 248, 237, 0.8);
  border: 1px solid rgba(32, 36, 39, 0.1);
  box-shadow: 0 16px 36px rgba(32, 36, 39, 0.06);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(255, 248, 237, 0.94);
  border-color: rgba(32, 36, 39, 0.16);
  box-shadow: 0 18px 42px rgba(32, 36, 39, 0.1);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  min-width: 0;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--cream);
  background: linear-gradient(135deg, var(--green), var(--sage));
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1.05;
}

.brand-lockup strong {
  font-size: 14px;
}

.brand-lockup small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-actions a,
.solid-link,
.ghost-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.top-actions a {
  color: var(--muted);
}

.top-actions a:hover {
  color: var(--ink);
}

.solid-link {
  color: #fff8ed !important;
  background: var(--plum);
  border: 1px solid var(--plum);
}

.solid-link:hover {
  background: #51243d;
  border-color: #51243d;
}

.ghost-link {
  color: var(--green);
  background: rgba(255, 248, 237, 0.52);
  border: 1px solid rgba(23, 61, 54, 0.2);
}

.hero {
  width: min(1120px, calc(100% - 48px));
  min-height: 850px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 70px;
  margin: 0 auto;
  padding: 150px 0 82px;
}

.kicker,
.section-kicker {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  margin-bottom: 22px;
}

.section-kicker {
  margin-bottom: 18px;
}

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.89;
  font-weight: 700;
}

.thesis {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.06;
  color: #473f39;
}

.microcopy,
.section-lead,
.deep-band p,
.care-copy p,
.contact-band p {
  color: var(--muted);
  font-size: 18px;
}

.microcopy {
  max-width: 650px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  max-width: 450px;
  justify-self: end;
}

.portrait-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--champagne);
  border: 1px solid rgba(32, 36, 39, 0.12);
  border-radius: 72px 72px 10px 10px;
  box-shadow: var(--shadow);
}

.portrait-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23, 61, 54, 0.1));
  pointer-events: none;
}

.portrait-stage img {
  aspect-ratio: 0.76;
  height: auto;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  right: -26px;
  bottom: 54px;
  width: min(245px, 58%);
  padding: 22px;
  color: var(--cream);
  background: rgba(23, 61, 54, 0.92);
  border: 1px solid rgba(255, 248, 237, 0.24);
  box-shadow: 0 18px 34px rgba(32, 36, 39, 0.18);
}

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

.hero-note strong {
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-note span {
  color: rgba(255, 248, 237, 0.82);
  font-size: 14px;
}

.signature-strip {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signature-strip div {
  min-height: 118px;
  padding: 28px 24px;
  background: rgba(255, 248, 237, 0.52);
}

.signature-strip strong,
.signature-strip span {
  display: block;
}

.signature-strip strong {
  margin-bottom: 9px;
  color: var(--plum);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signature-strip span {
  color: var(--muted);
  font-size: 15px;
}

.section-block,
.faq-section,
.care-band,
.contact-band {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0;
}

.section-block h2,
.faq-section h2,
.care-copy h2,
.contact-band h2 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.96;
}

.section-lead {
  max-width: 740px;
  margin-bottom: 44px;
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 248, 237, 0.58);
}

.situation-card {
  min-height: 300px;
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}

.situation-card:last-child {
  border-right: 0;
}

.situation-card b,
.situation-card h3,
.situation-card p {
  display: block;
}

.situation-card b {
  margin-bottom: 46px;
  color: var(--terracotta);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.situation-card h3 {
  margin-bottom: 16px;
  font-size: 25px;
  line-height: 1.04;
}

.situation-card p,
.list-panel p,
.approach-item span,
.about-copy p,
.credential-row span,
.care-split p,
.faq-item p,
.contact-card span,
.contact-card small,
.site-footer {
  color: var(--muted);
}

.deep-band {
  margin: 0;
  padding: 116px 0;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(23, 61, 54, 0.98), rgba(43, 44, 46, 0.96) 56%, rgba(106, 52, 82, 0.95)),
    var(--green);
}

.deep-band-inner {
  width: min(1120px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: start;
  margin: 0 auto;
}

.deep-band .section-kicker {
  color: #d8a48f;
}

.deep-band h2 {
  margin-bottom: 26px;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.92;
}

.deep-band p,
.list-panel p {
  color: rgba(255, 248, 237, 0.72);
}

.list-panel {
  display: grid;
  gap: 26px;
  padding-top: 8px;
}

.list-panel article {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 248, 237, 0.18);
}

.list-panel h3 {
  margin-bottom: 9px;
  color: var(--cream);
  font-size: 23px;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: stretch;
  margin-top: 42px;
}

.approach-note {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: var(--cream);
  background: linear-gradient(145deg, var(--plum), var(--green));
  box-shadow: var(--shadow);
}

.approach-note h3 {
  margin-bottom: 20px;
  font-size: 40px;
  line-height: 0.98;
}

.approach-note p {
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.8);
}

.approach-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.approach-item {
  min-height: 178px;
  padding: 30px;
  background: rgba(255, 248, 237, 0.76);
}

.approach-item strong {
  display: block;
  margin-bottom: 14px;
  color: var(--plum);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section {
  padding-top: 40px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  margin-top: 36px;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 52px 0 52px 0;
  box-shadow: var(--shadow);
}

.about-photo img {
  aspect-ratio: 0.78;
  object-fit: cover;
}

.about-copy p {
  font-size: 18px;
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.credential-row div {
  min-height: 156px;
  padding: 24px;
  background: rgba(255, 248, 237, 0.78);
}

.credential-row strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
}

.credential-row span {
  font-size: 14px;
}

.care-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
  padding-top: 34px;
}

.care-split {
  display: grid;
  grid-template-columns: 1fr 112px 1fr;
  gap: 0;
  align-items: stretch;
}

.care-split article,
.bridge {
  min-height: 250px;
  padding: 30px;
}

.care-split article:first-child {
  background: var(--sage-soft);
}

.care-split article:last-child {
  background: #e7bfae;
}

.care-split span {
  display: block;
  margin-bottom: 34px;
  color: rgba(32, 36, 39, 0.68);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.care-split h3 {
  margin-bottom: 18px;
  font-size: 42px;
}

.bridge {
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.faq-section {
  padding-top: 50px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-item {
  min-height: 190px;
  padding: 30px;
  background: rgba(255, 248, 237, 0.78);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.06;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.52fr);
  gap: 58px;
  align-items: end;
  margin-bottom: 40px;
  padding: 58px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(106, 52, 82, 0.98), rgba(200, 116, 97, 0.92) 58%, rgba(23, 61, 54, 0.96)),
    var(--plum);
  border-radius: 72px 0 72px 0;
  box-shadow: var(--shadow);
}

.contact-band h2 {
  color: var(--cream);
}

.contact-band p {
  max-width: 630px;
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.78);
}

.contact-card {
  padding: 28px;
  background: rgba(255, 248, 237, 0.1);
  border: 1px solid rgba(255, 248, 237, 0.22);
}

.contact-card strong,
.contact-card span,
.contact-card a,
.contact-card small {
  display: block;
}

.contact-card strong {
  margin-bottom: 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card span {
  margin-bottom: 18px;
  color: rgba(255, 248, 237, 0.76);
}

.contact-card a {
  margin-bottom: 20px;
  color: var(--cream);
  font-weight: 800;
  word-break: break-word;
}

.contact-card small {
  color: rgba(255, 248, 237, 0.68);
  font-size: 12px;
}

.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 36px;
  font-size: 12px;
}

.site-footer strong {
  color: var(--ink);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .topbar {
    top: 12px;
    width: calc(100% - 24px);
  }

  .top-actions a:not(.solid-link) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 38px;
    padding-top: 120px;
  }

  .hero-visual {
    width: min(520px, 100%);
    max-width: none;
    justify-self: start;
  }

  .portrait-stage {
    border-radius: 44px 44px 8px 8px;
  }

  .signature-strip,
  .situation-grid,
  .approach-list,
  .credential-row,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .situation-card:nth-child(2) {
    border-right: 0;
  }

  .situation-card {
    border-bottom: 1px solid var(--line);
  }

  .situation-card:nth-child(n+3) {
    border-bottom: 0;
  }

  .deep-band-inner,
  .approach-grid,
  .about-split,
  .care-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .care-split {
    grid-template-columns: 1fr;
  }

  .bridge {
    min-height: 78px;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 56px;
    padding: 8px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .brand-lockup strong {
    font-size: 12px;
  }

  .brand-lockup small {
    font-size: 9px;
  }

  .top-actions .solid-link {
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px;
  }

  .hero,
  .signature-strip,
  .section-block,
  .faq-section,
  .care-band,
  .contact-band,
  .site-footer,
  .deep-band-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding: 104px 0 54px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: 47px;
    line-height: 0.92;
  }

  .thesis {
    font-size: 23px;
  }

  .microcopy,
  .section-lead,
  .deep-band p,
  .care-copy p,
  .contact-band p,
  .about-copy p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .solid-link,
  .ghost-link {
    width: 100%;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: -1px;
    box-shadow: none;
  }

  .signature-strip,
  .situation-grid,
  .approach-list,
  .credential-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .signature-strip div {
    min-height: auto;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .signature-strip div:last-child {
    border-bottom: 0;
  }

  .section-block,
  .faq-section,
  .care-band {
    padding: 72px 0;
  }

  .section-block h2,
  .faq-section h2,
  .care-copy h2,
  .contact-band h2 {
    font-size: 38px;
    line-height: 0.98;
  }

  .situation-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .situation-card:last-child,
  .situation-card:nth-child(n+3) {
    border-bottom: 1px solid var(--line);
  }

  .situation-card:last-child {
    border-bottom: 0;
  }

  .situation-card b {
    margin-bottom: 24px;
  }

  .deep-band {
    padding: 78px 0;
  }

  .deep-band h2 {
    font-size: 40px;
  }

  .approach-note {
    min-height: 300px;
    padding: 28px;
  }

  .approach-note h3 {
    font-size: 34px;
  }

  .approach-item,
  .credential-row div,
  .faq-item {
    min-height: auto;
    padding: 24px;
  }

  .about-photo {
    border-radius: 42px 0 42px 0;
  }

  .care-split article,
  .bridge {
    min-height: auto;
    padding: 24px;
  }

  .care-split h3 {
    font-size: 36px;
  }

  .contact-band {
    gap: 34px;
    margin-bottom: 30px;
    padding: 34px 24px;
    border-radius: 48px 0 48px 0;
  }
}
