:root {
  --forest: #173f35;
  --forest-deep: #0e2d26;
  --forest-mid: #285548;
  --paper: #f8f2e7;
  --paper-deep: #eee3d2;
  --white: #fffdf8;
  --ink: #1c2824;
  --muted: #66716c;
  --coral: #d86f52;
  --coral-deep: #b9513a;
  --gold: #c5a35d;
  --line: #06c755;
  --border: rgba(23, 63, 53, 0.2);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --max: 1240px;
  --header: 92px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

img {
  height: auto;
}

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

a[href^="tel:"] {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

[id] {
  scroll-margin-top: calc(var(--header) + 20px);
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid #1b67a5;
  outline-offset: 4px;
}

.section-index {
  margin-bottom: 20px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
}

.section-index-light {
  color: #f3b29f;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button-coral:hover {
  background: var(--coral-deep);
}

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

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.65);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--forest-deep);
  background: var(--white);
}

.button-line {
  color: #fff;
  background: var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header);
  border-bottom: 1px solid rgba(23, 63, 53, 0.12);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(100% - 40px, 1400px);
  height: var(--header);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  min-height: 48px;
  gap: 12px;
}

.brand picture,
.brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.brand span {
  display: grid;
  line-height: 1.25;
}

.brand strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.brand small {
  font-size: 10px;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

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

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: grid;
  min-height: 48px;
  padding: 4px 0;
  line-height: 1.2;
}

.header-phone small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.header-phone strong {
  color: var(--forest);
  font-size: 15px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 11px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-button > span:not(.visually-hidden) {
  width: 100%;
  height: 2px;
  background: var(--forest);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  max-height: calc(100vh - var(--header));
  padding: 12px 20px 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 20px 30px rgba(14, 45, 38, 0.15);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
}

.graphic-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(520px, 0.8fr);
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.hero-canvas {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--forest);
}

.hero-landscape {
  position: absolute;
  inset: 0 0 auto;
  height: 64%;
  z-index: 1;
}

.hero-landscape::after,
.service-media::after,
.field-visual::after,
.local-photo::after,
.consult-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 45, 38, 0.18), rgba(14, 45, 38, 0.02) 55%, rgba(14, 45, 38, 0.38));
  content: "";
  pointer-events: none;
}

.hero-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-portrait {
  position: absolute;
  right: clamp(18px, 4vw, 74px);
  bottom: 42px;
  z-index: 2;
  width: min(46%, 430px);
  height: 61%;
  border: 12px solid var(--paper);
  box-shadow: 0 28px 70px rgba(8, 30, 25, 0.38);
  transform: rotate(1.6deg);
}

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

.hero-photo-label {
  position: absolute;
  right: 4px;
  bottom: 64px;
  z-index: 4;
  display: grid;
  width: 230px;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.3;
}

.hero-photo-label span,
.hero-photo-label small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.hero-photo-label strong {
  margin: 4px 0;
  font-family: var(--serif);
  font-size: 19px;
}

.hero-title-art {
  position: absolute;
  bottom: 104px;
  left: 2.5%;
  z-index: 5;
  width: min(66%, 690px);
  filter: drop-shadow(0 2px 0 rgba(14, 45, 38, 0.76)) drop-shadow(0 6px 22px rgba(8, 30, 25, 0.45));
  transform: rotate(-2.2deg);
}

.hero-stamp {
  position: absolute;
  top: 36px;
  left: 32px;
  z-index: 3;
  width: 112px;
  padding: 8px;
  background: rgba(248, 242, 231, 0.88);
  transform: rotate(-8deg);
}

.hero-message {
  position: relative;
  z-index: 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(40px, 3vw, 56px);
  background:
    linear-gradient(rgba(23, 63, 53, 0.96), rgba(14, 45, 38, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, 0.035) 30px 31px);
}

.hero-message::before {
  position: absolute;
  top: 8%;
  left: -24px;
  width: 48px;
  height: 70%;
  border-top: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  content: "";
}

.eyebrow {
  margin-bottom: 28px;
  color: #f0b09d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-message h1 {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: clamp(32px, 2.6vw, 44px);
  line-height: 1.55;
}

.hero-lead {
  margin-bottom: 36px;
  color: rgba(255, 253, 248, 0.8);
  line-height: 2;
}

.hero-actions {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.hero-actions .button {
  width: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  font-size: 12px;
}

.hero-meta a {
  font-weight: 700;
}

.purpose-section,
.services-section,
.people-section,
.faq-section {
  padding: clamp(90px, 10vw, 160px) max(24px, calc((100vw - var(--max)) / 2));
}

.purpose-section {
  background: var(--white);
}

.purpose-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.15fr 0.9fr;
  align-items: end;
  gap: 36px;
  margin-bottom: 64px;
}

.purpose-heading .section-index {
  align-self: start;
}

.purpose-heading h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 58px);
}

.purpose-heading > p:last-child {
  margin-bottom: 7px;
  color: var(--muted);
}

.purpose-entries {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  min-height: 500px;
  gap: 14px;
}

.purpose-entry {
  position: relative;
  min-width: 0;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.purpose-entry picture,
.purpose-entry picture::after,
.purpose-color {
  position: absolute;
  inset: 0;
}

.purpose-entry picture::after {
  background: linear-gradient(180deg, rgba(14, 45, 38, 0.04) 15%, rgba(14, 45, 38, 0.86) 90%);
  content: "";
}

.purpose-entry picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.purpose-entry-wide picture img {
  object-position: 48% center;
}

.purpose-entry:hover picture img {
  transform: scale(1.035);
}

.purpose-number {
  position: absolute;
  top: -26px;
  left: -14px;
  z-index: 2;
  width: 126px;
  padding: 8px;
  background: rgba(248, 242, 231, 0.9);
  transform: rotate(-2deg);
}

.purpose-entry > span {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  z-index: 3;
  display: grid;
  gap: 6px;
}

.purpose-entry small {
  color: #f3b29f;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.purpose-entry strong {
  font-family: var(--serif);
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1.55;
}

.purpose-entry i {
  position: absolute;
  right: 0;
  bottom: 4px;
  font-size: 30px;
  font-style: normal;
}

.purpose-color {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(216, 111, 82, 0.88), rgba(23, 63, 53, 0.94)),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px);
}

.purpose-color img {
  width: 56%;
  opacity: 0.78;
  filter: brightness(0) invert(1);
}

.services-section {
  background: var(--paper);
}

.graphic-section-heading,
.people-heading {
  max-width: 790px;
  margin: 0 auto clamp(80px, 9vw, 136px);
  text-align: center;
}

.graphic-section-heading > img,
.people-heading > img {
  width: min(100%, 520px);
  margin: -22px auto -6px;
}

.graphic-section-heading h2,
.people-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 54px);
}

.graphic-section-heading > p:last-child,
.people-heading > p:last-child {
  color: var(--muted);
}

