@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #ff5a1f;
  --orange-deep: #e9440b;
  --ink: #111111;
  --paper: #ffffff;
  --warm: #f6f3ee;
  --muted: #6d6b67;
  --line: #dedbd5;
  --shell: min(1200px, calc(100vw - 48px));
  --display: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 132px 0; }
.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;
}
.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px;
  background: var(--ink); color: white; transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; width: 100%;
  background: white; border-bottom: 1px solid rgba(17,17,17,.1);
  transition: background .25s, border .25s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9); border-color: rgba(17,17,17,.1);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; letter-spacing: -.045em; font-size: 21px; }
.brand > span > span { color: var(--orange); }
.brand-mark { width: 29px; height: auto; fill: none; stroke: var(--orange); stroke-width: 2.4; stroke-linejoin: round; }
.site-nav { display: flex; align-items: center; gap: 37px; font-size: 14px; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; height: 2px; width: 100%; left: 0; bottom: -6px;
  background: var(--orange); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 12px 19px; border: 1px solid var(--ink); transition: .2s; }
.nav-cta:hover { background: var(--ink); color: white; }
.nav-cta span { color: var(--orange); margin-left: 5px; }
.menu-toggle { display: none; }

.hero { min-height: 100vh; min-height: 760px; position: relative; overflow: hidden; display: flex; align-items: center; padding: 190px 0 70px; color: white; }
.hero-backdrop { position: absolute; z-index: 0; inset: 0; }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(65,21,3,.02) 25%, rgba(45,13,1,.22) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 18px; transform: none; }
.hero-copy { position: relative; z-index: 3; grid-column: 2; grid-row: 1; padding-top: 22px; }
.hero .eyebrow { color: white; }
.eyebrow, .section-kicker {
  margin: 0 0 24px; font-family: var(--mono); text-transform: uppercase;
  font-size: 12px; letter-spacing: .16em; color: var(--orange); font-weight: 500;
}
.eyebrow::before, .section-kicker::before { content: ""; display: inline-block; width: 28px; height: 1px; background: currentColor; margin: 0 12px 4px 0; }
.hero h1 {
  margin: 0; font-size: clamp(58px, 6.5vw, 104px); line-height: .94;
  letter-spacing: -.07em; font-weight: 700;
}
.hero h1 span { color: var(--ink); white-space: nowrap; }
.hero-intro { max-width: 555px; font-size: 18px; line-height: 1.65; margin: 32px 0 36px; color: rgba(255,255,255,.88); }
.mobile-break { display: none; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 27px;
  padding: 17px 21px; font-size: 14px; font-weight: 700; transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: white; }
