:root {
  --bg: #f7f5f1;
  --paper: #fffdfa;
  --text: #16181d;
  --emphasis: #0e0e10;
  --gold: #c9a96a;
  --gold-deep: #9d7b3d;
  --muted: rgba(22, 24, 29, 0.68);
  --line: rgba(22, 24, 29, 0.12);
  --line-strong: rgba(201, 169, 106, 0.48);
  --header: rgba(247, 245, 241, 0.82);
  --font-serif-ja: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(22, 24, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 24, 29, 0.026) 1px, transparent 1px),
    var(--bg);
  background-size: 92px 92px, 92px 92px, auto;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  display: none;
}

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--emphasis);
  background: rgba(201, 169, 106, 0.48);
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 22% 31%, rgba(22, 24, 29, 0.7) 0 1px, transparent 1.3px),
    radial-gradient(circle at 76% 13%, rgba(22, 24, 29, 0.45) 0 1px, transparent 1.2px),
    radial-gradient(circle at 49% 78%, rgba(22, 24, 29, 0.32) 0 1px, transparent 1.2px);
  background-size: 17px 19px, 23px 29px, 31px 37px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--emphasis);
  transition:
    background-color 360ms ease,
    border-color 360ms ease,
    min-height 360ms ease;
}

.site-header.is-scrolled {
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name,
.site-nav a,
.scroll-cue,
.section-label,
.service-index {
  font-family: var(--font-display);
}

.brand-name {
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.4vw, 34px);
  font-size: 17px;
  line-height: 1;
}

.site-nav a,
.text-button {
  position: relative;
}

.site-nav a::after,
.text-button::after {
  position: absolute;
  right: 0;
  bottom: -0.35em;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.text-button:hover::after,
.text-button:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: grid;
  isolation: isolate;
  min-height: 90vh;
  min-height: 90svh;
  padding: 124px clamp(18px, 4vw, 56px) 62px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    #f7f5f1 0%,
    rgba(247, 245, 241, 0.98) 20%,
    rgba(247, 245, 241, 0.78) 44%,
    rgba(247, 245, 241, 0.28) 64%,
    rgba(247, 245, 241, 0) 82%
  );
}

.hero::after {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 0;
  left: clamp(18px, 4vw, 56px);
  z-index: 3;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(201, 169, 106, 0.74), transparent);
}

.hero-visual {
  position: absolute;
  inset: -5vh 0 -7vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform-origin: center center;
}

.hero-glow {
  display: none;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(201, 169, 106, 0.09);
  border-radius: 50%;
}

.hero-glow::before {
  inset: 11%;
}

.hero-glow::after {
  inset: 23%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 1180px);
  max-width: min(56vw, 1180px);
  margin: 0;
}

.hero-title {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  margin: 0;
  color: var(--emphasis);
  font-family: var(--font-display);
  font-size: clamp(58px, 10vw, 176px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-word {
  display: block;
  min-width: 0;
}

.hero-divider {
  display: block;
  width: clamp(22px, 5vw, 72px);
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, rgba(201, 169, 106, 0.18), var(--gold), rgba(201, 169, 106, 0.18));
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(260px, 0.34fr);
  gap: clamp(24px, 6vw, 88px);
  align-items: end;
  margin-top: clamp(30px, 6vw, 76px);
}

.hero-tagline {
  margin: 0;
  color: var(--emphasis);
  font-family: var(--font-serif-ja);
  font-size: clamp(30px, 4.7vw, 72px);
  font-weight: 600;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.hero-sub {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(22, 24, 29, 0.58);
  font-size: 16px;
  line-height: 1;
}

.scroll-cue i {
  width: 48px;
  height: 1px;
  background: rgba(201, 169, 106, 0.76);
  transform-origin: right;
}

.section {
  position: relative;
  padding: clamp(96px, 15vw, 196px) clamp(18px, 4vw, 56px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.section-number {
  position: absolute;
  top: clamp(24px, 6vw, 74px);
  right: clamp(16px, 5vw, 72px);
  color: rgba(22, 24, 29, 0.045);
  font-family: var(--font-display);
  font-size: clamp(130px, 25vw, 360px);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 64px);
  color: var(--gold-deep);
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
}

.section-label::before {
  display: none;
}

.section-label .motion-rule {
  width: clamp(42px, 8vw, 110px);
  height: 1px;
  background: rgba(201, 169, 106, 0.58);
}

.section-heading {
  margin: 0;
  color: var(--emphasis);
  font-family: var(--font-serif-ja);
  font-size: clamp(38px, 6.6vw, 96px);
  font-weight: 500;
  line-height: 1.18;
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(36px, 8vw, 110px);
}

.about-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.55fr) minmax(300px, 0.45fr);
}

.about-copy {
  min-width: 0;
}

.section-body p,
.service-item p,
.works-note p,
.contact-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 2.05;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(60px, 9vw, 104px) 0 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.proof-list div {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px) clamp(18px, 3vw, 36px);
  border-right: 1px solid var(--line);
}

