:root {
  --paper: #f1f3f0;
  --paper-deep: #e7ebe6;
  --white: #ffffff;
  --ink: #29332e;
  --ink-soft: #5e6c64;
  --line: #d6ddd6;
  --orange: #e97832;
  --orange-deep: #c75b1e;
  --orange-soft: #f8e2d2;
  --green: #78a982;
  --green-deep: #4f7b59;
  --green-soft: #deebdf;
  --shadow: 0 18px 45px rgba(41, 51, 46, 0.08);
  --radius: 22px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell { overflow: hidden; }
.site-header,
main,
.site-footer { width: min(calc(100% - 48px), var(--max-width)); margin-inline: auto; }
.site-header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  box-shadow: 5px 5px 0 var(--green);
}
.brand-copy { display: grid; line-height: 1; gap: 5px; }
.brand-copy strong { font-size: 0.86rem; letter-spacing: 0.18em; }
.brand-copy small { color: var(--ink-soft); font-size: 0.57rem; letter-spacing: 0.17em; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 0.91rem; color: var(--ink-soft); }
.main-nav a { transition: color 180ms ease; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--orange-deep); }
.main-nav .nav-contact { color: var(--ink); font-weight: 700; }
.nav-contact span { color: var(--orange); margin-left: 4px; }
.menu-toggle { display: none; }

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(44px, 8vw, 112px);
  align-items: center;
  padding: 88px 0 84px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow-orange { color: var(--orange-deep); }
.eyebrow-green { color: var(--green-deep); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -0.045em; }
h1 { max-width: 690px; margin-bottom: 25px; font-size: clamp(3.4rem, 6.1vw, 6.3rem); font-weight: 700; }
h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 570px; margin-bottom: 34px; color: var(--ink-soft); font-size: clamp(1.05rem, 1.55vw, 1.25rem); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button span { font-size: 1.1rem; line-height: 1; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); box-shadow: 0 9px 20px rgba(201, 91, 30, 0.2); }
.button-primary:hover, .button-primary:focus-visible { background: var(--orange-deep); box-shadow: 0 12px 24px rgba(201, 91, 30, 0.27); }
.button-quiet { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.48); }
.button-quiet:hover, .button-quiet:focus-visible { background: var(--white); }

.hero-visual {
  min-height: 435px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 31px;
  background: linear-gradient(145deg, rgba(255,255,255,.78), rgba(226,236,226,.72));
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 31px;
  right: -58px;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  background: var(--orange-soft);
}
.visual-topline, .visual-caption { display: flex; justify-content: space-between; gap: 16px; color: var(--ink-soft); font-size: 0.66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visual-topline { border-bottom: 1px solid rgba(41, 51, 46, .14); padding-bottom: 15px; }
.orbit-field { position: relative; flex: 1; min-height: 315px; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(79, 123, 89, .34); border-radius: 50%; transform: rotate(-23deg); }
.orbit-large { width: 282px; height: 170px; }
.orbit-small { width: 176px; height: 275px; border-color: rgba(233, 120, 50, .44); transform: rotate(38deg); }
.orbit-core { display: grid; place-items: center; width: 92px; height: 92px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 2.4rem; font-weight: 800; box-shadow: 0 0 0 13px rgba(255,255,255,.57), 0 16px 30px rgba(41,51,46,.18); }
.orbit-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; }
.dot-one { top: 25%; left: 19%; background: var(--orange); }
.dot-two { right: 16%; bottom: 20%; background: var(--green); }
.dot-three { right: 25%; top: 22%; width: 7px; height: 7px; background: var(--ink); }
.visual-caption { align-items: end; padding-top: 15px; border-top: 1px solid rgba(41, 51, 46, .14); }
.visual-caption p { max-width: 220px; margin: 0; font-size: .79rem; line-height: 1.5; letter-spacing: .01em; text-transform: none; }
.caption-line { width: 42px; height: 4px; margin-bottom: 4px; border-radius: 99px; background: var(--orange); }
.portrait-frame { position: relative; flex: 1; min-height: 315px; margin: 18px 0; overflow: hidden; border: 1px solid rgba(41, 51, 46, .14); border-radius: 19px; background: linear-gradient(145deg, var(--green-soft), var(--orange-soft)); }
.portrait-frame::before, .portrait-frame::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.portrait-frame::before { width: 180px; height: 180px; top: -74px; right: -45px; background: rgba(233, 120, 50, .48); }
.portrait-frame::after { width: 240px; height: 240px; bottom: -135px; left: -90px; border: 1px solid rgba(79, 123, 89, .45); }
.portrait-image { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 220ms ease; }
.portrait-frame.has-image .portrait-image { opacity: 1; }
.portrait-frame.has-image::before, .portrait-frame.has-image::after { opacity: .12; z-index: 3; }
.portrait-fallback { position: absolute; z-index: 1; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; color: var(--ink); text-align: center; transition: opacity 220ms ease, visibility 220ms ease; }
.portrait-frame.has-image .portrait-fallback { visibility: hidden; opacity: 0; }
.portrait-initial { display: grid; place-items: center; width: 96px; height: 96px; margin-bottom: 8px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 2.7rem; font-weight: 800; box-shadow: 0 0 0 12px rgba(255,255,255,.55), 0 16px 30px rgba(41,51,46,.15); }
.portrait-fallback strong { font-size: 1rem; }
.portrait-fallback small { color: var(--ink-soft); font-size: .7rem; letter-spacing: .05em; }