.button-primary:hover { background: var(--orange-deep); }
.hero .button-primary { background: var(--ink); color: white; }
.hero .button-primary:hover { background: white; color: var(--ink); }
.button span { font-size: 18px; line-height: 1; }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; border-bottom: 1px solid var(--ink); padding-bottom: 3px; }
.text-link span { color: var(--orange); }
.hero .text-link { border-color: white; }
.hero .text-link span { color: white; }
.hero-proof { display: flex; gap: 22px; margin-top: 57px; font-family: var(--mono); color: rgba(255,255,255,.72); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.hero-proof span:not(:last-child)::after { content: "/"; margin-left: 22px; color: white; }
.hero-product-stage {
  position: relative; grid-column: 1; grid-row: 1; align-self: stretch;
  min-height: 650px; pointer-events: auto; cursor: pointer; touch-action: manipulation;
}
.hero-product-wrap {
  position: absolute; width: clamp(403px, 35.75vw, 520px); aspect-ratio: 1; max-width: none;
  left: 50%; top: 50%; bottom: auto; transform: translate(-50%, -50%);
}
.hero-product-item { opacity: 0; transition: opacity 1.5s ease; }
.hero-product-item.active { z-index: 2; opacity: 1; }
.hero-product-shadow {
  position: absolute; z-index: 0; top: -22px; right: 0; bottom: auto; left: 0;
  display: block; width: 100%; height: auto;
  transform-origin: 50% var(--shadow-base, 95.9%); transform: scaleY(-.23);
  filter: brightness(0) opacity(.42) blur(4px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 34%, rgba(0,0,0,.18) 62%, #000 94%);
  mask-image: linear-gradient(to bottom, transparent 34%, rgba(0,0,0,.18) 62%, #000 94%);
  pointer-events: none;
}
.hero-product {
  position: relative; z-index: 1; display: block; width: 100%; height: auto; max-width: none;
  filter: drop-shadow(0 3px 1px rgba(22,4,0,.78));
}
.hero-product-item-ky .hero-product {
  filter: drop-shadow(0 3px 1px rgba(22,4,0,.34));
}
.hero-product-item-ky .hero-product-shadow {
  transform: scaleY(-.21);
  filter: brightness(0) opacity(.38) blur(4px);
  clip-path: inset(0 32%);
}
.hero-product-wrap.hero-product-item-dyson {
  width: 520px; top: auto; bottom: -66px;
  transform: translateX(-50%) scale(1.28); transform-origin: 50% 100%;
}
.hero-product-item-dyson .hero-product { filter: none; }
.scroll-cue {
  position: absolute; left: 25px; bottom: 34px; display: flex; flex-direction: column; align-items: center;
  gap: 10px; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .14em;
}
.scroll-cue span { writing-mode: vertical-rl; transform: rotate(180deg); }
.scroll-cue svg { width: 14px; fill: none; stroke: white; stroke-width: 1.4; }

.intro-section { background: var(--warm); }
.intro-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
.statement { font-size: clamp(37px, 4.7vw, 68px); max-width: 960px; margin: 0; letter-spacing: -.055em; line-height: 1.11; font-weight: 600; }
.statement-copy { margin: 42px 0 0 auto; max-width: 610px; font-size: 18px; color: var(--muted); }

.services { background: white; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 65px; }
.section-head h2, .approach h2, .expertise h2, .contact h2 {
  margin: 0; font-size: clamp(43px, 5vw, 72px); line-height: 1.05; letter-spacing: -.06em; font-weight: 650;
}
.section-head > p { max-width: 350px; margin: 0 0 8px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.service-card { min-height: 460px; padding: 39px 42px; border: 1px solid var(--line); margin: 0 -1px -1px 0; position: relative; transition: background .3s, color .3s, transform .3s; }
.service-card:hover { z-index: 2; transform: translateY(-6px); border-color: var(--orange); }
.service-card.featured { background: var(--orange); color: white; border-color: var(--orange); }
.service-number { font: 11px var(--mono); letter-spacing: .12em; }
.service-icon { width: 62px; height: 62px; margin: 51px 0 29px; fill: none; stroke: var(--orange); stroke-width: 1.5; }
.featured .service-icon { stroke: white; }
.service-card h3 { font-size: 28px; letter-spacing: -.04em; margin: 0 0 13px; }
.service-card p { color: var(--muted); max-width: 465px; margin: 0; }
.featured p { color: rgba(255,255,255,.82); }
.service-card ul { list-style: none; padding: 0; margin: 25px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-card li { border: 1px solid var(--line); border-radius: 100px; padding: 5px 11px; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .06em; }
.featured li { border-color: rgba(255,255,255,.45); }

.approach { background: var(--ink); color: white; }
.approach-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 110px; }
.section-kicker.light { color: #ff865a; }
.approach-title { position: sticky; top: 135px; align-self: start; }
.approach-title p:last-child { color: #9e9e9e; max-width: 460px; margin-top: 31px; }
.steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid #3d3d3d; }
.steps li { display: grid; grid-template-columns: 60px 1fr; gap: 28px; padding: 43px 0; border-bottom: 1px solid #3d3d3d; }
.step-index { color: var(--orange); font: 11px var(--mono); padding-top: 8px; }
.steps h3 { font-size: 31px; margin: 0 0 8px; letter-spacing: -.035em; }
.steps p { margin: 0; color: #a8a8a8; max-width: 460px; }

.expertise { background: var(--warm); }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 110px; }
.expertise-copy { align-self: center; }
.expertise-copy > p:not(.section-kicker) { max-width: 520px; margin: 30px 0; color: var(--muted); font-size: 18px; }
.principles { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.principle { min-height: 250px; padding: 29px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle:nth-child(2n) { border-right: 0; }
.principle:nth-child(n+3) { border-bottom: 0; }
.principle span { color: var(--orange); font: 10px var(--mono); }
.principle h3 { margin: 55px 0 9px; font-size: 21px; letter-spacing: -.03em; }
.principle p { color: var(--muted); font-size: 14px; margin: 0; }

.director-quote { background: white; padding: 95px 0; overflow: hidden; }
.quote-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(42px, 6.3vw, 95px); align-items: center; }
.director-portrait { margin: 0; position: relative; }
.portrait-frame { position: relative; width: min(100%, 300px); aspect-ratio: 1 / 1; }
.portrait-frame::before {
  content: ""; position: absolute; width: 58%; height: 58%; left: -12px; bottom: -12px;
  background: var(--orange); z-index: 0;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 0; border: 1px solid rgba(17,17,17,.12); border-radius: 50%; pointer-events: none;
}
.portrait-frame img { position: relative; z-index: 1; display: block; width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; filter: contrast(1.04); }
.director-portrait figcaption {
  margin-top: 25px; font: 9px var(--mono); text-transform: uppercase;
  letter-spacing: .13em; color: var(--muted);
}
.director-portrait figcaption span {
  display: inline-block; width: 27px; height: 1px; margin: 0 11px 3px 0; background: var(--orange);
}
.quote-content { position: relative; }
.quote-content blockquote { margin: 0; position: relative; }
.quote-content blockquote > p {
  margin: 0; max-width: 650px; font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.38; letter-spacing: -.035em; font-weight: 550;
}
.opening-quote, .closing-quote {
  display: inline-block; color: var(--orange);
  font-size: 1.55em; line-height: .5; font-weight: 800; vertical-align: -.18em;
}
.opening-quote { margin-right: .12em; }
.closing-quote { margin-left: .12em; }
.quote-content blockquote footer {
  margin-top: 30px; padding-top: 17px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.quote-content blockquote strong { font-size: 14px; }
.quote-content blockquote footer span {
  color: var(--orange); font: 10px var(--mono); text-transform: uppercase; letter-spacing: .13em;
}

.contact { background: var(--orange); color: white; padding: 125px 0; position: relative; overflow: hidden; }
.contact .section-kicker.light { color: white; }
.contact-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .86fr 1.14fr; gap: 95px; align-items: start; }
.contact-inner { position: sticky; top: 125px; }
.contact h2 { font-size: clamp(50px, 5vw, 76px); max-width: 650px; }
.contact-inner > p:not(.section-kicker) { max-width: 530px; font-size: 18px; margin: 32px 0; color: rgba(255,255,255,.84); }
.contact-direct { padding-top: 28px; border-top: 1px solid rgba(255,255,255,.38); display: flex; flex-direction: column; gap: 4px; max-width: 410px; }
.contact-direct > span { font: 10px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.68); }
.contact-direct a { font-weight: 700; }
.contact-direct a span { margin-left: 7px; }
.contact-form { background: white; color: var(--ink); padding: 47px; box-shadow: 0 28px 70px rgba(117,35,7,.19); }
.form-row { display: grid; gap: 9px; margin-bottom: 26px; }
.form-row label { font: 11px var(--mono); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.form-row input, .form-row textarea {
  width: 100%; border: 0; border-bottom: 1px solid #bcb8b1; border-radius: 0;
  background: transparent; padding: 10px 0 13px; color: var(--ink); font: 16px var(--display);
  outline: none; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: #9a9791; }
.form-row input:focus, .form-row textarea:focus { border-color: var(--orange); box-shadow: 0 1px 0 var(--orange); }
.form-row input:disabled { opacity: .58; cursor: wait; }
.spam-row { gap: 13px; }
.shape-question { margin: 0; font: 11px var(--mono); text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.shape-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.shape-option {
  min-height: 69px; display: grid; place-items: center; border: 1px solid #c9c5be;
  background: white; color: var(--ink); cursor: pointer; transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.shape-option:hover { border-color: var(--orange); transform: translateY(-2px); }
.shape-option:focus-visible { outline: 3px solid rgba(255,90,31,.28); outline-offset: 2px; }
.shape-option[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: white; }
.shape-option svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2; vector-effect: non-scaling-stroke; }
.honey-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.button-dark { width: 100%; border: 0; background: var(--ink); color: white; cursor: pointer; }
.button-dark:hover { background: var(--orange); }
.button-dark:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.button-dark.loading { cursor: wait; }
.form-status { min-height: 24px; margin: 15px 0 0; font-size: 13px; color: var(--muted); }
.form-status.success { color: #187a43; }
.form-status.error { color: #b32918; }
.form-privacy { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.form-privacy a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.button-light { background: white; color: var(--ink); }
.button-light:hover { background: var(--ink); color: white; }
.contact-mark { position: absolute; width: 500px; left: -145px; bottom: -140px; fill: none; stroke: rgba(255,255,255,.15); stroke-width: 2; }

.site-footer { background: var(--ink); color: white; padding: 65px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .9fr .9fr auto; gap: 45px; align-items: start; padding-bottom: 65px; }
.brand-footer { font-size: 24px; }
.footer-grid > p { margin: 0; color: #888; font-size: 14px; line-height: 1.6; }
.footer-grid nav { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 35px; font-size: 13px; }
.footer-grid nav a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid #3b3b3b; color: #8a8a8a; cursor: default;
}
.social-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-link .social-dot, .social-link .social-fill { fill: currentColor; stroke: none; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #333; color: #777; font: 10px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom p { margin: 0; }
.footer-bottom a:hover { color: white; }
.footer-links { display: flex; align-items: center; gap: 25px; }

.privacy-main { background: var(--warm); padding: 165px 0 110px; }
.privacy-layout { display: grid; grid-template-columns: minmax(190px, .7fr) minmax(0, 2fr); gap: 70px; align-items: start; }
.privacy-aside { position: sticky; top: 125px; }
.privacy-aside .section-kicker { margin-bottom: 16px; }
.privacy-updated { margin: 0; color: var(--muted); font: 11px var(--mono); text-transform: uppercase; letter-spacing: .08em; }
.privacy-content { max-width: 790px; }
.privacy-content h1 { margin: 0 0 34px; font-size: clamp(52px, 7vw, 92px); line-height: .96; letter-spacing: -.065em; }
.privacy-lead { margin: 0 0 70px; max-width: 700px; font-size: 20px; line-height: 1.65; color: #4f4d49; }
.privacy-section { padding: 37px 0; border-top: 1px solid var(--line); }
.privacy-section h2 { margin: 0 0 17px; font-size: 25px; letter-spacing: -.035em; }
.privacy-section p { margin: 0 0 15px; color: #55534f; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul { margin: 0; padding-left: 20px; color: #55534f; }
.privacy-section li + li { margin-top: 9px; }
.privacy-section a { color: var(--orange-deep); text-decoration: underline; text-underline-offset: 3px; }
.privacy-contact { padding: 28px; background: white; border-left: 4px solid var(--orange); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }
.hero .reveal:nth-child(5) { transition-delay: .32s; }

@media (min-width: 901px) {
  .hero { height: 724px; min-height: 724px; padding: 100px 0 0; align-items: stretch; }
  .hero-grid { align-items: center; }
  .hero-copy { transform: none; }
  .hero-product-stage { min-height: 660px; transform: none; }
  .hero-product-wrap.hero-product-item-dyson {
    width: 516px; left: 50%; top: 0; bottom: auto;
    transform: translateX(-50%) scale(1.28); transform-origin: 50% 0;
  }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .site-header { background: white; border-bottom: 1px solid rgba(17,17,17,.1); }
  .section-pad { padding: 95px 0; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 7px; border: 0; background: transparent; z-index: 102; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 2px; background: var(--ink); transition: transform .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 0; background: white; display: flex; flex-direction: column;
    justify-content: center; align-items: flex-start; padding: 15vw; gap: 24px;
    transform: translateX(100%); transition: transform .35s cubic-bezier(.7,0,.3,1);
    font-size: 30px; letter-spacing: -.04em;
  }
  .site-nav.open { transform: none; }
  .nav-cta { margin-top: 20px; font-size: 17px; }
  .hero { min-height: 650px; padding: 100px 0 0; align-items: stretch; }
  .hero-grid { grid-template-columns: .8fr 1.2fr; gap: 18px; align-items: center; min-height: 550px; }
  .hero-copy { grid-column: 2; grid-row: 1; align-self: center; padding-top: 0; }
  .hero h1 { font-size: clamp(45px, 7vw, 60px); }
  .hero-intro { font-size: 16px; margin: 26px 0 30px; }
  .hero-actions { gap: 22px; }
  .hero-proof { margin-top: 40px; gap: 14px; }
  .hero-proof span:not(:last-child)::after { margin-left: 14px; }
  .hero-product-stage { grid-column: 1; grid-row: 1; min-height: 550px; }
  .hero-product-wrap { width: 350px; left: 50%; top: 50%; bottom: auto; transform: translate(-50%, -50%); }
  .hero-product-wrap.hero-product-item-dyson {
    width: 367px; top: 0; bottom: auto;
    transform: translateX(-50%) scale(1.5); transform-origin: 50% 0;
  }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 1fr; gap: 25px; }
  .statement-copy { margin-left: 0; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .approach-grid, .expertise-grid { grid-template-columns: 1fr; gap: 70px; }
  .approach-title { position: static; }
  .quote-grid { grid-template-columns: .65fr 1.35fr; gap: 39px; }
  .quote-content blockquote > p { font-size: clamp(19px, 2.6vw, 24px); }
  .contact-layout { grid-template-columns: 1fr; gap: 55px; }
  .contact-inner { position: relative; top: auto; }
  .contact h2 { max-width: 690px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .brand { grid-column: 1 / -1; }
  .privacy-main { padding: 135px 0 90px; }
  .privacy-layout { grid-template-columns: 1fr; gap: 45px; }
  .privacy-aside { position: static; }
}

@media (min-width: 601px) and (max-width: 900px) {
  .hero { height: 614px; min-height: 614px; }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); }
  .nav-wrap { height: 72px; }
  .hero { min-height: 564px; padding: 112px 0 0; align-items: stretch; }
  .hero-grid { display: block; min-height: 452px; transform: none; }
  .hero-product-stage {
    display: block; position: absolute; z-index: 1;
    top: auto; right: -70px; bottom: -50px; width: 285px; min-height: 365px;
  }
  .hero-copy {
    position: relative; z-index: 3; min-width: 0; padding-top: 0;
    width: calc(100vw - 32px); max-width: calc(100vw - 32px);
  }
  .hero h1 { max-width: 100%; font-size: clamp(35px, 9.4vw, 46px); }
  .hero h1 span { white-space: normal; }
  .hero-intro { width: 100%; max-width: none; font-size: 15px; margin-top: 22px; overflow-wrap: break-word; }
  .mobile-break { display: initial; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-proof { gap: 10px; margin-top: 40px; }
  .hero-proof span:not(:last-child)::after { margin-left: 10px; }
  .hero-product-stage .hero-product-wrap {
    width: 255px; right: 0; left: auto; top: 50%; bottom: auto;
    transform: translateY(-50%);
  }
  .hero-product-stage .hero-product-item-dyson {
    width: 285px; right: 0; left: auto; top: 50%; bottom: auto;
    transform: translateY(-50%) scale(1.08); transform-origin: 100% 50%;
  }
  .hero-product-stage .hero-product-shadow { display: none; }
  .hero-product-stage .hero-product { filter: none !important; }
  .section-pad { padding: 76px 0; }
  .section-head h2, .approach h2, .expertise h2 { font-size: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 31px 25px 34px; }
  .service-icon { margin: 35px 0 23px; }
  .steps li { grid-template-columns: 42px 1fr; gap: 12px; padding: 34px 0; }
  .principles { grid-template-columns: 1fr; }
  .principle { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .principle:last-child { border-bottom: 0 !important; }
  .contact { padding: 88px 0; }
  .contact h2 { font-size: 50px; }
  .contact-form { padding: 32px 24px; }
  .shape-option { min-height: 62px; }
  .director-quote { padding: 60px 0; }
  .quote-grid { grid-template-columns: 1fr; gap: 39px; }
  .director-portrait { width: min(55vw, 245px); }
  .director-portrait figcaption { margin-top: 21px; }
  .quote-content blockquote > p { font-size: 19px; }
  .button-light { word-break: break-word; gap: 12px; }
  .contact-mark { width: 400px; opacity: .55; right: -170px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .brand { grid-column: auto; }
  .footer-grid nav { max-width: 240px; }
  .footer-bottom { gap: 20px; align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 12px 22px; }
  .privacy-main { padding: 110px 0 70px; }
  .privacy-content h1 { margin-bottom: 27px; font-size: 48px; }
  .privacy-lead { margin-bottom: 50px; font-size: 17px; }
  .privacy-section { padding: 30px 0; }
}

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