:root {
  --black: #0d0d0f;
  --black-soft: #121215;
  --charcoal: #1e1e1e;
  --charcoal-2: #252526;
  --ivory: #f5ece4;
  --ivory-soft: #e6ddd5;
  --orange: #fc6a0a;
  --burnt-orange: #e74504;
  --navy: #01204e;
  --teal: #028391;
  --teal-bright: #08a7b7;
  --muted-grey: #a6a6a6;
  --line: rgba(245, 236, 228, 0.13);
  --line-strong: rgba(245, 236, 228, 0.24);
  --font-display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 84px;
  --radius: 8px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--orange); color: var(--black); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(3rem, 6.8vw, 6.4rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.8rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.9rem); }
p { color: var(--muted-grey); }

.shell { width: var(--shell); margin-inline: auto; position: relative; z-index: 2; }
.section-dark, .section-charcoal, .section-light { position: relative; isolation: isolate; }
.section-dark { background: var(--black); }
.section-charcoal { background: var(--charcoal); }
.section-light { background: var(--ivory); color: var(--black); }

.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: 9999;
  left: 16px;
  top: 12px;
  padding: 12px 16px;
  background: var(--ivory);
  color: var(--black);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 4px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13, 13, 15, 0.96), rgba(13, 13, 15, 0.76));
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}
.site-header.is-compact, .site-header--solid {
  min-height: 68px;
  background: rgba(13, 13, 15, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: inherit; }
.brand { display: block; width: clamp(165px, 17vw, 236px); flex: 0 0 auto; }
.brand picture { display: block; }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: clamp(13px, 1.45vw, 24px); }
.primary-nav a {
  color: rgba(245, 236, 228, 0.78);
  font-family: var(--font-display);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition: color 180ms ease;
}
.primary-nav a:hover { color: var(--ivory); }
.primary-nav .nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--orange);
  color: var(--ivory);
}
.primary-nav .nav-cta:hover { background: var(--orange); color: var(--black); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; color: var(--ivory); cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }

/* Reusable text and buttons */
.eyebrow, .section-label, .pillar-kicker {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--teal-bright); margin-inline: 0.3em; }
.section-label { margin-bottom: 24px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 50px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button span { transition: transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button:hover span { transform: translate(2px, -2px); }
.button-primary { background: var(--orange); color: var(--black); border-color: var(--orange); }
.button-primary:hover { background: #ff7b24; border-color: #ff7b24; }
.button-secondary { background: rgba(13, 13, 15, 0.1); color: var(--ivory); border-color: rgba(245, 236, 228, 0.45); }
.button-secondary:hover { border-color: var(--ivory); background: rgba(245, 236, 228, 0.06); }
.button-outline { color: var(--ivory); border-color: var(--line-strong); background: transparent; }
.button-outline:hover { border-color: var(--orange); }
.button-small { min-height: 42px; padding: 10px 14px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.83rem;
}
.text-link::before { content: ""; width: 20px; height: 2px; background: var(--orange); }
.text-link span { color: var(--orange); transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

/* Ambient geometry */
.ambient-pattern, .section-pattern::before, .section-pattern-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-position: center;
  background-size: cover;
}
.ambient-pattern--hero {
  background-image: linear-gradient(90deg, rgba(13,13,15,0.84) 0%, rgba(13,13,15,0.58) 46%, rgba(13,13,15,0.16) 100%), url("/assets/geometric-pattern-alt.webp");
  opacity: 0.18;
  background-size: cover;
}
.section-pattern::before { background-image: url("/assets/geometric-pattern.webp"); opacity: 0.14; background-size: 920px auto; }
.section-pattern-alt::before { background-image: url("/assets/geometric-pattern-alt.webp"); opacity: 0.11; background-size: cover; }
.ambient-pattern--contact { background-image: url("/assets/geometric-pattern-alt.webp"); opacity: 0.08; background-position: right center; }

/* Hero */
.hero { min-height: 100svh; padding: calc(var(--header-height) + 64px) 0 92px; display: grid; align-items: center; overflow: hidden; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--orange), var(--teal), transparent); opacity: 0.4; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(440px, 1.06fr); align-items: center; gap: clamp(24px, 3.5vw, 64px); }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { max-width: 790px; margin: 16px 0 26px; font-weight: 600; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-lead { max-width: 670px; color: rgba(245, 236, 228, 0.72); font-size: clamp(1.02rem, 1.45vw, 1.23rem); }
.hero-audience { max-width: 720px; margin: 34px 0 0; padding-top: 20px; border-top: 1px solid var(--line); color: rgba(245,236,228,0.52); font-size: 0.88rem; }
.hero-visual { position: relative; width: min(760px, 56vw); justify-self: end; will-change: transform; }
.hero-visual picture { display: block; position: relative; z-index: 2; }
.hero-visual img { position: relative; z-index: 2; width: 118%; max-width: none; margin-left: -9%; filter: saturate(0.95) contrast(1.03); }
.hero-halo { position: absolute; z-index: 1; inset: 16% 6% 14% 24%; background: radial-gradient(circle at 54% 45%, rgba(252,106,10,0.15), transparent 35%), radial-gradient(circle at 60% 62%, rgba(2,131,145,0.15), transparent 36%); filter: blur(36px); }
.scroll-cue { position: absolute; z-index: 4; bottom: 24px; left: 50%; transform: translateX(-50%); display: grid; justify-items: center; gap: 7px; color: rgba(245,236,228,0.52); font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase; }
.scroll-cue i { width: 1px; height: 24px; background: linear-gradient(var(--orange), transparent); }

/* Offer */
.offer { padding: 124px 0 132px; overflow: hidden; }
.section-intro { max-width: 760px; margin-bottom: 54px; }
.section-intro h2 { margin-bottom: 22px; }
.section-intro > p:last-child { max-width: 680px; font-size: 1.05rem; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar-card {
  position: relative;
  min-width: 0;
  padding: 18px 22px 28px;
  background: rgba(18, 18, 21, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.pillar-card::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; background: var(--card-accent-bg); transform: scaleX(0.22); transform-origin: left; transition: transform 220ms ease; }
.pillar-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--card-accent-color), transparent 45%); box-shadow: var(--shadow); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card--academy { --card-accent-color: var(--teal-bright); --card-accent-bg: var(--teal-bright); }
.pillar-card--advisory { --card-accent-color: var(--orange); --card-accent-bg: var(--orange); }
.pillar-card--alchemy { --card-accent-color: var(--orange); --card-accent-bg: linear-gradient(90deg, var(--orange), var(--teal-bright)); }
.pillar-number { color: rgba(245,236,228,0.38); font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.16em; }
.pillar-image { aspect-ratio: 1.22 / 0.72; margin: 12px 0 23px; overflow: hidden; background: #050506; border-bottom: 1px solid var(--line); display: grid; place-items: center; }
.pillar-image picture { display: contents; }
.pillar-image img { width: 83%; max-height: 100%; object-fit: contain; transition: transform 350ms ease; }
.pillar-card:hover .pillar-image img { transform: scale(1.035); }
.pillar-kicker { margin-bottom: 10px; color: var(--card-accent-color, var(--orange)); }
.pillar-card--alchemy .pillar-kicker { color: var(--orange); }
.pillar-card h3 { margin-bottom: 17px; }
.pillar-card > p:not(.pillar-kicker) { font-size: 0.93rem; }
.feature-list { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; gap: 8px; }
.feature-list li { position: relative; padding-left: 17px; color: rgba(245,236,228,0.72); font-size: 0.87rem; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 0.73em; width: 6px; height: 1px; background: var(--card-accent-bg, var(--orange)); }

/* Experiences */
.experiences { padding: 124px 0; }
.experiences-heading { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: end; margin-bottom: 50px; }
.experiences-heading h2 { max-width: 800px; margin-bottom: 0; }
.experiences-heading > p { margin-bottom: 8px; }
.experience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.experience-card { position: relative; min-height: 295px; padding: 28px; background: var(--black); border: 1px solid rgba(245,236,228,0.08); overflow: hidden; transition: border-color 180ms ease, transform 180ms ease; }
.experience-card::before { content: ""; position: absolute; right: -60px; bottom: -70px; width: 220px; height: 220px; border: 1px solid rgba(245,236,228,0.06); transform: rotate(30deg); }
.experience-card:hover { transform: translateY(-4px); border-color: rgba(252,106,10,0.38); }
.experience-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 46px; color: rgba(245,236,228,0.38); font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.15em; }
.accent { display: block; width: 44px; height: 3px; }
.accent-teal { background: var(--teal-bright); }
.accent-orange { background: var(--orange); }
.experience-card h3 { margin-bottom: 16px; }
.experience-card > p { max-width: 560px; }
.tag-list { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.tag-list li { padding: 6px 8px; border: 1px solid var(--line); color: rgba(245,236,228,0.58); font-size: 0.7rem; }
.section-action { margin-top: 34px; }

/* Approach */
.approach { padding: 126px 0; }
.approach-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(54px, 8vw, 120px); align-items: start; }
.approach .section-label { color: var(--burnt-orange); }
.approach h2 { color: var(--black); }
.approach-intro > p:last-child { color: #5f5a56; max-width: 520px; }
.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(13,13,15,0.2); border-left: 1px solid rgba(13,13,15,0.2); }
.principle-grid article { min-height: 235px; padding: 28px; border-right: 1px solid rgba(13,13,15,0.2); border-bottom: 1px solid rgba(13,13,15,0.2); }
.principle-grid span { color: var(--burnt-orange); font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.16em; }
.principle-grid h3 { color: var(--black); margin: 34px 0 14px; font-size: 1.2rem; letter-spacing: -0.025em; }
.principle-grid p { color: #5f5a56; font-size: 0.88rem; }

/* About */
.about { padding: 124px 0; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; align-items: center; gap: clamp(50px, 8vw, 112px); }
.about-mark { display: grid; place-items: center; }
.about-mark-frame { width: min(100%, 430px); aspect-ratio: 0.92; display: grid; place-items: center; background: #070708; border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }
.about-mark picture { display: contents; }
.about-mark img { width: 82%; }
.about-copy h2 { margin-bottom: 28px; }
.about-copy p { max-width: 680px; }
.about-copy .text-link { margin-top: 18px; }

/* Contact */
.contact { padding: 124px 0 118px; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 0.76fr 1.24fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { max-width: 500px; }
.contact-copy > p { max-width: 520px; }
.contact-email { display: inline-block; margin: 13px 0 30px; color: var(--orange); font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; }
.contact-note { display: grid; grid-template-columns: 26px 1fr; gap: 14px; max-width: 440px; padding-top: 23px; border-top: 1px solid var(--line); }
.contact-note span { width: 10px; height: 10px; margin-top: 8px; background: var(--teal); transform: rotate(45deg); }
.contact-note p { font-size: 0.83rem; }
.form-panel { padding: clamp(24px, 4vw, 46px); background: rgba(8,8,9,0.92); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid--two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 19px; }
.field label { display: block; margin-bottom: 8px; color: rgba(245,236,228,0.78); font-family: var(--font-display); font-size: 0.73rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.field label span { color: var(--orange); }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(245,236,228,0.16);
  border-radius: 0;
  background: #121214;
  color: var(--ivory);
  padding: 13px 14px;
  transition: border-color 160ms ease, background 160ms ease;
}
input, select { min-height: 50px; }
textarea { resize: vertical; min-height: 160px; }
input:hover, select:hover, textarea:hover { border-color: rgba(245,236,228,0.3); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--teal-bright); background: #151517; box-shadow: 0 0 0 2px rgba(8,167,183,0.15); }
[aria-invalid="true"] { border-color: #ff785e; }
.field-error { min-height: 1em; margin: 5px 0 0; color: #ff927c; font-size: 0.74rem; line-height: 1.4; }
.field-meta { display: flex; justify-content: space-between; gap: 14px; align-items: start; }
.field-meta > span { margin-top: 6px; color: rgba(245,236,228,0.38); font-size: 0.7rem; white-space: nowrap; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.privacy-check { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; }
.privacy-check input { width: 18px; min-height: 18px; margin: 4px 0 0; accent-color: var(--orange); }
.privacy-check label { color: rgba(245,236,228,0.64); font-size: 0.78rem; }
.privacy-check a { color: var(--ivory); text-decoration: underline; text-underline-offset: 3px; }
.turnstile-wrap { min-height: 72px; margin: 22px 0; }
.turnstile-setup { margin: 0; padding: 12px; border-left: 2px solid var(--orange); color: rgba(245,236,228,0.68); background: rgba(252,106,10,0.06); font-size: 0.78rem; }
.turnstile-setup code { color: var(--ivory); }
.submit-button { min-width: 220px; }
.submit-button.is-loading .submit-label { opacity: 0.55; }
.submit-spinner { display: none; width: 15px; height: 15px; border: 2px solid rgba(13,13,15,0.35); border-top-color: var(--black); border-radius: 50%; animation: spin 700ms linear infinite; }
.submit-button.is-loading .submit-spinner { display: block; }
.form-status { margin: 16px 0 0; min-height: 1.4em; font-size: 0.86rem; }
.form-status.is-success { color: #70d5c7; }
.form-status.is-error { color: #ff927c; }
.noscript-note { margin-top: 16px; color: var(--ivory-soft); font-size: 0.82rem; }
.noscript-note a { color: var(--orange); }
@keyframes spin { to { transform: rotate(360deg); } }

/* Footer */
.site-footer { padding: 40px 0; background: #060607; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 0.7fr 1.3fr 0.8fr; gap: 42px; align-items: start; }
.footer-brand { width: 190px; }
.footer-brand picture { display: block; }
.footer-details p, .footer-links p, .footer-links a { margin: 0 0 6px; color: rgba(245,236,228,0.48); font-size: 0.72rem; }
.footer-details strong { color: rgba(245,236,228,0.82); letter-spacing: 0.06em; }
.footer-links { display: grid; justify-items: end; }
.footer-links a { color: rgba(245,236,228,0.72); }
.footer-links a:hover { color: var(--orange); }

/* Legal and error pages */
.legal-page { min-height: 100vh; padding: 150px 0 100px; }
.legal-shell { max-width: 860px; }
.legal-page h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin-bottom: 22px; }
.legal-lead { font-size: 1.12rem; max-width: 720px; margin-bottom: 64px; }
.legal-page section { padding: 27px 0; border-top: 1px solid var(--line); }
.legal-page section h2 { font-size: 1.55rem; letter-spacing: -0.025em; }
.legal-page section p { max-width: 760px; }
.legal-page section a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal-page .button { margin-top: 35px; }
.error-page { min-height: 100svh; display: grid; place-items: center; padding: 30px; }
.error-card { max-width: 700px; text-align: center; }
.error-card img { width: 190px; margin: 0 auto 30px; }
.error-card h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); }
.error-card p:not(.section-label) { margin-inline: auto; max-width: 520px; }
.error-card .button { margin-top: 22px; }

/* Motion */
[data-reveal] { transition: transform 600ms cubic-bezier(.2,.8,.2,1), opacity 600ms ease; }
[data-reveal].is-revealed { animation: subtle-reveal 620ms cubic-bezier(.2,.8,.2,1) both; }
@keyframes subtle-reveal { from { opacity: 0.2; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 1100px) {
  :root { --shell: min(100% - 34px, 980px); }
  .primary-nav { gap: 13px; }
  .primary-nav a { font-size: 0.73rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr); }
  .hero-visual { width: 54vw; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-card--alchemy { grid-column: 1 / -1; width: calc(50% - 9px); justify-self: center; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  html:not(.js) .site-header { position: relative; }
  html:not(.js) .header-inner { flex-wrap: wrap; padding-block: 12px; }
  html:not(.js) .primary-nav { width: 100%; flex-wrap: wrap; padding-bottom: 8px; }
  html:not(.js) .primary-nav .nav-cta { margin-left: auto; }
  .js .nav-toggle { display: block; }
  .js .primary-nav {
    position: fixed;
    z-index: 999;
    top: 68px;
    left: 17px;
    right: 17px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(13,13,15,0.98);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }
  .js .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .js .primary-nav a { padding: 12px; font-size: 0.9rem; border-bottom: 1px solid var(--line); }
  .js .primary-nav a:last-child { border-bottom: 0; margin-top: 10px; text-align: center; }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(6px) rotate(45deg); }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .js .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: calc(var(--header-height) + 56px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 780px; margin-top: 20px; justify-self: center; }
  .hero-visual img { width: 112%; margin-left: -6%; }
  .hero-audience { margin-top: 25px; }
  .experiences-heading, .approach-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .experiences-heading { gap: 20px; }
  .approach-grid, .about-grid, .contact-grid { gap: 52px; }
  .contact-copy { position: static; }
  .about-mark { order: 2; }
  .about-copy { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { justify-items: start; }
}

@media (max-width: 700px) {
  :root { --shell: calc(100% - 30px); }
  h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.6rem); }
  .brand { width: 178px; }
  .hero { min-height: auto; padding-bottom: 76px; }
  .hero-visual { margin-top: 28px; }
  .scroll-cue { display: none; }
  .offer, .experiences, .approach, .about, .contact { padding-block: 88px; }
  .pillar-grid, .experience-grid { grid-template-columns: 1fr; }
  .pillar-card--alchemy { grid-column: auto; width: auto; }
  .pillar-image { aspect-ratio: 1.35 / 0.72; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: auto; }
  .form-grid--two { grid-template-columns: 1fr; gap: 0; }
  .form-panel { padding: 23px 18px; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-items: start; }
  .footer-brand { width: 180px; }
  .site-header--solid .button { min-width: auto; font-size: 0.72rem; padding-inline: 10px; }
}

@media (max-width: 420px) {
  .brand { width: 150px; }
  .site-header--solid .button { display: none; }
  .hero-lead { font-size: 0.98rem; }
  .experience-card { min-height: 0; }
}

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