.proof-list div:last-child {
  border-right: 0;
}

.proof-list dt {
  margin: 0 0 10px;
  color: var(--emphasis);
  font-family: var(--font-serif-ja);
  font-size: clamp(18px, 2.1vw, 27px);
  font-weight: 500;
  line-height: 1.45;
}

.proof-list dd {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.85;
}

.section-services {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.62), rgba(247, 245, 241, 0)),
    var(--bg);
}

.editorial-figure {
  position: relative;
  isolation: isolate;
  min-width: 0;
  margin: 0;
}

.editorial-figure::before {
  content: attr(data-letter);
  position: absolute;
  top: -0.48em;
  right: -0.14em;
  z-index: -1;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: clamp(116px, 13vw, 230px);
  font-weight: 500;
  line-height: 1;
  opacity: 0.06;
  pointer-events: none;
}

.editorial-figure::after {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -7%;
  z-index: -1;
  width: min(46%, 220px);
  aspect-ratio: 1.18;
  border: 1px solid rgba(201, 169, 106, 0.32);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}

.editorial-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1400 / 875;
  border: 1px solid rgba(201, 169, 106, 0.24);
  border-radius: 34px;
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 24px 70px rgba(22, 24, 29, 0.12);
}

.editorial-image-frame img {
  display: block;
  width: 100%;
  height: 112%;
  margin-top: -6%;
  object-fit: cover;
}

.editorial-figure.is-organic .editorial-image-frame {
  border-radius: 38px 112px 34px 78px / 34px 70px 42px 86px;
}

.editorial-figure.is-soft-arch .editorial-image-frame {
  border-radius: 104px 34px 38px;
}

.editorial-figure.is-tall .editorial-image-frame {
  aspect-ratio: 4 / 3;
}

.service-figure::before {
  top: -0.38em;
  right: auto;
  left: -0.12em;
}

.service-item-image-right .service-figure::before {
  right: -0.12em;
  left: auto;
}

.services-heading {
  margin-bottom: clamp(48px, 8vw, 88px);
  font-family: var(--font-display);
}

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

.service-item {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(30px, 5vw, 58px) 0;
  border-bottom: 1px solid var(--line);
}

.service-item-media {
  grid-template-columns: minmax(280px, 0.43fr) minmax(0, 0.57fr);
}

.service-item-image-right {
  grid-template-columns: minmax(0, 0.57fr) minmax(280px, 0.43fr);
}

.service-item-text-only {
  align-items: start;
}

.service-copy {
  display: grid;
  grid-template-columns: clamp(48px, 8vw, 96px) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 68px);
  min-width: 0;
  max-width: 920px;
}

.service-text {
  min-width: 0;
}

.service-item-text-only .service-copy {
  max-width: min(100%, 980px);
}

.service-index {
  color: rgba(157, 123, 61, 0.72);
  font-size: clamp(24px, 4vw, 54px);
  line-height: 1;
}

.service-item h3 {
  margin: 0 0 clamp(14px, 2vw, 20px);
  color: var(--emphasis);
  font-family: var(--font-serif-ja);
  font-size: clamp(24px, 4.6vw, 54px);
  font-weight: 500;
  line-height: 1.26;
}

.service-item p {
  max-width: 820px;
}

.text-button {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold-deep);
  font-size: 15px;
  font-weight: 700;
}