.service-stories {
  display: grid;
  gap: clamp(100px, 11vw, 170px);
}

.service-story {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(50px, 7vw, 110px);
  scroll-margin-top: calc(var(--header) + 34px);
}

.service-story-reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
}

.service-story-reverse .service-media {
  grid-column: 2;
}

.service-story-reverse .service-copy {
  grid-column: 1;
  grid-row: 1;
}

.service-media {
  position: relative;
  min-height: 600px;
  overflow: visible;
  background: var(--forest);
}

.service-media picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.service-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-landscape picture img,
.service-media-field picture img {
  object-position: 50% center;
  transform: scale(1.28);
}

.service-media-landscape::after,
.service-media-field::after {
  background: linear-gradient(180deg, rgba(14, 45, 38, 0.1), rgba(14, 45, 38, 0.6));
}

.service-number {
  position: absolute;
  top: -58px;
  left: -24px;
  z-index: 3;
  width: clamp(126px, 14vw, 190px);
  padding: 9px;
  background: rgba(248, 242, 231, 0.94);
  filter: drop-shadow(0 14px 22px rgba(14, 45, 38, 0.18));
}

.service-story-reverse .service-number {
  right: -24px;
  left: auto;
}

.service-photo-copy {
  position: absolute;
  right: -18px;
  bottom: 28px;
  z-index: 4;
  max-width: 440px;
  margin: 0;
  padding: 20px 28px;
  color: var(--white);
  background: rgba(14, 45, 38, 0.9);
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.75;
}

.service-story-reverse .service-photo-copy {
  right: auto;
  left: -18px;
}

.service-copy {
  position: relative;
  z-index: 4;
}

.service-en {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 14px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-en::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 110px;
  height: 4px;
  background: var(--coral);
  content: "";
  transform: rotate(-2deg);
}

.service-copy h3 {
  margin-bottom: 26px;
  font-size: clamp(30px, 3.7vw, 52px);
}

.service-copy > p:not(.service-en) {
  color: var(--muted);
  line-height: 2;
}

.service-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 30px 0 34px;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.service-copy li {
  position: relative;
  padding: 12px 8px 12px 22px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
}

.service-copy li::before {
  position: absolute;
  top: 21px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--coral);
  content: "";
  transform: rotate(45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 2px solid var(--forest);
  font-weight: 700;
}

.text-link span {
  margin-left: 14px;
  color: var(--coral-deep);
}

.now-section {
  padding: clamp(100px, 11vw, 170px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 111, 82, 0.24), transparent 30%),
    var(--forest-deep);
}

.now-intro {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  column-gap: 70px;
  margin-bottom: 70px;
}

.now-intro .section-index {
  grid-column: 1;
}

.now-intro > img {
  grid-column: 1;
  grid-row: 2 / span 2;
  width: min(100%, 500px);
  align-self: center;
}

.now-intro h2,
.now-intro > p:last-child {
  grid-column: 2;
}

.now-intro h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.4vw, 60px);
}

.now-intro > p:last-child {
  color: rgba(255, 253, 248, 0.74);
}

.instagram-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
  border: 1px solid rgba(255, 253, 248, 0.25);
}

.instagram-profile {
  position: relative;
  padding: clamp(44px, 6vw, 86px);
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
}

.instagram-mark {
  position: absolute;
  top: -96px;
  right: -18px;
  margin: 0;
  color: rgba(216, 111, 82, 0.18);
  font-family: var(--serif);
  font-size: 300px;
  line-height: 1;
}

.instagram-handle {
  position: relative;
  margin-bottom: 20px;
  color: var(--coral-deep);
  font-weight: 700;
  letter-spacing: 0.07em;
}

.instagram-profile h3 {
  position: relative;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 58px);
}

.instagram-profile > p:not(.instagram-handle, .instagram-mark) {
  position: relative;
  color: var(--muted);
}

.instagram-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  margin: 32px 0 16px;
  padding: 6px 8px 6px 24px;
  border: 1px solid var(--forest);
  font-weight: 700;
}

.instagram-link img {
  width: 112px;
}

.instagram-profile > small {
  color: var(--muted);
  font-size: 11px;
}

.now-topics {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.now-topics li {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 24px;
  padding: 36px clamp(30px, 5vw, 68px);
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.now-topics li:last-child {
  border-bottom: 0;
}

.now-topics li > span {
  color: #f3b29f;
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.now-topics div {
  display: grid;
  gap: 5px;
}

.now-topics small {
  color: #f3b29f;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.now-topics strong {
  font-family: var(--serif);
  font-size: 21px;
}

.now-topics p {
  margin: 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 14px;
}

.field-section {
  background: var(--white);
}

.field-visual {
  position: relative;
  min-height: clamp(520px, 52vw, 740px);
  overflow: hidden;
  color: var(--white);
}

.field-visual picture,
.field-visual picture img {
  width: 100%;
  height: 100%;
}

.field-visual picture {
  position: absolute;
  inset: 0;
}

.field-visual picture img {
  object-fit: cover;
  transform: scale(1.12);
}

.field-visual::after {
  background: linear-gradient(90deg, rgba(14, 45, 38, 0.88) 0, rgba(14, 45, 38, 0.42) 46%, rgba(14, 45, 38, 0.14));
}

.field-title-art {
  position: absolute;
  top: 54px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  width: min(40vw, 510px);
}

.field-photo-copy {
  position: absolute;
  bottom: 58px;
  left: max(24px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  width: min(38vw, 440px);
  transform: rotate(-2deg);
}

.field-visual > p {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  z-index: 3;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.field-content {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 8vw, 120px);
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
}

.field-content header h2 {
  margin-bottom: 25px;
  font-size: clamp(34px, 4.4vw, 60px);
}

.field-content header > p:last-child {
  color: var(--muted);
}

.field-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.field-list li {
  display: grid;
  grid-template-columns: 98px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 150px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.field-list li > span {
  color: var(--coral);
  font-family: var(--serif);
  font-size: 62px;
  line-height: 1;
}

.field-list h3 {
  margin-bottom: 6px;
  font-size: 25px;
}

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

.field-caution {
  grid-column: 2;
  margin: 24px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--coral);
  color: var(--muted);
  font-size: 13px;
}

.approach-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr 0.8fr;
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding: clamp(90px, 10vw, 150px) max(24px, calc((100vw - var(--max)) / 2));
  overflow: hidden;
  background: var(--paper-deep);
}

.approach-section::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(216, 111, 82, 0.32);
  border-radius: 50%;
  content: "";
}

.approach-section > img {
  width: 100%;
  transform: rotate(-5deg);
}

.approach-section h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.4vw, 60px);
}

.approach-section > div > p:last-child {
  color: var(--muted);
}