.quick-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 25px 0 84px; border-top: 1px solid var(--line); }
.fact { display: grid; grid-template-columns: 38px 1fr; gap: 12px; }
.fact-number, .project-number { color: var(--orange); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.fact strong { display: block; margin-bottom: 5px; font-size: 1rem; }
.fact p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.55; }

.timeline-section { background: linear-gradient(180deg, rgba(248, 226, 210, .28), rgba(241, 243, 240, 0)); }
.timeline-heading { margin-bottom: 58px; }
.timeline-heading h2 { max-width: 760px; }
.timeline-heading > p:last-child { max-width: 620px; }
.timeline-list { position: relative; max-width: 970px; margin-left: auto; }
.timeline-list::before { content: ""; position: absolute; top: 9px; bottom: 30px; left: 159px; width: 1px; background: var(--line); }
.timeline-entry { position: relative; display: grid; grid-template-columns: 130px 1fr; gap: 58px; padding: 0 0 18px; }
.timeline-entry::before { content: ""; position: absolute; z-index: 1; top: 23px; left: 153px; width: 13px; height: 13px; border: 3px solid var(--paper); border-radius: 50%; background: var(--green); box-shadow: 0 0 0 1px var(--green); }
.timeline-date { margin: 18px 0 0; color: var(--green-deep); font-size: .73rem; font-weight: 800; letter-spacing: .04em; line-height: 1.4; text-align: right; }
.timeline-content { position: relative; min-height: 74px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, .66); }
.timeline-content h3 { margin-bottom: 5px; font-size: 1.13rem; letter-spacing: -.025em; }
.timeline-content p { margin: 0; color: var(--ink-soft); font-size: .91rem; line-height: 1.5; }
.timeline-entry-accent::before { background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.timeline-entry-accent .timeline-content { border-color: rgba(233, 120, 50, .4); background: var(--orange-soft); }
.timeline-entry-latest::before { background: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.timeline-entry-latest .timeline-content { border-color: rgba(233, 120, 50, .48); background: var(--white); box-shadow: 0 10px 24px rgba(41, 51, 46, .06); }
.timeline-badge { display: inline-flex; min-height: 22px; align-items: center; margin-bottom: 9px; padding: 0 8px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-deep); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.content-section { padding: 100px 0; border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr 1.6fr; column-gap: 45px; align-items: end; margin-bottom: 42px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.6rem, 4.5vw, 4.6rem); }
.section-heading > p:last-child { grid-column: 2; max-width: 550px; margin: 21px 0 0; color: var(--ink-soft); font-size: 1rem; }

.workshop-section { background: linear-gradient(180deg, rgba(222, 235, 223, .32), rgba(241, 243, 240, 0)); }
.workshop-heading h2 { max-width: 760px; }
.workshop-heading > p:last-child { max-width: 590px; }
.service-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.service-card { min-height: 250px; grid-column: span 2; display: flex; flex-direction: column; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform 190ms ease, box-shadow 190ms ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card-orange { background: var(--orange); border-color: var(--orange); color: var(--white); }
.service-card-green { background: var(--green-soft); border-color: var(--green-soft); color: var(--green-deep); }
.service-card-light { background: rgba(255, 255, 255, .68); }
.service-card-wide { grid-column: span 2; }
.service-icon { display: inline-grid; place-items: center; width: 47px; height: 32px; margin-bottom: 36px; border-radius: 10px; background: var(--ink); color: var(--white); font-size: .66rem; font-weight: 800; letter-spacing: .08em; }
.service-card-orange .service-icon { background: rgba(255, 255, 255, .2); }
.service-card-green .service-icon { background: var(--green-deep); }
.service-card h3 { margin-bottom: 10px; font-size: 1.55rem; letter-spacing: -.035em; }
.service-card p { margin-bottom: 18px; color: var(--ink-soft); font-size: .9rem; line-height: 1.55; }
.service-card-orange p { color: rgba(255, 255, 255, .82); }
.service-card-green p { color: var(--green-deep); opacity: .82; }
.service-label { margin-top: auto; color: var(--ink-soft); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.service-card-orange .service-label { color: var(--orange-soft); }
.service-card-green .service-label { color: var(--green-deep); }

.project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.project-card { min-height: 275px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.57); transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease; }
.project-card:hover { border-color: rgba(233,120,50,.45); box-shadow: var(--shadow); transform: translateY(-4px); }
.project-card-featured { background: var(--ink); color: var(--white); border-color: var(--ink); }
.project-card-featured:hover { border-color: var(--ink); }
.card-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 45px; }
.project-card-featured .project-number { color: var(--orange-soft); }
.tag { display: inline-flex; align-items: center; min-height: 26px; padding: 0 10px; border-radius: 999px; font-size: .65rem; font-weight: 800; letter-spacing: .04em; }
.tag-orange { background: var(--orange-soft); color: var(--orange-deep); }
.tag-green { background: var(--green-soft); color: var(--green-deep); }
.tag-grey { background: var(--paper-deep); color: var(--ink-soft); }
.project-card h3 { margin-bottom: 12px; font-size: clamp(1.65rem, 2.5vw, 2.25rem); }
.project-card p { max-width: 450px; margin-bottom: 22px; color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }
.project-card-featured p { color: rgba(255,255,255,.69); }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: var(--orange-deep); font-size: .83rem; font-weight: 800; }
.card-link span { font-size: 1rem; transition: transform 180ms ease; }
.card-link:hover span { transform: translate(3px, -3px); }
.project-card-featured .card-link { color: var(--orange-soft); }