.section-works {
  min-height: 70vh;
  min-height: 70svh;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.5), rgba(247, 245, 241, 0)),
    var(--bg);
}

.works-shell {
  display: grid;
  min-height: 46vh;
  min-height: 46svh;
  align-content: center;
}

.works-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.56fr) minmax(280px, 0.44fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
}

.works-note {
  position: relative;
  padding: clamp(28px, 5vw, 54px) 0 clamp(28px, 5vw, 54px) clamp(26px, 4vw, 54px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.works-note span {
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.82), rgba(247, 245, 241, 0.42)),
    var(--paper);
}

.contact-layout {
  align-items: end;
}

.contact-copy {
  max-width: 560px;
  margin-top: clamp(24px, 4vw, 42px);
}

.contact-action {
  display: block;
  min-width: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.contact-form {
  width: 100%;
  min-width: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px clamp(18px, 3vw, 30px);
}

.form-field {
  position: relative;
  min-width: 0;
}

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(22, 24, 29, 0.82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.required-mark {
  color: var(--gold-deep);
  font-size: 12px;
  line-height: 1;
}

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid rgba(22, 24, 29, 0.2);
  border-radius: 0;
  color: var(--emphasis);
  background: transparent;
  outline: 0;
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

.form-field input {
  min-height: 46px;
  padding: 8px 0 10px;
}

.form-field textarea {
  min-height: 190px;
  resize: vertical;
  padding: 12px 0;
  line-height: 1.75;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold-deep);
  background: rgba(201, 169, 106, 0.06);
}

.form-error {
  min-height: 21px;
  margin: 6px 0 0;
  color: #a8472e;
  font-size: 12px;
  line-height: 1.55;
}

.form-field-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 28px;
  padding: 13px 22px 14px;
  border: 1px solid rgba(201, 169, 106, 0.74);
  border-radius: 0;
  color: var(--emphasis);
  background: rgba(201, 169, 106, 0.42);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.form-button:hover,
.form-button:focus-visible {
  border-color: var(--gold-deep);
  background: rgba(201, 169, 106, 0.62);
  transform: translateY(-1px);
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-button-secondary {
  color: var(--gold-deep);
  background: transparent;
}

.form-button-secondary:hover,
.form-button-secondary:focus-visible {
  color: var(--emphasis);
}

.confirm-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(201, 169, 106, 0.42);
  border-bottom: 1px solid var(--line);
}

.confirm-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.3fr) minmax(0, 0.7fr);
  gap: 18px;
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(22, 24, 29, 0.1);
}

.confirm-list div:last-child {
  border-bottom: 0;
}

.confirm-list dt,
.confirm-list dd {
  min-width: 0;
  margin: 0;
}

.confirm-list dt {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.confirm-list dd {
  color: var(--emphasis);
  line-height: 1.8;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

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

.form-complete {
  padding: clamp(28px, 5vw, 46px) 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.form-complete p {
  margin: 0;
  color: var(--emphasis);
  font-family: var(--font-serif-ja);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.form-status.is-error {
  color: #a8472e;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 34px 18px 42px;
  color: rgba(22, 24, 29, 0.54);
  background: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
}

.footer-logo {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold-deep);
}

.motion-line {
  display: block;
  overflow: hidden;
}

.motion-line-inner,
.motion-rule,
[data-motion~="hero-visual"],
[data-motion~="hero-visual"] img,
[data-motion~="editorial-image"],
[data-motion~="editorial-image"] img,
[data-motion~="section-number"],
[data-motion~="stagger"] > * {
  will-change: transform, opacity;
}

.motion-line-inner {
  display: block;
}

.motion-rule {
  display: block;
  flex: 0 0 auto;
  transform-origin: left center;
}

.motion-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 80;
  height: 2px;
  pointer-events: none;
}

.motion-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

.motion-cursor {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.motion-cursor-dot,
.motion-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  border-radius: 999px;
  pointer-events: none;
}

.motion-cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--gold-deep);
}

.motion-cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(157, 123, 61, 0.58);
  transition:
    width 180ms ease,
    height 180ms ease,
    margin 180ms ease,
    border-color 180ms ease;
}