.approach-section ol {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.approach-section li {
  display: flex;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 20px;
}

.approach-section li span {
  width: 58px;
  color: var(--coral-deep);
  font-size: 30px;
}

.diagnosis-section {
  padding: clamp(90px, 10vw, 155px) max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background:
    linear-gradient(125deg, rgba(14, 45, 38, 0.98), rgba(23, 63, 53, 0.95)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.04) 34px 35px);
}

.diagnosis-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.diagnosis-intro {
  position: sticky;
  top: calc(var(--header) + 36px);
}

.diagnosis-script {
  margin: -10px 0 18px;
  color: #f3b29f;
  font-family: "Brush Script MT", cursive;
  font-size: 56px;
  line-height: 1;
  transform: rotate(-4deg);
}

.diagnosis-intro h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 3.2vw, 44px);
}

.diagnosis-intro > p:not(.section-index, .diagnosis-script) {
  color: rgba(255, 253, 248, 0.72);
}

.diagnosis-route {
  display: grid;
  gap: 0;
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  list-style: none;
}

.diagnosis-route li {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.diagnosis-route span {
  width: 54px;
  color: #f3b29f;
  font-family: var(--serif);
  font-size: 24px;
}

.diagnosis-card {
  min-height: 560px;
  padding: clamp(30px, 5vw, 62px);
  color: var(--ink);
  background: var(--white);
  box-shadow: 20px 20px 0 rgba(216, 111, 82, 0.24);
}

.diagnosis-progress {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.diagnosis-progress > span {
  min-width: 90px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.diagnosis-progress > div {
  flex: 1;
  height: 5px;
  background: var(--paper-deep);
}

.diagnosis-progress i {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--coral);
  transition: width 180ms ease;
}

.diagnosis-step fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.diagnosis-step legend {
  max-width: 700px;
  margin-bottom: 30px;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.6;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-grid button {
  min-height: 64px;
  padding: 13px 18px;
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.choice-grid button:hover,
.choice-grid button[aria-pressed="true"] {
  border-color: var(--coral);
  background: #fff3ee;
}

.text-button {
  min-height: 46px;
  margin-top: 22px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}

.diagnosis-result h3 {
  margin-bottom: 24px;
  font-size: clamp(26px, 3vw, 38px);
}

.diagnosis-result dl {
  margin: 0 0 24px;
  border-top: 1px solid var(--border);
}

.diagnosis-result dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}

.diagnosis-result dt {
  color: var(--muted);
}

.diagnosis-result dd {
  font-weight: 700;
}

.people-section {
  background: var(--white);
}

.people-editorial {
  display: grid;
  gap: clamp(100px, 12vw, 190px);
}

.person-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(350px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.person-feature.person-staff {
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
}

.person-staff .person-photo {
  grid-column: 2;
}

.person-staff .person-copy {
  grid-column: 1;
  grid-row: 1;
}

.person-photo {
  position: relative;
  min-height: 660px;
  overflow: visible;
  background: var(--paper-deep);
}

.person-photo picture,
.person-photo picture img {
  width: 100%;
  height: 100%;
}

.person-photo picture {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.person-photo picture img {
  object-fit: cover;
  object-position: center top;
}

.person-photo-copy {
  position: absolute;
  right: -42px;
  bottom: 38px;
  z-index: 3;
  width: min(55%, 410px);
  filter: drop-shadow(0 8px 20px rgba(14, 45, 38, 0.35));
  transform: rotate(-2deg);
}

.person-copy {
  max-width: 480px;
}

.person-role {
  margin-bottom: 20px;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.person-copy h3 {
  position: relative;
  margin-bottom: 28px;
  padding-bottom: 20px;
  font-size: clamp(38px, 5vw, 68px);
}

.person-copy h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 160px;
  height: 6px;
  background: var(--coral);
  content: "";
  transform: rotate(-2deg);
}

.person-copy > p:not(.person-role) {
  margin-bottom: 34px;
  color: var(--muted);
  line-height: 2;
}

.local-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 860px;
  color: var(--white);
  background: var(--forest-deep);
}

.local-photo {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.local-photo picture,
.local-photo picture img {
  width: 100%;
  height: 100%;
}

.local-photo picture {
  position: absolute;
  inset: 0;
}

.local-photo picture img {
  object-fit: cover;
  transform: scale(1.22);
}

.local-photo::after {
  background: linear-gradient(90deg, rgba(14, 45, 38, 0.18), rgba(14, 45, 38, 0.72));
}

.local-title-art {
  position: absolute;
  top: 58px;
  left: 52px;
  z-index: 3;
  width: min(52%, 500px);
}

.local-photo-copy {
  position: absolute;
  bottom: 60px;
  left: 52px;
  z-index: 3;
  width: min(52%, 420px);
  transform: rotate(-2deg);
}

.local-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 108px);
}

.local-content h2 {
  margin-bottom: 24px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.local-content > p:not(.section-index) {
  color: rgba(255, 253, 248, 0.7);
}

.company-facts {
  margin: 36px 0 0;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.company-facts > div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.2);
}

.company-facts dt {
  color: #f3b29f;
  font-size: 12px;
}

.company-facts dd {
  margin: 0;
  font-size: 14px;
}

.company-facts a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.faq-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: end;
  margin-bottom: 58px;
}

.faq-heading h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 70px);
}

.faq-list {
  border-top: 1px solid var(--forest);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 22px 78px 22px 64px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item button::before {
  position: absolute;
  left: 4px;
  color: var(--coral-deep);
  font-family: var(--serif);
  font-size: 28px;
  content: "Q";
}

.faq-item button i,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 2px;
  background: var(--forest);
  content: "";
}

.faq-item button i::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.faq-item [role="region"] {
  padding: 0 78px 30px 64px;
  color: var(--muted);
}

.consultation {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 700px;
  color: var(--white);
  background: var(--forest);
}

.consult-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.consult-visual picture,
.consult-visual picture img {
  width: 100%;
  height: 100%;
}

.consult-visual picture {
  position: absolute;
  inset: 0;
}

.consult-visual picture img {
  object-fit: cover;
  object-position: center top;
}

.consult-visual::after {
  background: linear-gradient(90deg, rgba(14, 45, 38, 0.08), rgba(14, 45, 38, 0.76));
}

.consult-visual > img {
  position: absolute;
  right: -18%;
  bottom: 34px;
  z-index: 3;
  width: 76%;
  filter: brightness(0) invert(1) drop-shadow(0 10px 20px rgba(14, 45, 38, 0.45));
}

.consult-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px);
}

.consult-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(36px, 4.7vw, 66px);
}

.consult-copy > p:not(.section-index) {
  max-width: 640px;
  color: rgba(255, 253, 248, 0.72);
}

.consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.consult-diagnostic {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-left: 6px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.7);
  font-weight: 700;
}