.method-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 125px); align-items: start; }
.method-intro h2 { max-width: 510px; margin-bottom: 22px; font-size: clamp(2.5rem, 4vw, 4rem); }
.method-intro > p:last-child { max-width: 460px; color: var(--ink-soft); }
.method-steps { border-top: 1px solid var(--line); }
.method-step { display: grid; grid-template-columns: 45px 1fr; gap: 12px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.method-step > span { color: var(--green-deep); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.method-step h3 { margin-bottom: 5px; font-size: 1.15rem; letter-spacing: -.02em; }
.method-step p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

.workstyle-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 125px); align-items: start; padding-top: 100px; padding-bottom: 100px; border-top: 1px solid var(--line); }
.workstyle-intro h2 { max-width: 540px; margin-bottom: 22px; font-size: clamp(2.35rem, 4vw, 3.9rem); }
.workstyle-copy { display: grid; gap: 24px; max-width: 720px; }
.workstyle-copy p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }

.fit-section { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; padding: 100px 0; }
.fit-main { padding: 48px; border-radius: var(--radius); background: var(--orange); color: var(--white); }
.fit-main .eyebrow { color: var(--orange-soft); }
.fit-main h2 { max-width: 660px; margin-bottom: 20px; font-size: clamp(2.4rem, 4.3vw, 4.3rem); }
.fit-main > p:not(.eyebrow) { max-width: 600px; margin-bottom: 30px; color: rgba(255,255,255,.83); font-size: 1.02rem; }
.fit-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fit-tags span { padding: 6px 12px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; color: var(--white); font-size: .78rem; }
.fit-note { display: flex; flex-direction: column; justify-content: center; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--green-soft); }
.quote-mark { color: var(--green-deep); font-family: Georgia, serif; font-size: 4rem; line-height: .7; }
.fit-note p { margin: 25px 0 28px; color: var(--green-deep); font-size: 1.22rem; line-height: 1.5; }
.signature { color: var(--green-deep); font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.closing-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr); align-items: start; gap: clamp(36px, 7vw, 100px); padding: 100px 0; border-top: 1px solid var(--line); }
.closing-section h2 { max-width: 700px; margin-bottom: 17px; font-size: clamp(2.7rem, 5vw, 5rem); }
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin-bottom: 20px; color: var(--ink-soft); }
.contact-copy .contact-note { margin-top: 32px; font-size: .86rem; }
.contact-copy a, .form-privacy a { color: var(--orange-deep); font-weight: 800; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.contact-panel { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .72); box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 17px; }
.form-row { display: grid; gap: 7px; }
.form-row label { color: var(--ink); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-row label > span:not(.label-optional) { color: var(--orange-deep); }
.label-optional { color: var(--ink-soft); font-size: .67rem; font-weight: 600; letter-spacing: 0; text-transform: none; }
.form-row input, .form-row select, .form-row textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); font: inherit; font-size: .95rem; outline: none; transition: border-color 180ms ease, box-shadow 180ms ease; }
.form-row input, .form-row select { min-height: 46px; padding: 0 13px; }
.form-row textarea { min-height: 150px; padding: 12px 13px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-soft); }
.field-hint { color: var(--ink-soft); font-size: .73rem; line-height: 1.45; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.form-privacy { margin: 0; color: var(--ink-soft); font-size: .76rem; line-height: 1.55; }
.form-submit { justify-self: start; border: 0; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.contact-status { min-height: 1.3em; margin: 0; color: var(--green-deep); font-size: .82rem; font-weight: 700; }
.contact-status.is-error { color: var(--orange-deep); }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 36px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: .77rem; }
.site-footer a { color: var(--ink); font-weight: 700; }
.footer-links { display: inline-flex; flex-wrap: wrap; justify-content: end; gap: 16px; }

.legal-page { padding: 70px 0 110px; }
.legal-back { display: inline-flex; margin-bottom: 48px; color: var(--orange-deep); font-size: .86rem; font-weight: 800; }
.legal-page h1 { max-width: 900px; margin-bottom: 54px; font-size: clamp(3rem, 6vw, 5.8rem); }
.legal-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 24px; align-items: start; }
.legal-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, .72); }
.legal-card + .legal-card { background: var(--green-soft); }
.legal-card h2 { margin: 0 0 12px; font-size: 1.35rem; }
.legal-card h2:not(:first-child) { margin-top: 32px; }
.legal-card p, .legal-card li { color: var(--ink-soft); font-size: .94rem; line-height: 1.7; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul { margin: 0; padding-left: 21px; }
.legal-card a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 16px 18px; border-left: 4px solid var(--orange); background: var(--orange-soft); color: var(--ink) !important; }
.legal-meta { margin-bottom: 32px; color: var(--ink-soft); font-size: .78rem; }
.legal-warning { border-color: rgba(233, 120, 50, .5); background: #fff8f2; }

:focus-visible { outline: 3px solid rgba(233,120,50,.48); outline-offset: 4px; }

@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-visual { max-width: 620px; width: 100%; }
  .section-heading { grid-template-columns: 1fr; gap: 15px; }
  .section-heading > p:last-child { grid-column: 1; margin-top: 0; }
  .method-section, .workstyle-section, .fit-section, .closing-section, .legal-layout { grid-template-columns: 1fr; }
  .fit-note { min-height: 280px; }
  .timeline-list::before { left: 4px; }
  .timeline-entry { grid-template-columns: 1fr; gap: 7px; padding-left: 26px; }
  .timeline-entry::before { top: 25px; left: -2px; }
  .timeline-date { margin: 0; text-align: left; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card, .service-card-wide { grid-column: span 1; }
}

@media (max-width: 680px) {
  .site-header, main, .site-footer { width: min(calc(100% - 32px), var(--max-width)); }
  .site-header { min-height: 76px; position: relative; }
  .menu-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: transparent; cursor: pointer; }
  .menu-toggle > span:not(.sr-only) { display: block; width: 18px; height: 2px; margin-inline: auto; border-radius: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { display: none; position: absolute; z-index: 3; top: 68px; right: 0; left: 0; flex-direction: column; align-items: stretch; gap: 0; padding: 8px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 14px; border-radius: 10px; }
  .main-nav a:hover, .main-nav a:focus-visible { background: var(--paper); }
  .hero { min-height: 0; padding: 58px 0 66px; gap: 45px; }
  h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-visual { min-height: 370px; padding: 17px; border-radius: 24px; }
  .portrait-frame { min-height: 250px; }
  .orbit-large { width: 230px; height: 145px; }
  .orbit-small { width: 150px; height: 230px; }
  .quick-facts { grid-template-columns: 1fr; gap: 24px; padding-bottom: 65px; }
  .content-section, .workstyle-section, .fit-section, .closing-section { padding: 70px 0; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 255px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card-wide { grid-column: span 1; min-height: 225px; }
  .fit-main, .fit-note { padding: 30px 24px; }
  .closing-section { align-items: start; }
  .contact-panel { padding: 24px 20px; }
  .legal-page { padding: 52px 0 80px; }
  .legal-page h1 { margin-bottom: 36px; }
  .legal-card { padding: 25px 21px; }
  .site-footer { flex-wrap: wrap; padding-bottom: 28px; }
  .site-footer span:nth-child(2) { order: 3; width: 100%; }
  .footer-links { justify-content: start; width: 100%; order: 4; }
}

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