:root {
  --bg: #fbfaf6;
  --paper: #f3efe5;
  --paper-strong: #e4dccb;
  --ink: #24231f;
  --muted: #777268;
  --line: #ddd7ca;
  --green: #61745a;
  --line-green: #05b94f;
  --white: #ffffff;
  --font-base: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-soft: "Zen Maru Gothic", sans-serif;
  --container: 980px;
  --container-hero: 1040px;
  --container-narrow: 720px;
  --gutter: 42px;
  --gutter-mobile: 32px;
  --section-padding: clamp(88px, 12vw, 160px);
  --section-padding-mobile: 78px;
  --line-border: 1px solid var(--line);
  --ink-border: 1px solid var(--ink);
  --fade-image: opacity 2.2s ease, transform 10s ease;
  --ease-standard: .28s ease;
  --shadow: 0 18px 48px rgba(54, 47, 34, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 78px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background var(--ease-standard), color var(--ease-standard), box-shadow var(--ease-standard);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 246, .94);
  color: var(--ink);
  box-shadow: 0 1px 18px rgba(36, 35, 31, .08);
  backdrop-filter: blur(14px);
}

body:not(.home):not(.front-page) .site-header {
  background: rgba(251, 250, 246, .94);
  color: var(--ink);
  box-shadow: 0 1px 18px rgba(36, 35, 31, .08);
  backdrop-filter: blur(14px);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 13px;
  font-weight: 700;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s ease;
}

.global-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  --hero-height: clamp(520px, 82svh, 760px);
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  background: #2d241c;
  color: var(--white);
  font-family: var(--font-soft);
}

.hero-logo {
  position: absolute;
  top: clamp(26px, 5vw, 56px);
  left: clamp(24px, 5.6vw, 78px);
  z-index: 2;
  width: clamp(78px, 9vw, 132px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 3px 14px rgba(0, 0, 0, .45)) drop-shadow(0 1px 3px rgba(0, 0, 0, .5));
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 19, 16, .58), rgba(22, 19, 16, .08) 46%, rgba(22, 19, 16, .34)),
    linear-gradient(0deg, rgba(22, 19, 16, .18), transparent 42%);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(28px, 7vw, 88px);
  width: min(var(--container-hero), calc(100% - 48px));
  min-height: var(--hero-height);
  margin: 0 auto;
  padding: clamp(104px, 15vh, 156px) 0 clamp(96px, 13vh, 132px);
}

.hero h1 {
  width: 100%;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .42), 0 1px 4px rgba(0, 0, 0, .5);
}

.hero-copy > p {
  display: none;
}

.hero-cta {
  max-width: 560px;
  margin-top: auto;
}

.hero-cta p {
  margin: 0 0 clamp(34px, 4vw, 46px);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.9;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .38);
}

.hero-cta .contact-actions {
  flex-wrap: nowrap;
}

.hero-cta .contact-actions a {
  min-width: 210px;
  min-height: 56px;
  font-weight: 400;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.scroll-link {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section {
  position: relative;
  width: min(var(--container), calc(100% - var(--gutter)));
  margin: 0 auto;
  padding: var(--section-padding) 0;
}

.section-label {
  position: absolute;
  left: -100px;
  top: clamp(96px, 12vw, 172px);
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 20px;
  letter-spacing: .08em;
}

.section-label::before {
  content: "";
  width: 1px;
  height: 46px;
  background: var(--line);
}

.section-label small {
  font-size: 20px;
  font-weight: 500;
}

.lead-grid,
.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.area-grid {
  grid-template-columns: minmax(340px, 520px) minmax(430px, 1fr);
  gap: clamp(40px, 5vw, 72px);
}

h2 {
  margin: 0 0 30px;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 500;
  line-height: 1.55;
}

h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}

p {
  margin: 0 0 1.5em;
}

.lead p,
.message p,
.section-head p,
.contact p {
  color: var(--muted);
}

.lead-photo {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}

.area-photo {
  margin: 0;
}

.lead-photo img,
.slider-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: var(--fade-image);
}

.area-photo img {
  width: 100%;
  height: auto;
}

.lead-photo img {
  transform: scale(1.035);
}

.lead-photo img.is-active,
.slider-frame img.is-active {
  opacity: 1;
  transform: scale(1);
}