.site-footer {
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 30px;
  color: var(--white);
  background: var(--forest-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.footer-brand {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 16px;
}

.footer-brand picture,
.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.footer-brand span {
  display: grid;
}

.footer-brand strong {
  font-family: var(--serif);
}

.footer-brand small,
.footer-company > p {
  color: rgba(255, 253, 248, 0.58);
  font-size: 12px;
}

.footer-company > p {
  margin-top: 24px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav > div {
  display: grid;
  align-content: start;
}

.footer-nav strong {
  margin-bottom: 16px;
  color: #f3b29f;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 13px;
}

.analytics-disclosure {
  max-width: 880px;
  margin-top: 42px;
  color: rgba(255, 253, 248, 0.64);
  font-size: 12px;
  line-height: 1.9;
}

.analytics-disclosure summary {
  width: fit-content;
  min-height: 44px;
  cursor: pointer;
  color: rgba(255, 253, 248, 0.82);
  font-weight: 700;
  line-height: 44px;
}

.analytics-disclosure p {
  max-width: 760px;
  margin: 8px 0 0;
}

.analytics-disclosure a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 253, 248, 0.78);
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.5);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 1200px) {
  :root {
    --header: 82px;
  }

  .header-inner {
    height: var(--header);
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .header-phone {
    display: none;
  }

  .graphic-hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(480px, 0.9fr);
  }

  .hero-canvas {
    min-height: 720px;
  }

  .service-media,
  .person-photo {
    min-height: 560px;
  }

  .local-section {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .graphic-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(470px, 0.95fr);
  }

  .purpose-heading {
    grid-template-columns: 0.55fr 1.2fr 0.9fr;
  }

  .purpose-entries {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .purpose-entry-diagnosis {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .purpose-color img {
    width: 28%;
  }

  .service-story,
  .service-story-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 55px;
  }

  .service-media {
    min-height: 520px;
  }

  .service-number {
    left: -24px;
  }

  .service-story-reverse .service-number {
    right: -24px;
  }

  .service-photo-copy {
    right: -18px;
  }

  .service-story-reverse .service-photo-copy {
    left: -18px;
  }

  .field-content {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
  }

  .approach-section {
    grid-template-columns: 0.75fr 1fr;
  }

  .approach-section ol {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .approach-section li {
    border-top: 1px solid var(--border);
  }

  .diagnosis-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 48px;
  }

  .person-photo {
    min-height: 530px;
  }

  .local-section {
    grid-template-columns: 1fr 1fr;
  }

  .local-content {
    padding: 56px 44px;
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: 66px;
  }

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

  .hero-canvas {
    min-height: 650px;
  }

  .hero-message {
    min-height: 620px;
    padding: 72px max(28px, calc((100vw - 720px) / 2));
  }

  .hero-message::before {
    display: none;
  }

  .purpose-heading {
    grid-template-columns: 1fr 1.4fr;
  }

  .purpose-heading > p:last-child {
    grid-column: 2;
  }

  .purpose-entry {
    min-height: 430px;
  }

  .service-story,
  .service-story-reverse {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .service-story-reverse .service-media,
  .service-story-reverse .service-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .service-story-reverse .service-media {
    grid-row: 1;
  }

  .service-media {
    min-height: 650px;
  }

  .service-copy {
    max-width: 700px;
    padding: 0 34px;
  }

  .now-intro,
  .instagram-feature {
    grid-template-columns: 1fr;
  }

  .now-intro {
    gap: 14px;
  }

  .now-intro .section-index,
  .now-intro > img,
  .now-intro h2,
  .now-intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .now-intro > img {
    width: min(100%, 460px);
  }

  .field-content {
    grid-template-columns: 1fr;
  }

  .field-caution {
    grid-column: 1;
  }

  .field-title-art,
  .field-photo-copy {
    width: min(60vw, 470px);
  }

  .diagnosis-layout {
    grid-template-columns: 1fr;
  }

  .diagnosis-intro {
    position: static;
  }

  .diagnosis-route {
    grid-template-columns: repeat(3, 1fr);
  }

  .diagnosis-route li {
    border-right: 1px solid rgba(255, 253, 248, 0.2);
  }

  .person-feature,
  .person-feature.person-staff {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .person-staff .person-photo,
  .person-staff .person-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .person-staff .person-photo {
    grid-row: 1;
  }

  .person-copy {
    max-width: 640px;
    padding: 0 30px;
  }

  .person-photo-copy {
    right: 10px;
  }

  .local-section {
    grid-template-columns: 1fr;
  }

  .local-photo {
    min-height: 620px;
  }

  .local-content {
    padding: 84px max(28px, calc((100vw - 720px) / 2));
  }

  .consultation {
    grid-template-columns: 1fr;
  }

  .consult-visual {
    min-height: 620px;
  }

  .consult-visual > img {
    right: auto;
    left: 20px;
    width: min(70%, 500px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 66px;
    color: var(--white);
    background: var(--forest-deep);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-actions a + a {
    background: var(--line);
  }

  .mobile-actions span {
    margin-right: 8px;
  }
}

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

  body {
    padding-bottom: 66px;
  }

  .header-inner {
    width: calc(100% - 28px);
  }

  .brand picture,
  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 16px;
  }

  .graphic-hero {
    min-height: auto;
  }

  .hero-canvas {
    min-height: 540px;
  }

  .hero-landscape {
    height: 100%;
  }

  .hero-landscape::after {
    background: linear-gradient(180deg, rgba(14, 45, 38, 0.06), rgba(14, 45, 38, 0.67));
  }

  .hero-portrait {
    right: 16px;
    bottom: 82px;
    width: 51%;
    height: 60%;
    border-width: 8px;
  }

  .hero-photo-label {
    right: 0;
    bottom: 62px;
    width: 176px;
    padding: 12px 14px;
  }

  .hero-photo-label strong {
    font-size: 15px;
  }

  .hero-title-art {
    bottom: 24px;
    left: 10px;
    width: 82%;
  }

  .hero-stamp {
    top: 18px;
    left: 14px;
    width: 82px;
  }

  .hero-message {
    min-height: auto;
    padding: 64px 24px 72px;
  }

  .hero-message h1 {
    font-size: clamp(31px, 8.4vw, 43px);
  }

  .hero-actions {
    max-width: none;
  }

  .purpose-section,
  .services-section,
  .people-section,
  .faq-section,
  .now-section,
  .field-content,
  .approach-section,
  .diagnosis-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .purpose-heading {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 42px;
  }

  .purpose-heading > p:last-child {
    grid-column: 1;
  }

  .purpose-heading h2 {
    font-size: 34px;
  }

  .purpose-entries {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .purpose-entry,
  .purpose-entry-diagnosis {
    grid-column: 1;
    min-height: 360px;
  }

  .purpose-number {
    width: 100px;
  }

  .purpose-entry > span {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .purpose-entry strong {
    font-size: 28px;
  }

  .graphic-section-heading,
  .people-heading {
    margin-bottom: 82px;
  }

  .graphic-section-heading > img,
  .people-heading > img {
    margin-bottom: 2px;
  }

  .graphic-section-heading h2,
  .people-heading h2 {
    font-size: 33px;
  }

  .service-stories,
  .people-editorial {
    gap: 100px;
  }

  .service-media,
  .person-photo {
    min-height: 500px;
  }

  .service-number {
    top: -34px;
    left: -10px;
    width: 114px;
  }

  .service-story-reverse .service-number {
    right: -10px;
  }

  .service-photo-copy,
  .service-story-reverse .service-photo-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
    padding: 15px 18px;
    font-size: 17px;
  }

  .service-copy,
  .person-copy {
    padding: 0 6px;
  }

  .service-copy h3 {
    font-size: 34px;
  }

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

  .now-intro {
    margin-bottom: 44px;
  }

  .now-intro h2 {
    font-size: 36px;
  }

  .instagram-profile {
    padding: 38px 24px;
  }

  .instagram-profile h3 {
    font-size: 37px;
  }

  .instagram-link {
    display: grid;
    grid-template-columns: 1fr auto;
    padding-left: 16px;
  }

  .instagram-link img {
    width: 86px;
  }

  .now-topics li {
    grid-template-columns: 58px 1fr;
    gap: 14px;
    padding: 28px 20px;
  }

  .now-topics li > span {
    font-size: 38px;
  }

  .field-visual {
    min-height: 540px;
  }

  .field-title-art {
    top: 28px;
    left: 16px;
    width: 82vw;
  }

  .field-photo-copy {
    bottom: 38px;
    left: 18px;
    width: 78vw;
  }

  .field-visual > p {
    right: 12px;
  }

  .field-content {
    gap: 42px;
  }

  .field-content header h2,
  .approach-section h2,
  .diagnosis-intro h2 {
    font-size: 36px;
  }

  .diagnosis-intro h2 {
    font-size: 32px;
  }

  .field-list li {
    grid-template-columns: 66px 1fr;
    min-height: 130px;
    gap: 16px;
  }

  .field-list li > span {
    font-size: 43px;
  }

  .field-list h3 {
    font-size: 22px;
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .approach-section > img {
    width: min(100%, 430px);
  }

  .approach-section ol {
    grid-column: 1;
    grid-template-columns: 1fr;
  }

  .diagnosis-route {
    grid-template-columns: 1fr;
  }

  .diagnosis-route li {
    border-right: 0;
  }

  .diagnosis-card {
    min-height: 600px;
    padding: 28px 20px;
    box-shadow: 10px 10px 0 rgba(216, 111, 82, 0.24);
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }

  .choice-grid button {
    min-height: 58px;
  }

  .diagnosis-result dl > div {
    grid-template-columns: 1fr;
  }

  .person-photo {
    min-height: 530px;
  }

  .person-photo-copy {
    right: 10px;
    bottom: 18px;
    width: 72%;
  }

  .person-copy h3 {
    font-size: 48px;
  }

  .local-photo {
    min-height: 520px;
  }

  .local-title-art {
    top: 30px;
    left: 18px;
    width: 76%;
  }

  .local-photo-copy {
    bottom: 32px;
    left: 18px;
    width: 76%;
  }

  .local-content {
    padding: 72px 22px;
  }

  .local-content h2 {
    font-size: 37px;
  }

  .company-facts > div {
    grid-template-columns: 90px 1fr;
    gap: 12px;
  }

  .faq-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-heading h2 {
    font-size: 44px;
  }

  .faq-item button {
    min-height: 86px;
    padding: 18px 50px 18px 40px;
    font-size: 15px;
  }

  .faq-item button::before {
    left: 0;
    font-size: 22px;
  }

  .faq-item button i,
  .faq-item button i::after {
    right: 8px;
  }

  .faq-item button i::after {
    right: 0;
  }

  .faq-item [role="region"] {
    padding: 0 20px 28px 40px;
  }

  .consult-visual {
    min-height: 520px;
  }

  .consult-copy {
    padding: 72px 22px;
  }

  .consult-copy h2 {
    font-size: 32px;
  }

  .consult-actions {
    display: grid;
  }

  .consult-actions .button {
    width: 100%;
  }

  .consult-diagnostic {
    margin-left: 0;
  }

  .site-footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: center;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 110;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 66px;
    color: var(--white);
    background: var(--forest-deep);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-actions a + a {
    background: var(--line);
  }

  .mobile-actions span {
    margin-right: 8px;
  }
}

@media (max-width: 420px) {
  .brand small {
    display: none;
  }

  .hero-canvas {
    min-height: 500px;
  }

  .hero-photo-label {
    display: none;
  }

  .hero-portrait {
    bottom: 70px;
    width: 54%;
    height: 59%;
  }

  .hero-title-art {
    width: 91%;
  }

  .hero-message h1 {
    font-size: 31px;
  }

  .purpose-entry {
    min-height: 330px;
  }

  .service-media,
  .person-photo {
    min-height: 440px;
  }

  .service-photo-copy,
  .service-story-reverse .service-photo-copy {
    font-size: 15px;
  }

  .instagram-link span {
    font-size: 14px;
  }

  .now-topics strong {
    font-size: 17px;
  }

  .now-topics p {
    font-size: 13px;
  }

  .field-visual,
  .local-photo,
  .consult-visual {
    min-height: 470px;
  }

  .field-list p {
    font-size: 13px;
  }

  .diagnosis-script {
    font-size: 46px;
  }

  .person-copy h3 {
    font-size: 43px;
  }

  .company-facts > div {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-nav > div:last-child {
    grid-column: 1;
  }
}

/* Final V3 / Instagram + motion */
.hero-landscape {
  height: 100%;
}

.hero-landscape::after {
  background:
    linear-gradient(90deg, rgba(14, 45, 38, 0.14), rgba(14, 45, 38, 0.04) 52%, rgba(14, 45, 38, 0.48)),
    linear-gradient(0deg, rgba(14, 45, 38, 0.78), transparent 48%);
}

.hero-title-art {
  bottom: 76px;
  width: min(76%, 760px);
}

.hero-evidence {
  position: absolute;
  top: 38px;
  right: 34px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(160px, 1fr);
  align-items: center;
  gap: 0;
  width: min(43%, 350px);
  border-top: 1px solid rgba(255, 253, 248, 0.72);
  border-left: 1px solid rgba(255, 253, 248, 0.72);
  background: rgba(14, 45, 38, 0.78);
  backdrop-filter: blur(6px);
}

.hero-evidence span,
.hero-evidence strong {
  min-height: 52px;
  padding: 13px 14px;
  border-right: 1px solid rgba(255, 253, 248, 0.38);
  border-bottom: 1px solid rgba(255, 253, 248, 0.38);
}

.hero-evidence span {
  color: #f3b29f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-evidence strong {
  font-size: 12px;
  line-height: 1.7;
}

.purpose-entry-graphic {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 253, 248, 0.11), transparent 28%),
    linear-gradient(145deg, var(--forest-mid), var(--forest-deep));
}

.purpose-entry-sale {
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(255, 253, 248, 0.07) 45% 46%, transparent 46% 100%),
    linear-gradient(145deg, #c7644b, #7c3328);
}

.purpose-proof {
  position: absolute;
  inset: 68px 28px 142px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 253, 248, 0.38);
  border-left: 1px solid rgba(255, 253, 248, 0.38);
  transform: rotate(-2deg);
}

.purpose-proof::before,
.purpose-proof::after {
  position: absolute;
  background: rgba(255, 253, 248, 0.2);
  content: "";
}

.purpose-proof::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.purpose-proof::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.purpose-proof span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 253, 248, 0.38);
  border-bottom: 1px solid rgba(255, 253, 248, 0.38);
  color: rgba(255, 253, 248, 0.8);
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 23px);
}