.motion-cursor.is-hover .motion-cursor-ring {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-color: rgba(157, 123, 61, 0.86);
}

@media (pointer: fine) and (min-width: 768px) {
  body.has-motion-cursor,
  body.has-motion-cursor a,
  body.has-motion-cursor button,
  body.has-motion-cursor input,
  body.has-motion-cursor textarea,
  body.has-motion-cursor select {
    cursor: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    gap: 16px;
    min-height: 68px;
  }

  .site-nav {
    gap: 14px;
    font-size: 15px;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
    padding-top: 108px;
  }

  .hero-title {
    flex-wrap: wrap;
    line-height: 1.25;
  }

  .hero-divider {
    width: clamp(36px, 18vw, 82px);
  }

  .hero-copy,
  .about-grid,
  .service-item-media,
  .service-item-image-right,
  .service-item-text-only,
  .works-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-figure,
  .service-figure {
    order: -1;
  }

  .hero-sub {
    max-width: 560px;
  }

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

  .proof-list div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-list div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero {
    --hero-mobile-visual: clamp(220px, 36vh, 320px);

    display: block;
    min-height: auto;
    padding-top: calc(86px + var(--hero-mobile-visual) + 32px);
  }

  .hero::before {
    top: 72px;
    bottom: auto;
    height: var(--hero-mobile-visual);
    background: linear-gradient(
      180deg,
      rgba(247, 245, 241, 0) 45%,
      rgba(247, 245, 241, 0.78) 82%,
      #f7f5f1 100%
    );
  }

  .hero-visual {
    top: 72px;
    right: 0;
    bottom: auto;
    left: 0;
    height: var(--hero-mobile-visual);
  }

  .hero-inner {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.85;
  }

  .site-header {
    align-items: flex-start;
    gap: 8px;
    min-height: 74px;
    padding: 14px 16px 12px;
  }

  .site-header.is-scrolled {
    min-height: 70px;
  }

  .brand-logo {
    width: 26px;
    height: 26px;
  }

  .brand-name {
    display: none;
  }

  .site-nav {
    flex: 1;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .hero {
    --hero-mobile-visual: clamp(210px, 34vh, 280px);

    min-height: 91vh;
    min-height: 91svh;
    padding: calc(78px + var(--hero-mobile-visual) + 28px) 16px 38px;
  }

  .hero::after {
    right: 16px;
    left: 16px;
  }

  .hero-glow {
    top: 18%;
    left: -18%;
  }

  .hero-title {
    display: block;
    font-size: clamp(68px, 19vw, 86px);
    line-height: 1.25;
  }

  .hero-divider {
    margin: 20px 0 18px;
  }

  .hero-copy {
    gap: 18px;
    margin-top: 36px;
  }

  .hero-tagline {
    font-size: clamp(30px, 9vw, 42px);
  }

  .scroll-cue {
    right: 16px;
    bottom: 20px;
    font-size: 14px;
  }

  .section {
    padding: 88px 16px;
  }

  .section-number {
    right: 8px;
    font-size: 118px;
  }

  .section-label {
    margin-bottom: 30px;
    font-size: 18px;
  }

  .section-heading {
    font-size: clamp(36px, 11vw, 48px);
  }

  .about-grid,
  .service-item {
    gap: 28px;
  }

  .editorial-figure::before {
    font-size: clamp(86px, 24vw, 128px);
  }

  .editorial-figure::after {
    right: -3%;
    bottom: -5%;
    width: 38%;
  }

  .editorial-image-frame {
    border-radius: 26px;
  }

  .editorial-figure.is-organic .editorial-image-frame {
    border-radius: 30px 78px 28px 54px / 28px 52px 34px 62px;
  }

  .editorial-figure.is-soft-arch .editorial-image-frame {
    border-radius: 72px 28px 30px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-copy {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-index {
    font-size: 26px;
  }

  .service-item h3 {
    font-size: clamp(25px, 8vw, 36px);
  }

  .works-note {
    padding-left: 22px;
  }

  .contact-action {
    padding-top: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-field textarea {
    min-height: 170px;
  }

  .form-button {
    width: 100%;
    margin-top: 22px;
  }

  .form-actions {
    gap: 8px;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 15px 0;
  }
}

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