:root {
  --bg: #09090a;
  --bg-soft: #101012;
  --surface: #151517;
  --surface-2: #1b1b1f;
  --text: #f8f5ee;
  --muted: #b9b4ab;
  --subtle: #8b867e;
  --gold: #e5b83d;
  --gold-2: #f4cf6c;
  --orange: #ef912d;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(229,184,61,.35);
  --shadow: 0 28px 90px rgba(0,0,0,.42);
  --radius: 26px;
  --max: 1200px;
  --header-height: 82px;
}
html[data-theme="light"] {
  --bg: #f6f0e5;
  --bg-soft: #eee5d6;
  --surface: #fffdf8;
  --surface-2: #f4ecdf;
  --text: #181512;
  --muted: #5d5851;
  --subtle: #777168;
  --line: rgba(24,21,18,.13);
  --line-strong: rgba(181,126,21,.34);
  --shadow: 0 28px 80px rgba(75,52,19,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 3%, rgba(229,184,61,.13), transparent 26%),
    radial-gradient(circle at 8% 22%, rgba(239,145,45,.07), transparent 24%),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .5;
  background-image:
    linear-gradient(115deg, transparent 0 56%, rgba(255,255,255,.018) 56% 56.5%, transparent 56.5% 100%),
    radial-gradient(circle at 50% 0, rgba(255,255,255,.018), transparent 45%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .3;
  background-image: linear-gradient(rgba(255,255,255,.012) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}
html[data-theme="light"] body::before, html[data-theme="light"] body::after { opacity: .16; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 42px), var(--max)); margin-inline: auto; }
.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; }
.hidden { position: absolute; left: -10000px; }
.skip-link { position: fixed; left: 14px; top: -60px; z-index: 1000; background: var(--gold); color: #111; font-weight: 800; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 14px; }
.progress { position: fixed; inset: 0 0 auto; height: 3px; z-index: 1001; background: transparent; }
.progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--orange)); }
.site-header { position: sticky; top: 0; z-index: 100; min-height: var(--header-height); border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--bg) 84%, transparent); backdrop-filter: blur(22px); }
.nav-wrap { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; min-width: 172px; }
.brand img { width: 158px; height: 47px; object-fit: contain; object-position: left center; }
.nav-links { display: flex; align-items: center; gap: 19px; font-size: .72rem; font-weight: 850; letter-spacing: .095em; text-transform: uppercase; }
.nav-links a { color: var(--muted); transition: color .2s ease, transform .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-2); transform: translateY(-1px); }
.nav-cta { color: var(--text) !important; border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 14px; background: color-mix(in srgb, var(--surface) 72%, transparent); }
.menu-button { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 10px; width: 44px; height: 42px; cursor: pointer; }
.theme-toggle { display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 8px 11px; cursor: pointer; text-transform: uppercase; font-size: .66rem; font-weight: 900; letter-spacing: .08em; }
.theme-icon { color: var(--gold); }
.hero { position: relative; isolation: isolate; overflow: hidden; padding: 64px 0 56px; }
.hero-glow { position: absolute; z-index: -1; width: 520px; height: 520px; right: 4vw; top: 20px; border-radius: 50%; background: radial-gradient(circle, rgba(229,184,61,.14), rgba(239,145,45,.04) 42%, transparent 70%); filter: blur(10px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr); align-items: center; gap: clamp(48px, 7vw, 96px); }
.eyebrow { margin: 0 0 14px; color: var(--gold-2); font-size: .72rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; }
.eyebrow::before { content: none; display: none; }
.hero-kicker { margin: 0 0 5px; color: var(--muted); font-weight: 850; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; }
h1, h2, h3 { margin-top: 0; line-height: 1.06; letter-spacing: -.038em; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.7rem, 7.1vw, 6.65rem); margin-bottom: 20px; }
h1 span { color: var(--gold); text-shadow: 0 0 40px rgba(229,184,61,.12); }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.4rem, 4.7vw, 4.35rem); margin-bottom: 18px; }
h3 { font-size: 1.25rem; }
.hero-text { max-width: 740px; margin: 0 0 27px; color: var(--muted); font-size: clamp(1rem, 1.55vw, 1.16rem); }
.hero-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 19px; border-radius: 999px; border: 1px solid transparent; font-weight: 850; font-size: .84rem; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #17120a; box-shadow: 0 14px 34px rgba(229,184,61,.18); }
.button.secondary { border-color: var(--line); background: color-mix(in srgb, var(--surface) 90%, transparent); color: var(--text); }
.button.secondary:hover { border-color: var(--line-strong); }
.text-button { color: var(--gold-2); font-size: .85rem; font-weight: 850; padding: 10px 5px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 680px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof div { padding: 15px 18px 15px 0; border-right: 1px solid var(--line); }
.hero-proof div + div { padding-left: 18px; }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { display: block; color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; font-size: 1.42rem; line-height: 1; }
.hero-proof span { display: block; margin-top: 6px; color: var(--subtle); font-size: .72rem; line-height: 1.35; }
.portrait-card { position: relative; padding: 15px; border: 1px solid var(--line-strong); border-radius: 28px; background: linear-gradient(160deg, color-mix(in srgb, var(--surface) 94%, var(--gold) 6%), var(--surface)); box-shadow: var(--shadow); transform: rotate(.2deg); }
.portrait-card::before { content: ""; position: absolute; inset: 12px -10px -10px 12px; border: 1px solid rgba(229,184,61,.12); border-radius: 28px; z-index: -1; }
.portrait-badge { position: absolute; top: 28px; left: -26px; z-index: 4; min-width: 126px; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 12px; background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: 0 16px 38px rgba(0,0,0,.26); backdrop-filter: blur(14px); }
.portrait-badge span, .portrait-badge strong { display: block; }
.portrait-badge span { color: var(--subtle); font-size: .62rem; text-transform: uppercase; letter-spacing: .13em; }
.portrait-badge strong { color: var(--gold-2); font-size: .8rem; }
.portrait-frame { position: relative; overflow: hidden; border-radius: 19px; background: linear-gradient(145deg, #f7f3ec, #dcd6cc); aspect-ratio: 1 / 1.04; }
.portrait-frame::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.32), inset 0 -80px 80px rgba(0,0,0,.08); pointer-events: none; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; transform: scale(1.025); }
.portrait-accent { position: absolute; width: 180px; height: 180px; right: -52px; top: -58px; border-radius: 50%; background: radial-gradient(circle, rgba(229,184,61,.44), transparent 66%); z-index: 1; pointer-events: none; }
.portrait-caption { padding: 18px 6px 4px; }
.portrait-caption p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }
.portrait-title { color: var(--text) !important; font-weight: 850; font-size: .86rem !important; }
.results { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--surface) 76%, transparent); }
.result-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.result-grid article { position: relative; min-height: 174px; padding: 29px 24px; border-right: 1px solid var(--line); overflow: hidden; }
.result-grid article:last-child { border-right: 0; }
.result-grid article::after { content: ""; position: absolute; width: 90px; height: 90px; right: -45px; bottom: -45px; border-radius: 50%; background: rgba(229,184,61,.05); transition: transform .25s ease; }
.result-grid article:hover::after { transform: scale(1.35); }
.result-index { display: block; color: var(--subtle); font-size: .65rem; letter-spacing: .14em; font-weight: 900; margin-bottom: 22px; }
.result-grid strong { display: block; color: var(--gold-2); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.72rem, 2.8vw, 2.65rem); line-height: 1.05; }
.result-grid p { margin: 11px 0 0; color: var(--muted); font-size: .83rem; line-height: 1.45; }
.section { padding: 96px 0; }
.section.soft { background: color-mix(in srgb, var(--bg-soft) 86%, transparent); border-block: 1px solid var(--line); }
.two-column { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(46px, 8vw, 110px); align-items: start; }
.section-copy { max-width: 700px; }
.section-copy p { color: var(--muted); }
.section-copy .lead { color: var(--text); font-size: 1.3rem; font-weight: 720; }
.heading-row { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 46px; margin-bottom: 40px; }
.heading-row > p { color: var(--muted); max-width: 430px; justify-self: end; }
.section-link { color: var(--gold-2); font-weight: 850; justify-self: end; }
.philosophy-section { padding-top: 28px; }
.philosophy-card { position: relative; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; border: 1px solid var(--line-strong); border-radius: var(--radius); padding: clamp(32px, 5vw, 60px); background: linear-gradient(135deg, rgba(229,184,61,.09), var(--surface)); box-shadow: var(--shadow); }
.philosophy-card::after { content: "AN"; position: absolute; right: 24px; bottom: -42px; color: rgba(229,184,61,.04); font-family: Georgia, "Times New Roman", serif; font-size: 10rem; font-weight: 900; line-height: 1; }
.philosophy-card blockquote { position: relative; z-index: 1; margin: 0; padding-left: 30px; border-left: 2px solid var(--gold); color: var(--muted); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.45; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.skill-card { position: relative; min-height: 238px; padding: 27px; border-radius: 20px; border: 1px solid var(--line); background: linear-gradient(160deg, var(--surface), color-mix(in srgb, var(--surface) 94%, var(--gold) 6%)); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; overflow: hidden; }
.skill-card::after { content: ""; position: absolute; width: 120px; height: 120px; right: -70px; top: -70px; border-radius: 50%; border: 1px solid rgba(229,184,61,.1); }
.skill-card:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: 0 20px 45px rgba(0,0,0,.16); }
.skill-card span { display: block; color: var(--gold); font-size: .7rem; font-weight: 900; letter-spacing: .15em; margin-bottom: 34px; }
.skill-card p { color: var(--muted); margin-bottom: 0; }
.experience-list { display: grid; gap: 18px; }
.experience-item { position: relative; display: grid; grid-template-columns: 210px 1fr; gap: 38px; padding: 31px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); overflow: hidden; }
.experience-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(var(--gold), transparent); opacity: .45; }
.experience-item.featured-role { border-color: var(--line-strong); background: linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, var(--gold) 8%), var(--surface)); }
.experience-meta { display: flex; flex-direction: column; gap: 8px; color: var(--subtle); font-size: .81rem; font-weight: 760; }
.company { margin: 0 0 5px; color: var(--gold-2); text-transform: uppercase; letter-spacing: .12em; font-size: .73rem; font-weight: 900; }
.experience-main h3 { margin-bottom: 10px; font-size: 1.55rem; }
.experience-main > p:not(.company), .experience-main li { color: var(--muted); }
.experience-main ul { margin: 16px 0 0; padding-left: 20px; }
.earlier-experience { border: 1px solid var(--line); border-radius: 20px; background: var(--surface); overflow: hidden; }
.earlier-experience summary { cursor: pointer; padding: 23px 27px; font-weight: 850; }
.earlier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.earlier-grid article { padding: 26px; border-right: 1px solid var(--line); }
.earlier-grid article:last-child { border-right: 0; }
.earlier-grid h3 { margin-bottom: 8px; }
.earlier-grid p:last-child { color: var(--muted); font-size: .88rem; }
.customer-voice { border-block: 1px solid var(--line); background: radial-gradient(circle at 92% 10%, rgba(229,184,61,.08), transparent 28%), color-mix(in srgb, var(--bg-soft) 88%, transparent); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-card { display: flex; flex-direction: column; min-height: 330px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.review-card-primary { border-color: var(--line-strong); background: linear-gradient(145deg, rgba(229,184,61,.1), var(--surface) 45%); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.review-mark { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 4rem; line-height: .7; }
.review-location { color: var(--gold-2); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; text-align: right; }
.review-card blockquote { margin: 40px 0 20px; color: var(--text); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2vw, 1.72rem); line-height: 1.36; }
.review-context { margin: auto 0 20px; color: var(--muted); font-size: .82rem; }
.review-card a { color: var(--gold-2); font-size: .78rem; font-weight: 850; }
.review-note { margin: 18px 0 0; color: var(--subtle); font-size: .72rem; }
.case-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.case-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); padding: 27px; }
.case-label { color: var(--gold-2); text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; font-weight: 900; }
.case-card h3 { font-size: 1.45rem; margin-bottom: 21px; }
.case-card dl { margin: auto 0 0; display: grid; gap: 16px; }
.case-card dl div { border-top: 1px solid var(--line); padding-top: 14px; }
.case-card dt { color: var(--text); font-size: .74rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.case-card dd { margin: 5px 0 0; color: var(--muted); font-size: .86rem; }
.venture-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; border: 1px solid var(--line-strong); background: linear-gradient(145deg, var(--surface), color-mix(in srgb, var(--surface) 89%, var(--gold) 11%)); padding: clamp(32px, 5vw, 58px); border-radius: var(--radius); }
.venture-card::after { content: "ARINAZ"; position: absolute; right: 20px; bottom: -28px; color: rgba(229,184,61,.045); font-family: Georgia, "Times New Roman", serif; font-size: clamp(4rem, 10vw, 8rem); font-weight: 900; line-height: 1; }
.venture-card > * { position: relative; z-index: 1; }
.venture-card p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.contact-section { border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 8vw, 96px); align-items: start; }
.contact-copy > p { color: var(--muted); }
.contact-links { display: flex; flex-direction: column; gap: 9px; margin-top: 24px; }
.contact-links a { color: var(--gold-2); font-weight: 820; }
.contact-form { display: grid; gap: 16px; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { color: var(--text); font-size: .82rem; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid var(--line); background: var(--bg-soft); color: var(--text); border-radius: 12px; padding: 12px 13px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(229,184,61,.12); }
.contact-form textarea { resize: vertical; }
.button.full { width: 100%; }
.sensitive-note, .form-note { margin: 0; color: var(--subtle); font-size: .72rem; }
.consent-check { display: grid; grid-template-columns: 19px 1fr; gap: 10px; align-items: start; color: var(--muted) !important; font-weight: 650 !important; }
.consent-check input { margin: 2px 0 0; width: 17px; height: 17px; accent-color: var(--gold); }
.consent-check a { color: var(--gold-2); text-decoration: underline; }
footer { border-top: 1px solid var(--line); padding: 26px 0; background: color-mix(in srgb, var(--bg-soft) 86%, transparent); }
.footer-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-brand img { width: 126px; height: 38px; object-fit: contain; object-position: left center; }
.footer-row > p { color: var(--subtle); font-size: .78rem; }
.footer-links { display: flex; align-items: center; justify-content: flex-end; gap: 15px; color: var(--muted); font-size: .75rem; }
.footer-cookie-button { border: 0; padding: 0; background: none; color: inherit; cursor: pointer; }
.cookie-banner { position: fixed; right: 18px; bottom: 18px; z-index: 200; width: min(420px, calc(100% - 36px)); display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 15px; background: color-mix(in srgb, var(--surface) 95%, transparent); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-size: .78rem; }
.cookie-banner p { margin: 2px 0 0; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.cookie-actions { display: flex; align-items: center; gap: 9px; }
.cookie-actions a { color: var(--gold-2); font-size: .68rem; font-weight: 800; }
.cookie-accept { min-height: 33px; padding: 6px 12px; font-size: .7rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.legal-main { padding: 78px 0 96px; }
.legal-shell { width: min(calc(100% - 40px), 900px); margin-inline: auto; }
.legal-hero { margin-bottom: 36px; }
.legal-updated { color: var(--subtle); }
.legal-content { border: 1px solid var(--line); border-radius: 22px; background: var(--surface); padding: clamp(26px, 5vw, 52px); }
.legal-content section + section { border-top: 1px solid var(--line); padding-top: 24px; margin-top: 24px; }
.legal-content h2 { font-family: inherit; font-size: 1.45rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--gold-2); text-decoration: underline; }
.legal-callout { border-left: 3px solid var(--gold); padding: 2px 0 2px 18px; margin-bottom: 26px; }
.legal-table { width: 100%; border-collapse: collapse; margin-top: 18px; font-size: .84rem; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.status-page { min-height: calc(100vh - var(--header-height)); display: grid; place-items: center; padding: 60px 20px; }
.status-card { max-width: 680px; text-align: center; border: 1px solid var(--line-strong); border-radius: 24px; background: var(--surface); padding: 48px; box-shadow: var(--shadow); }
.status-card h1 { font-size: clamp(2.7rem, 7vw, 5rem); }
.status-card p { color: var(--muted); }
@media (max-width: 1080px) {
  .nav-links { gap: 14px; font-size: .68rem; }
  .brand img { width: 142px; }
}
@media (max-width: 980px) {
  .nav-links { position: fixed; top: var(--header-height); left: 20px; right: 20px; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a, .theme-toggle { width: 100%; justify-content: center; padding: 13px; }
  .menu-button { display: inline-grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 42px; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
  .result-grid article:nth-child(2) { border-right: 0; }
  .result-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .case-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card:last-child, .review-card:last-child { grid-column: 1 / -1; }
  .earlier-grid { grid-template-columns: 1fr; }
  .earlier-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .earlier-grid article:last-child { border-bottom: 0; }
}
@media (max-width: 760px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 124px; height: 37px; }
  .hero { padding: 46px 0 42px; }
  .hero-grid, .two-column, .heading-row, .philosophy-card, .experience-item, .venture-card, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .portrait-card { order: 2; max-width: 430px; margin-inline: auto; }
  .portrait-badge { left: 12px; top: 22px; }
  h1 { font-size: clamp(3.2rem, 16vw, 5.25rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.55rem); }
  .hero-proof { grid-template-columns: 1fr; border-bottom: 0; }
  .hero-proof div, .hero-proof div + div { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .result-grid { grid-template-columns: 1fr; }
  .result-grid article { border-right: 0; border-bottom: 1px solid var(--line); min-height: auto; }
  .result-grid article:last-child { border-bottom: 0; }
  .section { padding: 74px 0; }
  .heading-row > p, .section-link { justify-self: start; }
  .philosophy-card { gap: 25px; }
  .philosophy-card blockquote { padding-left: 20px; }
  .card-grid, .case-grid, .review-grid { grid-template-columns: 1fr; }
  .case-card:last-child, .review-card:last-child { grid-column: auto; }
  .review-card { min-height: auto; }
  .experience-item { gap: 16px; padding: 25px; }
  .experience-meta { flex-direction: row; justify-content: space-between; }
  .form-row { grid-template-columns: 1fr; }
  .footer-row { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