.service-media-evidence {
  display: grid;
  place-items: center;
  padding: 82px 70px 128px;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255, 253, 248, 0.06) 39px 40px),
    var(--forest);
}

.service-media-evidence::after {
  z-index: 1;
  background: linear-gradient(145deg, rgba(216, 111, 82, 0.12), transparent 52%);
}

.service-media-evidence > div {
  position: relative;
  z-index: 2;
}

.evidence-sheet {
  width: min(100%, 430px);
  padding: 38px 40px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 rgba(216, 111, 82, 0.72);
  transform: rotate(-2deg);
}

.evidence-sheet > span,
.evidence-chart > span {
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.evidence-sheet strong {
  display: block;
  margin: 14px 0 24px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 29px);
}

.evidence-sheet ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.evidence-sheet li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.service-evidence-sale {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.06) 25%, transparent 25%) 0 0 / 36px 36px,
    var(--coral-deep);
}

.evidence-chart {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  width: min(100%, 430px);
  height: 320px;
  padding: 38px 40px 34px;
  border: 1px solid rgba(255, 253, 248, 0.5);
}

.evidence-chart > span,
.evidence-chart > strong {
  grid-column: 1 / -1;
  color: var(--white);
}

.evidence-chart i {
  display: block;
  width: calc(100% - 12px);
  height: 36%;
  background: rgba(255, 253, 248, 0.44);
}