.lead-photo__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  background: var(--paper);
  font-size: 14px;
}

.journal {
  padding-top: clamp(18px, 4vw, 44px);
  padding-bottom: clamp(18px, 4vw, 44px);
}

.journal-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 30px 0;
  border-top: var(--line-border);
  border-bottom: var(--line-border);
  text-align: center;
}

.journal h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.journal-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journal-list a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.message {
  min-height: 620px;
  display: grid;
  align-items: center;
}

.message-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.message h2 {
  color: var(--ink);
  margin-bottom: 22px;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.55;
}

.message p {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.message-care {
  position: relative;
  max-width: var(--container-narrow);
  margin: 52px auto 0;
  padding: 28px 0;
  border-top: var(--line-border);
  border-bottom: var(--line-border);
  text-align: left;
}

.message-care h3 {
  margin-bottom: 16px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.7;
}

.message-care p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.message-care p + p {
  margin-top: 14px;
}

.profile-inner {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 70px);
  align-items: center;
}

.profile {
  color: var(--muted);
}

.profile-photo {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: var(--line-border);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(243, 239, 229, .9), rgba(251, 250, 246, .9)),
    var(--paper);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 24% center;
  transform: scaleX(-1);
}

.profile-copy {
  max-width: var(--container-narrow);
}

.profile-role {
  margin: 0 0 2px;
  font-weight: 700;
}

.profile h2 {
  margin-bottom: 4px;
  font-size: clamp(28px, 3.6vw, 42px);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.profile-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid var(--muted);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.profile-copy > p:last-child {
  margin: 0;
}

.section-head {
  margin-bottom: 36px;
}

.section-head h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
}

.section-head.compact {
  margin-bottom: 28px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 88px);
  align-items: start;
}

.service-visual,
.service-copy {
  min-width: 0;
}

.service-copy {
  padding-top: clamp(112px, 12vw, 148px);
}

.service-visual .section-head {
  margin-bottom: clamp(24px, 3.6vw, 36px);
  text-align: left;
}

.service-visual .section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.service-slider {
  position: relative;
  background: var(--paper-strong);
}

.slider-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.slider-frame img {
  object-position: center center;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .9);
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button::before {
  content: "";
  position: absolute;
  inset: 15px 13px;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.slider-button.prev {
  left: 14px;
}

.slider-button.prev::before {
  transform: rotate(-135deg);
}

.slider-button.next {
  right: 14px;
}

.slider-button.next::before {
  transform: rotate(45deg);
}

.service-list article,
.area-list div,
.faq-list details {
  border-top: var(--line-border);
}

.service-list article {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(20px, 2.8vw, 28px) 0;
}

.service-item-main {
  flex: 1;
  min-width: 0;
}

.service-list article h3 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.service-list article h3 small {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.service-list .service-feature {
  margin-top: clamp(18px, 3vw, 30px);
  padding: clamp(20px, 2.8vw, 28px) clamp(18px, 3vw, 28px);
  border-top: 0;
  background: var(--paper);
}

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

.service-item-main p {
  max-width: 34em;
  font-size: 14px;
  line-height: 1.9;
}

.service-list .service-note {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.9;
}

.area-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
}

.area-list strong {
  font-family: var(--font-base);
}

.flow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  padding: 0 0 clamp(44px, 6vw, 68px);
}

.flow-list li::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.flow-list li:last-child {
  padding-bottom: 0;
}

.flow-list li:last-child::before {
  display: none;
}

.flow-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.flow-list h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.45;
}

.flow-list p {
  max-width: 50em;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.faq-list details {
  padding: 0;
}

.faq .section-head {
  padding-right: 0;
  text-align: left;
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  padding: 16px 42px 16px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--green);
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 42px 22px 0;
  color: var(--muted);
}

.contact-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 460px;
  margin: 28px auto 0;
}