.evidence-chart i:nth-of-type(2) { height: 54%; }
.evidence-chart i:nth-of-type(3) { height: 72%; }
.evidence-chart i:nth-of-type(4) { height: 92%; background: var(--paper); }

.evidence-chart strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 23px;
}

.service-evidence-options {
  background:
    radial-gradient(circle at center, rgba(255, 253, 248, 0.08) 0 28%, transparent 28% 31%, rgba(255, 253, 248, 0.08) 31% 32%, transparent 32%),
    var(--forest-mid);
}

.option-compass {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.5);
  transform: rotate(3deg);
}

.option-compass span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 253, 248, 0.38);
  border-bottom: 1px solid rgba(255, 253, 248, 0.38);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 40px);
}

.option-compass i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--paper);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform: translate(-50%, -50%) rotate(-3deg);
}

.service-evidence-field {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 253, 248, 0.11) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 253, 248, 0.11) 50%, transparent 50.2%),
    #233c43;
}

.field-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 450px);
  gap: 12px;
}

.field-check span {
  display: grid;
  place-items: center;
  min-height: 130px;
  border: 1px solid rgba(255, 253, 248, 0.48);
  background: rgba(14, 45, 38, 0.44);
  font-family: var(--serif);
  font-size: 21px;
}

.now-motion {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
  align-items: stretch;
  border: 1px solid rgba(255, 253, 248, 0.25);
}

.motion-media {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #233c43;
  isolation: isolate;
}

.motion-media::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(0deg, rgba(14, 45, 38, 0.56), transparent 48%),
    linear-gradient(90deg, rgba(14, 45, 38, 0.2), transparent 38%);
  content: "";
  pointer-events: none;
}

.motion-stage,
.motion-frame,
.motion-frame picture,
.motion-frame img {
  display: block;
  width: 100%;
  height: 100%;
}

.motion-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.motion-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation-duration: 9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  animation-play-state: paused;
}

.motion-frame img {
  object-fit: cover;
  transform: scale(1.015);
  animation: motion-photo-pan 9s ease-in-out infinite alternate both paused;
}

.motion-frame-exterior {
  opacity: 1;
  animation-name: motion-fade-exterior;
}

.motion-frame-exterior img {
  object-position: 48% 53%;
  transform-origin: 46% 56%;
}

.motion-frame-interior {
  animation-name: motion-fade-interior;
}

.motion-frame-interior img {
  object-position: 54% 52%;
  transform-origin: 62% 56%;
  animation-direction: alternate-reverse;
}

.motion-frame-plan {
  animation-name: motion-fade-plan;
}

.motion-frame-plan img {
  object-fit: contain;
  padding: 3%;
  background: #f8f2e7;
  transform-origin: 50% 48%;
}

.motion-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 253, 248, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 248, 0.28) 1px, transparent 1px);
  background-size: 52px 52px;
  mix-blend-mode: screen;
}

.motion-scan {
  position: absolute;
  top: 50%;
  right: 7%;
  left: 7%;
  z-index: 3;
  height: 1px;
  opacity: 0.78;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 0 18px rgba(255, 253, 248, 0.48);
  transform: translate3d(0, -210px, 0);
  animation: motion-scan-line 3.2s ease-in-out infinite alternate both paused;
}

.motion-focus {
  position: absolute;
  z-index: 3;
  width: 25%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 253, 248, 0.86);
  animation: motion-focus-shift 4.5s ease-in-out infinite alternate both paused;
}

.motion-focus::before,
.motion-focus::after {
  position: absolute;
  width: 28%;
  height: 28%;
  content: "";
}

.motion-focus::before {
  top: -4px;
  left: -4px;
  border-top: 4px solid var(--coral);
  border-left: 4px solid var(--coral);
}

.motion-focus::after {
  right: -4px;
  bottom: -4px;
  border-right: 4px solid var(--coral);
  border-bottom: 4px solid var(--coral);
}

.motion-focus-a {
  top: 18%;
  right: 12%;
}

.motion-focus-b {
  bottom: 16%;
  left: 10%;
  width: 17%;
  animation-delay: -2.25s;
}

.motion-status {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.motion-status span,
.motion-badge {
  padding: 8px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 253, 248, 0.5);
  background: rgba(14, 45, 38, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.motion-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  margin: 0;
}

.now-motion.is-motion-active .motion-frame,
.now-motion.is-motion-active .motion-frame img,
.now-motion.is-motion-active .motion-scan,
.now-motion.is-motion-active .motion-focus {
  animation-play-state: running;
  will-change: transform, opacity;
}

@keyframes motion-fade-exterior {
  0%, 25% { opacity: 1; }
  35%, 90% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes motion-fade-interior {
  0%, 24% { opacity: 0; }
  35%, 57% { opacity: 1; }
  68%, 100% { opacity: 0; }
}

@keyframes motion-fade-plan {
  0%, 57% { opacity: 0; }
  68%, 90% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes motion-photo-pan {
  from { transform: scale(1.015) translate3d(-1.2%, 0, 0); }
  to { transform: scale(1.08) translate3d(1.8%, -1.2%, 0); }
}

@keyframes motion-scan-line {
  from { transform: translate3d(0, -210px, 0); opacity: 0.32; }
  to { transform: translate3d(0, 210px, 0); opacity: 0.9; }
}

@keyframes motion-focus-shift {
  from { opacity: 0.42; transform: translate3d(-8px, 5px, 0) scale(0.96); }
  to { opacity: 0.92; transform: translate3d(12px, -8px, 0) scale(1.04); }
}

.motion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(32px, 4.2vw, 60px);
  color: var(--ink);
  background: var(--paper);
}

#now {
  scroll-margin-top: calc(var(--header) + 32px);
}

.motion-kicker {
  margin-bottom: 16px;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.motion-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(29px, 3vw, 43px);
}

.motion-copy > p:not(.motion-kicker),
.motion-copy small {
  color: var(--muted);
}

.motion-copy small {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.7;
}

.instagram-live {
  margin-top: clamp(80px, 9vw, 130px);
}

.instagram-live-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 42px;
}

.instagram-live-heading h3 {
  margin-bottom: 0;
  font-size: clamp(33px, 4.2vw, 58px);
}

.instagram-live-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 253, 248, 0.72);
}

.instagram-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.instagram-post {
  display: flex;
  min-width: 0;
  min-height: 510px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  flex-direction: column;
  transition: transform 180ms ease, background-color 180ms ease;
}

.instagram-post:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.instagram-card-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 245px;
  overflow: hidden;
  color: var(--white);
  background:
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(255, 255, 255, 0.07) 32px 33px),
    var(--forest);
}

.instagram-card-art::before,
.instagram-card-art::after {
  position: absolute;
  border: 1px solid rgba(255, 253, 248, 0.45);
  border-radius: 26%;
  content: "";
}

.instagram-card-art::before {
  width: 122px;
  height: 122px;
}

.instagram-card-art::after {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.instagram-card-art i {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 38px;
  font-style: normal;
}

.instagram-card-art b {
  position: absolute;
  right: 14px;
  bottom: 12px;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.instagram-post-property .instagram-card-art {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 253, 248, 0.16), transparent 24%),
    repeating-linear-gradient(90deg, transparent 0 43px, rgba(255, 253, 248, 0.08) 43px 44px),
    var(--coral-deep);
}

.instagram-post-reel .instagram-card-art {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.05) 25%, transparent 25%) 0 0 / 34px 34px,
    #233c43;
}

.instagram-post-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 14px;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.instagram-post > strong {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.65;
}

.instagram-post > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.instagram-live-footer {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  align-items: center;
  gap: 48px;
  margin-top: 30px;
}

.instagram-live-footer > p {
  margin: 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 12px;
}

.instagram-live-footer .instagram-link {
  margin: 0;
  border-color: rgba(255, 253, 248, 0.62);
}

.field-visual-graphic {
  background:
    radial-gradient(circle at 78% 28%, rgba(216, 111, 82, 0.28), transparent 24%),
    linear-gradient(135deg, transparent 0 47%, rgba(255, 253, 248, 0.06) 47% 48%, transparent 48%),
    #233c43;
}

.field-visual-graphic::after {
  background: linear-gradient(90deg, rgba(14, 45, 38, 0.72), transparent 72%);
}

.field-visual-grid {
  position: absolute;
  top: 50%;
  right: max(80px, calc((100vw - var(--max)) / 2));
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(44vw, 560px);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 253, 248, 0.46);
  border-left: 1px solid rgba(255, 253, 248, 0.46);
  list-style: none;
  transform: translateY(-50%) rotate(2deg);
}

.field-visual-grid li {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 110px;
  padding: 20px;
  border-right: 1px solid rgba(255, 253, 248, 0.46);
  border-bottom: 1px solid rgba(255, 253, 248, 0.46);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 26px);
}

.field-visual-grid span {
  color: #f3b29f;
  font-size: 12px;
}

.person-stance {
  padding: 20px 22px;
  border-left: 4px solid var(--coral);
  background: var(--paper);
  font-size: 14px;
}

.person-stance small {
  display: block;
  margin-bottom: 5px;
  color: var(--coral-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.local-map-graphic {
  background:
    radial-gradient(circle at 27% 42%, rgba(216, 111, 82, 0.34), transparent 13%),
    radial-gradient(circle at 67% 63%, rgba(255, 253, 248, 0.12), transparent 15%),
    repeating-radial-gradient(circle at 38% 52%, transparent 0 84px, rgba(255, 253, 248, 0.08) 85px 86px),
    #233c43;
}

.local-map-graphic::after {
  background: linear-gradient(90deg, transparent 58%, rgba(14, 45, 38, 0.62));
}

.local-map-labels {
  position: absolute;
  inset: 190px 8% 160px 10%;
  z-index: 3;
}

.local-map-labels > span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 253, 248, 0.55);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
}

.local-map-labels > span:nth-child(1) { left: 4%; bottom: 2%; }
.local-map-labels > span:nth-child(2) { left: 38%; top: 8%; }
.local-map-labels > span:nth-child(3) { right: 13%; top: 28%; color: var(--forest-deep); background: var(--paper); }
.local-map-labels > span:nth-child(4) { right: 31%; bottom: 3%; }

.local-map-labels > i {
  position: absolute;
  right: 3%;
  bottom: -34px;
  font-family: var(--serif);
  font-size: clamp(45px, 7vw, 95px);
  font-style: normal;
  line-height: 0.82;
  letter-spacing: -0.07em;
  opacity: 0.28;
}

.local-map-labels > i span {
  color: var(--coral);
}

.consult-visual-graphic {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(45deg, transparent 0 46px, rgba(255, 253, 248, 0.05) 46px 47px),
    var(--forest-deep);
}

.consult-visual-graphic::after {
  background: radial-gradient(circle at center, transparent 0 30%, rgba(14, 45, 38, 0.55) 70%);
}

.consult-visual-graphic > img:first-child {
  position: absolute;
  top: 11%;
  right: auto;
  bottom: auto;
  left: 7%;
  z-index: 3;
  width: 86%;
  filter: brightness(0) invert(1);
}