.contact-actions a {
  display: inline-grid;
  place-items: center;
  min-width: 162px;
  min-height: 48px;
  padding: 11px 22px;
  border: var(--ink-border);
  background: var(--bg);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-actions .line {
  border-color: var(--line-green);
  background: var(--line-green);
  color: var(--white);
}

.contact-inner .contact-note {
  max-width: 34em;
  margin: 16px auto 0;
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
}

.site-footer {
  padding: 82px 20px 54px;
  background: var(--paper-strong);
  color: var(--muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(300px, 1.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.footer-brand p {
  margin: 0;
}

.footer-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .12em;
}

.footer-info {
  display: grid;
  gap: 10px;
  margin: 0;
}

.footer-info div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
}

.footer-info dt,
.footer-info dd {
  margin: 0;
}

.footer-info dt {
  font-weight: 700;
}

.site-footer small {
  grid-column: 1 / -1;
  font-size: 12px;
}

.page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 12;
  width: 44px;
  height: 44px;
  border: var(--line-border);
  background: rgba(251, 250, 246, .92);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}

.page-top::before {
  content: "";
  position: absolute;
  inset: 17px 14px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  transform: rotate(45deg) translate(2px, 2px);
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 1120px) {
  .section-label {
    position: static;
    writing-mode: horizontal-tb;
    margin-bottom: 24px;
  }

  .section-label::before {
    width: 44px;
    height: 1px;
  }
}

@media (max-width: 820px) {
  body.is-nav-open {
    overflow: hidden;
  }

  .section-label {
    display: none;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 20px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled,
  .site-header.is-open {
    background: transparent;
    color: var(--white);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-open {
    inset: 0;
    align-items: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    pointer-events: none;
  }

  body:not(.home):not(.front-page) .site-header:not(.is-open),
  body:not(.home):not(.front-page) .site-header.is-scrolled:not(.is-open) {
    background: rgba(251, 250, 246, .94);
    color: var(--ink);
    box-shadow: 0 1px 18px rgba(36, 35, 31, .08);
    backdrop-filter: blur(14px);
  }

  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 52px;
    height: 52px;
    place-content: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    pointer-events: auto;
  }

  .nav-toggle img {
    display: block;
    width: 48px;
    height: 48px;
    clip-path: inset(7px);
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform .18s ease;
  }

  .site-header.is-past-hero:not(.is-open) .nav-toggle img,
  body:not(.home):not(.front-page):not(.is-nav-open) .nav-toggle img {
    filter: none;
  }

  .global-nav {
    position: absolute;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(22px, 6vw, 42px);
    min-height: 100vh;
    min-height: 100dvh;
    padding: 42vh clamp(24px, 8vw, 56px) 72px;
    background: linear-gradient(90deg, rgba(36, 35, 31, .82), rgba(36, 35, 31, .68));
    color: var(--white);
    font-size: clamp(18px, 4.8vw, 25px);
    font-weight: 300;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    backdrop-filter: blur(8px);
    transition: opacity .28s ease, transform .28s ease;
  }

  .global-nav::before {
    content: "Menu";
    position: absolute;
    left: clamp(28px, 9vw, 72px);
    bottom: clamp(44px, 9vh, 80px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .72;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 1.8em;
    min-height: 9em;
    padding: .6em .12em;
    border: 0;
    writing-mode: vertical-rl;
    line-height: 1.7;
    letter-spacing: .12em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .22);
    transform: translateY(12px);
    opacity: 0;
    transition: opacity .28s ease, transform .28s ease;
  }

  .global-nav a::after {
    display: none;
  }

  .global-nav.is-open a {
    transform: translateY(0);
    opacity: 1;
  }

  .global-nav.is-open a:nth-child(1) {
    transition-delay: .04s;
  }

  .global-nav.is-open a:nth-child(2) {
    transition-delay: .08s;
  }

  .global-nav.is-open a:nth-child(3) {
    transition-delay: .12s;
  }

  .global-nav.is-open a:nth-child(4) {
    transition-delay: .16s;
  }

  .global-nav.is-open a:nth-child(5) {
    transition-delay: .2s;
  }

  .global-nav.is-open a:nth-child(6) {
    transition-delay: .24s;
  }

  .hero {
    --hero-height: clamp(500px, 76svh, 660px);
  }

  .hero-copy {
    width: min(100% - 34px, 560px);
    gap: 24px;
    padding: 92px 0 clamp(84px, 13vh, 116px);
  }

  .hero-logo {
    top: 24px;
    left: 20px;
    width: clamp(66px, 18vw, 96px);
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 56px);
  }

  .hero-cta p {
    font-size: clamp(17px, 4.6vw, 22px);
  }

  .hero-cta .contact-actions {
    flex-wrap: wrap;
    gap: 18px;
  }

  .hero-cta .contact-actions a {
    min-width: 180px;
    min-height: 54px;
  }

  .hero-cta .contact-actions a:not(.line) {
    border-color: rgba(97, 116, 90, .45);
    box-shadow: 0 10px 24px rgba(54, 47, 34, .18);
  }

  .lead-grid,
  .area-grid,
  .service-layout,
  .flow-list li {
    grid-template-columns: 1fr;
  }

  .area-content {
    display: contents;
  }

  .area-content .section-head {
    order: -2;
  }

  .area-photo {
    order: -1;
  }

  .area-photo img {
    width: min(60%, 320px);
    margin: 0 auto;
  }

  .service-list article {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
  }

  .profile-inner {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: min(100%, 220px);
  }

  .service-copy {
    padding-top: 0;
  }

  .service-slider {
    width: min(100%, 420px);
  }

  .lead-photo {
    width: min(100%, 420px);
  }

  .message {
    min-height: auto;
  }

  .message h2 {
    font-size: clamp(31px, 9vw, 44px);
    text-align: left;
  }

  .message-inner {
    text-align: left;
  }

  .slider-frame {
    aspect-ratio: 4 / 3;
  }

  .flow-list li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding-bottom: 40px;
  }

  .flow-list li::before {
    left: 24px;
    top: 50px;
    bottom: 8px;
  }

  .flow-list span {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .flow-list h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .flow-list p {
    font-size: 13px;
    font-weight: 500;
  }

  .contact-actions a {
    flex: 1 1 160px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .section {
    width: min(100% - var(--gutter-mobile), var(--container));
    padding: var(--section-padding-mobile) 0;
  }

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

  .contact-inner p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: none;
  }

  .contact-actions a,
  .hero-cta .contact-actions a {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
  }

  .hero-cta .contact-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .area-list div {
    min-height: 54px;
    font-size: 14px;
  }

  .slider-button {
    width: 38px;
    height: 38px;
  }

}

.journal-more {
  margin: 18px 0 0;
  padding-left: 265px;
  font-size: 13px;
  font-weight: 700;
}

.journal-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.archive-page,
.single-page,
.page-content-wrap {
  padding-top: clamp(130px, 16vw, 190px);
}

.archive-title,
.entry-title {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 500;
  line-height: 1.5;
}

.archive-list {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border-top: var(--line-border);
}

.archive-item {
  border-bottom: var(--line-border);
}

.archive-item a {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  color: var(--muted);
}

.archive-date,
.entry-date {
  color: var(--muted);
  font-size: 13px;
}

.archive-post-title {
  color: var(--ink);
  font-weight: 700;
}

.archive-pager {
  max-width: var(--container-narrow);
  margin: 34px auto 0;
  color: var(--muted);
}

.archive-pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-pager a,
.archive-pager span {
  display: inline-grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border: var(--line-border);
  padding: 6px 10px;
}

.archive-pager .current {
  background: var(--paper);
  color: var(--ink);
}

.entry {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.entry-header {
  margin-bottom: clamp(28px, 5vw, 48px);
  padding-bottom: 26px;
  border-bottom: var(--line-border);
}

.entry-date {
  margin: 0 0 10px;
}

.entry-thumb {
  margin: 0 0 clamp(34px, 6vw, 58px);
  background: var(--paper);
}

.entry-thumb img {
  width: 100%;
  height: auto;
}

.entry-content {
  color: var(--muted);
}

.entry-content .snow-monkey-form {
  max-width: 760px;
}

.entry-content .smf-item + .smf-item {
  margin-top: 16px;
}

.entry-content .smf-item__col--label {
  margin-bottom: 6px;
}

.entry-content .smf-action {
  margin-top: 24px;
}

.entry-content:has(.smf-complete-content) > p:first-of-type {
  display: none;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
  margin: 2em 0 .8em;
  color: var(--ink);
}

.entry-content h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: .22em;
}

.entry-back {
  max-width: var(--container-narrow);
  margin: 42px auto 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 820px) {
  .archive-item a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