.consult-visual-graphic > img:nth-child(2) {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: min(48%, 250px);
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.consult-visual-graphic > p {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 8%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #f3b29f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

@media (max-width: 1080px) {
  .hero-evidence {
    right: 20px;
    width: min(48%, 330px);
  }

  .service-media-evidence {
    padding-right: 54px;
    padding-left: 54px;
  }

  .service-number,
  .service-story-reverse .service-number {
    right: auto;
    left: 10px;
  }

  .service-photo-copy,
  .service-story-reverse .service-photo-copy {
    right: 14px;
    left: 14px;
  }

  .now-motion {
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, 0.9fr);
  }

  .instagram-post {
    min-height: 490px;
  }
}

@media (min-width: 921px) {
  .motion-media {
    aspect-ratio: auto;
    min-height: clamp(440px, 36vw, 510px);
  }
}

@media (max-width: 920px) {
  .hero-evidence {
    top: 28px;
  }

  .now-motion,
  .instagram-live-heading,
  .instagram-live-footer {
    grid-template-columns: 1fr;
  }

  .motion-media {
    aspect-ratio: 16 / 8.5;
  }

  .motion-copy {
    min-height: 340px;
  }

  .instagram-post-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-post:last-child {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .instagram-live-footer {
    gap: 24px;
  }

  .field-visual-grid {
    right: 46px;
    width: 52vw;
  }
}

@media (max-width: 768px) {
  .hero-evidence {
    top: 18px;
    right: 14px;
    width: min(62%, 300px);
  }

  .hero-evidence span,
  .hero-evidence strong {
    min-height: 44px;
    padding: 10px;
  }

  .hero-title-art {
    bottom: 26px;
    width: 86%;
  }

  .purpose-proof {
    inset: 60px 22px 126px;
  }

  .service-media-evidence {
    padding: 68px 28px 116px;
  }

  .evidence-chart {
    height: 290px;
    padding: 30px 28px;
  }

  .now-motion {
    margin-right: -1px;
    margin-left: -1px;
  }

  .motion-media {
    aspect-ratio: 4 / 3;
  }

  .motion-copy {
    min-height: 0;
    padding: 38px 24px;
  }

  .instagram-live-heading {
    gap: 18px;
  }

  .instagram-post-grid {
    grid-template-columns: 1fr;
  }

  .instagram-post,
  .instagram-post:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .instagram-card-art {
    min-height: 220px;
  }

  .instagram-live-footer .instagram-link {
    min-width: 0;
  }

  .field-visual-grid {
    top: 54%;
    right: 20px;
    left: 20px;
    width: auto;
  }

  .field-visual-grid li {
    grid-template-columns: 42px 1fr;
    min-height: 86px;
    padding: 14px;
  }

  .field-photo-copy {
    bottom: 24px;
    width: 62vw;
  }

  .person-stance {
    padding: 16px 18px;
  }

  .local-map-labels {
    inset: 140px 5% 118px;
  }

  .local-map-labels > span {
    width: 68px;
    height: 68px;
    font-size: 14px;
  }

  .consult-visual-graphic {
    min-height: 500px;
  }
}

@media (max-width: 420px) {
  .hero-evidence {
    width: 74%;
  }

  .hero-evidence strong {
    font-size: 10px;
  }

  .service-media-evidence {
    min-height: 440px;
  }

  .evidence-sheet {
    padding: 30px 25px;
  }

  .field-check span {
    min-height: 100px;
    font-size: 18px;
  }

  .option-compass i {
    width: 84px;
    height: 84px;
  }

  .instagram-card-art {
    min-height: 190px;
  }

  .instagram-live-heading h3 {
    font-size: 32px;
  }

  .instagram-live-footer .instagram-link {
    grid-template-columns: minmax(0, 1fr) 78px;
  }

  .instagram-live-footer .instagram-link span {
    line-height: 1.5;
  }

  .field-visual-grid li {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 16px;
  }

  .local-map-labels {
    inset: 138px 4% 118px;
  }

  .local-map-labels > span:nth-child(3) {
    right: 7%;
  }
}

/* Final V3 Polish r1: safe graphic bounds and rights-cleared editorial imagery */
.hero-title-art {
  width: min(80%, 800px);
}

.purpose-number {
  width: 142px;
}

.service-number {
  width: clamp(142px, 16vw, 218px);
}

.person-photo-copy {
  width: min(68%, 500px);
}

.service-polish-picture {
  background: var(--paper);
}

.service-evidence-field .service-polish-picture {
  background: #233c43;
}

.service-media .service-polish-picture img {
  object-fit: contain;
}

.service-evidence-options::after {
  background: linear-gradient(145deg, rgba(216, 111, 82, 0.06), rgba(14, 45, 38, 0.24));
}

.service-evidence-field::after {
  background: linear-gradient(145deg, rgba(14, 45, 38, 0.04), rgba(14, 45, 38, 0.34));
}

.instagram-post {
  min-height: 0;
}

.instagram-post:focus-visible {
  outline: 3px solid #f3b29f;
  outline-offset: 4px;
  transform: translateY(-4px);
}

.instagram-card-art {
  display: block;
  min-height: 0;
  aspect-ratio: 1;
  background: var(--forest);
}

.instagram-card-art::before,
.instagram-card-art::after {
  content: none;
}

.instagram-card-art picture,
.instagram-card-art img {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-card-art img {
  object-fit: cover;
  transition: transform 240ms ease;
}

.instagram-post:hover .instagram-card-art img,
.instagram-post:focus-visible .instagram-card-art img {
  transform: scale(1.018);
}

.instagram-account {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 44px;
  margin: -4px 0 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.instagram-account img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}

.instagram-card-art b {
  z-index: 3;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: rgba(14, 45, 38, 0.84);
  letter-spacing: 0.12em;
}

.instagram-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 253, 248, 0.85);
  border-radius: 50%;
  color: var(--forest-deep);
  background: rgba(255, 253, 248, 0.9);
  font-size: 22px;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .hero-title-art {
    width: 92%;
  }

  .purpose-number {
    width: 116px;
  }

  .service-number {
    width: 132px;
  }

  .person-photo-copy {
    width: 88%;
  }
}

@media (max-width: 420px) {
  .instagram-card-art {
    min-height: 0;
  }

  .instagram-reel-play {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .motion-frame,
  .motion-frame img,
  .motion-scan,
  .motion-focus {
    animation: none !important;
  }

  .motion-frame {
    opacity: 0;
  }

  .motion-frame-exterior {
    opacity: 1;
  }

  .motion-frame img {
    transform: none !important;
  }

  .motion-scan,
  .motion-focus {
    display: none;
  }
}

/* Search-growth hub: a compact extension of the existing Local section. */
.growth-hub {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}

.company-facts a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
}

.growth-hub > p {
  margin-bottom: 8px;
  color: var(--coral-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.growth-hub h3 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: clamp(20px, 2.2vw, 28px);
}

.growth-hub > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.growth-hub a {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 15px;
  align-items: center;
  border: 1px solid rgba(23, 63, 53, 0.24);
  background: rgba(255, 253, 248, 0.72);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.growth-hub a:hover {
  border-color: var(--coral);
  background: var(--white);
}

@media (max-width: 768px) {
  .growth-hub > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-hub a {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-hub a {
    transition: none;
  }
}
