:root {
  --navy: #0e1b3d;
  --navy-2: #14264e;
  --navy-3: #20345d;
  --gold: #c8a65a;
  --gold-bright: #dfc27a;
  --gold-dark: #8a6b2f;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --mist: #eef0f4;
  --ink: #111a2f;
  --muted: #626b7e;
  --line: rgba(14, 27, 61, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 24px 70px rgba(15, 30, 65, 0.12);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); 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, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }
::selection { background: var(--gold); color: var(--navy); }

.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 9999; transform: translateY(-150%); background: var(--paper); color: var(--navy); padding: 12px 18px; border-radius: 999px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.loading-screen { position: fixed; inset: 0; z-index: 9998; display: grid; place-items: center; background: var(--navy); transition: opacity .55s ease, visibility .55s ease; }
.loading-screen.loaded { opacity: 0; visibility: hidden; }
.loading-mark { width: 90px; aspect-ratio: 1; border: 1px solid rgba(200, 166, 90, .5); border-radius: 50%; display: grid; place-items: center; position: relative; color: var(--gold-bright); animation: breathe 1.2s ease-in-out infinite; }
.loading-mark span { font-family: var(--serif); font-size: 2.8rem; }
.loading-mark i { position: absolute; font-style: normal; font-size: .9rem; }
@keyframes breathe { 50% { transform: scale(1.04); box-shadow: 0 0 45px rgba(200,166,90,.15); } }

.site-header { position: fixed; top: 0; inset-inline: 0; z-index: 1000; color: #fff; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-header.scrolled { background: rgba(14, 27, 61, .92); border-color: rgba(255,255,255,.1); box-shadow: 0 10px 30px rgba(5,12,29,.18); backdrop-filter: blur(16px); }
.nav-shell { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
/* display:inline-block matters - as a bare inline span, width/height are
   ignored, the absolutely positioned logo inside escapes the circle and
   overlaps whatever follows it (as it did in the chat panel). */
.brand-logo-crop { display: inline-block; vertical-align: middle; width: 44px; height: 44px; flex: 0 0 44px; overflow: hidden; border-radius: 50%; position: relative; background: var(--ivory); box-shadow: 0 0 0 1px rgba(223,194,122,.55); }
.brand-logo-crop img { position: absolute; width: 96.5px; max-width: none; height: auto; left: -26.25px; top: -12px; }
.brand-name { color: #fff; font-family: var(--serif); font-size: .72rem; line-height: 1.35; letter-spacing: .21em; white-space: nowrap; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2vw, 28px); margin-left: auto; }
.site-nav a { color: rgba(255,255,255,.76); font-size: .78rem; letter-spacing: .02em; transition: color .2s ease; }
.site-nav a:hover { color: var(--gold-bright); }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; color: white; place-items: center; }
.menu-toggle span:not(.sr-only) { position: absolute; width: 18px; height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-toggle span:last-child { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.button { min-height: 52px; padding: 0 24px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; font-weight: 750; font-size: .82rem; letter-spacing: .01em; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .75rem; }
.button-gold { color: var(--navy); background: var(--gold-bright); box-shadow: 0 10px 30px rgba(200,166,90,.18); }
.button-gold:hover { background: #edd18b; box-shadow: 0 14px 36px rgba(200,166,90,.28); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.button-navy { background: var(--navy); color: #fff; }
.button-navy:hover { background: var(--navy-2); box-shadow: 0 14px 30px rgba(14,27,61,.2); }
.button-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button-row.centered { justify-content: center; }

.section { padding: 118px 0; }
.section-navy { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.section-ivory { background: var(--ivory); }
.section-light { background: var(--paper); }
.eyebrow { margin: 0 0 22px; color: var(--gold-bright); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { margin-right: 10px; }
.eyebrow-dark { color: var(--gold-dark); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
h1 { font-size: clamp(3.7rem, 6.2vw, 6.8rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.8rem, 4.6vw, 5rem); margin-bottom: 24px; }
h1 em, h2 em { color: var(--gold-bright); font-weight: inherit; }
.section-light h2 em, .section-ivory h2 em, .fit-section h2 em { color: var(--gold-dark); }

.hero { min-height: 720px; padding: 142px 0 58px; isolation: isolate; }
.hero-backdrop { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--navy); }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,16,40,.96) 0%, rgba(10,21,49,.78) 44%, rgba(10,21,49,.42) 72%, rgba(10,21,49,.34) 100%), linear-gradient(180deg, rgba(14,27,61,.1) 0%, rgba(14,27,61,.12) 54%, rgba(14,27,61,.92) 100%); pointer-events: none; }
.hero-people-crop { position: absolute; right: 0; bottom: 0; height: 82%; aspect-ratio: 960 / 773; overflow: hidden; }
.hero-people-crop img { width: 211.8%; max-width: none; height: 100%; object-fit: fill; object-position: left center; opacity: .96; filter: saturate(.92) contrast(1.03); }
.hero-glow { position: absolute; z-index: 1; width: 700px; height: 700px; left: -260px; bottom: -370px; border-radius: 50%; background: radial-gradient(circle, rgba(200,166,90,.14), transparent 64%); pointer-events: none; }
.hero-stage { position: relative; z-index: 2; }
.hero-copy { width: min(720px, 62%); padding: 0; display: grid; gap: 20px; border: 0; background: transparent; text-shadow: 0 2px 24px rgba(3,10,27,.44); }
.hero-message h1 { margin-bottom: 0; font-size: clamp(4rem, 6vw, 6.65rem); }
.hero-details { max-width: 690px; padding-bottom: 8px; }
.hero-lede { max-width: 670px; color: rgba(255,255,255,.84); font-size: 1.02rem; line-height: 1.78; margin-bottom: 30px; }
.trust-line { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.58); font-size: .78rem; margin: 30px 0 0; }
.trust-line span { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 5px rgba(200,166,90,.1); }
.signal-bar { position: relative; z-index: 2; margin-top: 30px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(9,20,47,.18); backdrop-filter: blur(3px); }
.signal-bar div { min-height: 100px; padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.1); }
.signal-bar div:last-child { border: 0; }
.signal-bar strong { font-family: var(--serif); color: var(--ivory); font-size: 1.22rem; font-weight: 400; }
.signal-bar span { color: rgba(255,255,255,.5); font-size: .62rem; letter-spacing: .075em; text-transform: uppercase; }

.split-layout { display: grid; grid-template-columns: 1fr .85fr; gap: 110px; align-items: end; }
.about-copy { padding-bottom: 14px; color: var(--muted); }
.about-copy .large-copy { color: var(--ink); font-family: var(--serif); font-size: 1.65rem; line-height: 1.48; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 72px; }
.value-card { padding: 34px; border-radius: var(--radius); background: rgba(255,255,255,.54); border: 1px solid rgba(14,27,61,.1); box-shadow: 0 20px 50px rgba(14,27,61,.05); }
.card-number { color: var(--gold-dark); font-size: .7rem; letter-spacing: .14em; }
.value-card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; margin: 56px 0 12px; }
.value-card p { color: var(--muted); margin: 0; font-size: .9rem; }

.manifesto { padding: 120px 0 150px; }
.manifesto-grid { position: relative; z-index: 1; }
.manifesto-grid > p { display: inline-block; margin: 0 10px 40px 0; padding: 9px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: rgba(255,255,255,.56); font-size: .74rem; }
.manifesto h2 { max-width: 960px; margin: 0; }
.horizon { position: absolute; width: 760px; height: 380px; right: -100px; bottom: -190px; border: 1px solid rgba(200,166,90,.22); border-radius: 50% 50% 0 0; }
.horizon span { position: absolute; width: 360px; height: 180px; left: 200px; top: 199px; border: 1px solid rgba(200,166,90,.45); border-radius: 50% 50% 0 0; box-shadow: 0 -25px 80px rgba(200,166,90,.1); }

.section-intro { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.section-intro h2 { margin-bottom: 0; }
.section-intro > p, .section-intro > .text-link { color: var(--muted); margin-bottom: 12px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card { padding: 36px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200,166,90,.5); }
.service-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 0 60px; background: var(--navy); color: #fff; }
.service-card.featured .service-top, .service-card.featured h3 { grid-column: 1; }
.service-card.featured p { grid-column: 1; color: rgba(255,255,255,.62); }
.service-card.featured ul { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
.service-top { display: flex; align-items: center; justify-content: space-between; color: var(--gold-dark); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.service-card.featured .service-top { color: var(--gold-bright); }
.service-icon { width: 42px; height: 42px; border: 1px solid currentColor; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: .67rem; }
.service-card h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin: 36px 0 12px; }
.service-card > p { color: var(--muted); max-width: 560px; }
.service-card ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.service-card li { padding: 12px 14px; border-radius: 10px; background: rgba(14,27,61,.045); font-size: .78rem; }
.service-card.featured li { background: rgba(255,255,255,.07); color: rgba(255,255,255,.78); }

.industries-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: center; }
.industries-copy > p:not(.eyebrow) { color: var(--muted); max-width: 520px; }
.text-link { border: 0; padding: 0 0 4px; background: transparent; color: var(--navy); border-bottom: 1px solid var(--gold); font-weight: 800; cursor: pointer; }
.industry-list { display: flex; flex-wrap: wrap; gap: 12px; align-content: center; }
.industry-list span { padding: 14px 20px; border: 1px solid rgba(14,27,61,.13); border-radius: 999px; background: rgba(255,255,255,.42); color: var(--navy); font-family: var(--serif); font-size: 1.02rem; transition: background .2s ease, color .2s ease, transform .2s ease; }
.industry-list span:hover { transform: translateY(-3px); background: var(--navy); color: #fff; }

.comparison-heading { text-align: center; max-width: 780px; }
.comparison-heading > p:last-child { color: rgba(255,255,255,.6); }
.comparison-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; margin-top: 58px; align-items: stretch; }
.comparison-card { border-radius: 30px; padding: 44px; }
.hiraya-card { background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); border: 1px solid rgba(200,166,90,.4); backdrop-filter: blur(10px); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.marketplace-card { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1); }
.comparison-brand { display: flex; align-items: center; gap: 18px; margin-bottom: 34px; }
.comparison-brand h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; margin: 0; }
.comparison-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.comparison-card li { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.comparison-card li:last-child { border: 0; }
.comparison-card li > span { color: var(--gold-bright); font-weight: 900; }
.comparison-card strong, .comparison-card small { display: block; }
.comparison-card small { color: rgba(255,255,255,.5); margin-top: 3px; }
.comparison-label { color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .12em; font-size: .67rem; margin-bottom: 42px; }
.marketplace-card li { color: rgba(255,255,255,.64); }

.process-line { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.process-line::before { content: ""; position: absolute; top: 26px; left: 7%; right: 7%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.process-line li { padding: 0 18px; position: relative; }
.process-line li > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); border: 1px solid var(--gold); color: var(--gold-dark); font-size: .66rem; font-weight: 800; position: relative; z-index: 1; }
.process-line h3 { margin: 30px 0 10px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.process-line p { color: var(--muted); font-size: .82rem; }

.roles-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.roles-header h2 { margin-bottom: 0; }
.role-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { min-height: 42px; padding: 0 16px; border-radius: 999px; border: 1px solid rgba(14,27,61,.14); background: rgba(255,255,255,.48); color: var(--navy); cursor: pointer; font-size: .74rem; }
.filter-button.active, .filter-button:hover { background: var(--navy); color: #fff; }
.role-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.role-card { min-height: 145px; padding: 28px 24px; display: grid; grid-template-columns: 44px 1fr; align-content: center; column-gap: 16px; border-bottom: 1px solid var(--line); transition: background .25s ease; }
.role-card:nth-child(odd) { border-right: 1px solid var(--line); }
.role-card:hover { background: rgba(255,255,255,.6); }
.role-card.hidden { display: none; }
.role-card > span { grid-row: 1 / span 2; color: var(--gold-dark); font-size: .7rem; }
.role-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; margin: 0; }
.role-card p { color: var(--muted); font-size: .75rem; margin: 3px 0 0; }

.fit-section { background: #f1ece2; }
.checklist-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 18px; }
.checklist-statement { min-height: 430px; padding: 40px; border-radius: var(--radius); background: var(--navy); color: white; display: flex; flex-direction: column; box-shadow: 0 30px 70px rgba(14,27,61,.14); }
.checklist-star { color: var(--gold-bright); font-size: 1.8rem; }
.checklist-kicker { margin: 38px 0 10px; color: var(--gold-bright); font-size: .66rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.checklist-statement h3 { margin: 0 0 18px; font-family: var(--serif); font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; line-height: 1.08; }
.checklist-statement > p:not(.checklist-kicker) { color: rgba(255,255,255,.64); }
.checklist-statement .text-link { margin-top: auto; align-self: flex-start; color: var(--gold-bright); }
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.checklist-card { min-height: 206px; padding: 28px; border: 1px solid rgba(14,27,61,.09); border-radius: var(--radius); background: rgba(255,255,255,.64); display: grid; grid-template-columns: 30px 1fr auto; gap: 16px; align-items: start; transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.checklist-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.86); box-shadow: 0 22px 50px rgba(14,27,61,.08); }
.checklist-card > span { color: var(--gold-dark); font-size: .64rem; letter-spacing: .12em; }
.checklist-card h3 { margin: 42px 0 8px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.checklist-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.checklist-card b { width: 28px; height: 28px; border: 1px solid rgba(138,107,47,.35); border-radius: 50%; display: grid; place-items: center; color: var(--gold-dark); font-size: .72rem; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { min-height: 330px; padding: 32px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: var(--ivory); }
.insight-card > span { color: var(--gold-dark); text-transform: uppercase; letter-spacing: .13em; font-size: .65rem; }
.insight-card h3 { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; margin: 54px 0 14px; line-height: 1.25; }
.insight-card p { color: var(--muted); }
.insight-card b { margin-top: auto; font-size: .76rem; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.faq-heading { position: sticky; top: 125px; align-self: start; }
.faq-heading > p:not(.eyebrow) { color: var(--muted); }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--navy); font-family: var(--serif); font-size: 1.25rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--sans); transition: transform .25s ease, background .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--navy); color: white; }
.faq-list details p { max-width: 720px; padding: 0 56px 24px 0; color: var(--muted); }

.final-cta { padding: 130px 0; text-align: center; }
.final-cta-inner { max-width: 900px; position: relative; z-index: 2; }
.final-cta-inner > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 32px; color: rgba(255,255,255,.64); }
.cta-star { position: absolute; top: 70px; left: 50%; transform: translateX(-50%); color: var(--gold-bright); }
.cta-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(200,166,90,.14); left: 50%; transform: translateX(-50%); bottom: -310px; }
.orbit-one { width: 800px; height: 520px; }
.orbit-two { width: 1120px; height: 700px; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 130px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-detail { padding: 18px 0; border-top: 1px solid var(--line); }
.contact-detail span, .contact-detail strong { display: block; }
.contact-detail span { color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-detail strong { color: var(--navy); margin-top: 5px; font-weight: 650; }
.contact-form { padding: 38px; border-radius: var(--radius); background: var(--ivory); border: 1px solid var(--line); box-shadow: var(--shadow); display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-size: .72rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid rgba(14,27,61,.14); border-radius: 11px; background: rgba(255,255,255,.72); color: var(--ink); padding: 13px 14px; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold-dark); box-shadow: 0 0 0 4px rgba(200,166,90,.14); }
.contact-form [aria-invalid="true"] { border-color: #a82d2d; box-shadow: 0 0 0 3px rgba(168,45,45,.1); }
.form-status { min-height: 24px; margin: 0; color: #7b2b2b; font-size: .76rem; }
.form-status.info { color: var(--navy); }
.form-status.success { color: #1f6b46; font-weight: 700; }
/* Spam honeypot: kept out of sight and out of the tab order, but not
   display:none, which some bots treat as a signal to skip the field. */
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; margin: 0 !important; }

.site-footer { background: #09142e; color: #fff; padding: 80px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.35fr repeat(3, .72fr) 1.15fr; gap: 42px; }
.footer-brand p, .footer-contact p { color: rgba(255,255,255,.46); font-size: .78rem; max-width: 270px; margin-top: 22px; }
.footer-logo { display: block; width: 220px; aspect-ratio: 1; overflow: hidden; border-radius: 18px; background: var(--ivory); box-shadow: 0 20px 55px rgba(0,0,0,.18); }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-top nav { display: flex; flex-direction: column; gap: 10px; }
.footer-top h2, .footer-contact h2 { font-family: var(--sans); color: var(--gold-bright); font-size: .67rem; text-transform: uppercase; letter-spacing: .13em; margin: 0 0 14px; }
.footer-top nav a { color: rgba(255,255,255,.58); font-size: .76rem; }
.footer-top nav a:hover { color: #fff; }
.newsletter-form { display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.22); }
.newsletter-form input { width: 100%; border: 0; outline: 0; background: transparent; color: white; padding: 12px 0; }
.newsletter-form button { width: 44px; height: 44px; border: 0; background: transparent; color: var(--gold-bright); cursor: pointer; }
.newsletter-status { min-height: 20px; margin: 8px 0 0 !important; color: var(--gold-bright) !important; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 68px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: .68rem; }
.footer-bottom div { display: flex; gap: 20px; }
.social-links { gap: 12px !important; align-items: center; }
.social-links a { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.62); transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease; }
.social-links a:hover { color: var(--gold-bright); border-color: var(--gold-bright); background: rgba(200,166,90,.12); transform: translateY(-2px); }
.social-links svg { width: 15px; height: 15px; fill: currentColor; }

.floating-call { position: fixed; right: 28px; bottom: 28px; z-index: 800; min-height: 50px; padding: 0 20px; border: 0; border-radius: 999px; background: var(--gold-bright); color: var(--navy); box-shadow: 0 14px 38px rgba(14,27,61,.25); font-weight: 800; cursor: pointer; }
.chat-toggle { position: fixed; right: 28px; bottom: 90px; z-index: 800; width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: var(--navy); color: white; box-shadow: 0 14px 38px rgba(14,27,61,.22); cursor: pointer; font-weight: 900; }
.chat-panel { position: fixed; right: 28px; bottom: 150px; z-index: 850; width: min(340px, calc(100vw - 36px)); padding: 28px; border-radius: 22px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); box-shadow: 0 30px 90px rgba(14,27,61,.25); }
.chat-panel > button:first-child { position: absolute; right: 14px; top: 12px; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; font-size: 1.4rem; }
.chat-panel h2 { font-size: 1.7rem; margin: 22px 0 12px; }
.chat-panel p { color: var(--muted); font-size: .83rem; }

.book-dialog { width: min(560px, calc(100% - 32px)); padding: 44px; overflow: hidden; isolation: isolate; border: 1px solid rgba(14,27,61,.12); border-radius: 28px; background: var(--paper); color: var(--ink); box-shadow: 0 40px 120px rgba(5,12,29,.38); }
.book-dialog::backdrop { background: rgba(5,12,29,.7); backdrop-filter: blur(8px); }
.book-dialog .eyebrow, .book-dialog h2, .book-dialog > p, .book-dialog > a { position: relative; z-index: 1; }
.dialog-watermark { position: absolute; z-index: 0; right: -42px; bottom: -58px; width: 220px; height: 220px; opacity: .055; pointer-events: none; filter: saturate(.45); mix-blend-mode: multiply; }
.dialog-watermark img { width: 100%; height: 100%; object-fit: contain; }
.book-dialog h2 { font-size: 2.6rem; margin: 22px 0 18px; }
.book-dialog > p:not(.eyebrow) { color: var(--muted); }
.dialog-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,253,248,.78); cursor: pointer; font-size: 1.4rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }

/* About us */
.about-us-layout { display: grid; grid-template-columns: 1fr 1.12fr; gap: 78px; align-items: start; }
.about-us-copy > p:not(.eyebrow) { color: var(--muted); }
.about-us-copy .large-copy { color: var(--ink); font-family: var(--serif); font-size: 1.55rem; line-height: 1.5; margin-bottom: 22px; }
/* The banner is a wide brand lockup with the logo and tagline baked into the
   artwork, so it is shown at its natural 2033x773 ratio across the full shell.
   Never crop it with object-fit - that slices the wordmark and the tagline. */
.about-us-banner { margin-top: 64px; }
.about-us-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,166,90,.42); box-shadow: var(--shadow); background: var(--navy); }
.about-us-frame img { display: block; width: 100%; height: auto; }
.about-badge { margin: 20px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.about-badge span { padding: 11px 16px; border-radius: 999px; border: 1px solid rgba(14,27,61,.14); background: rgba(255,255,255,.62); color: var(--navy); font-size: .72rem; font-weight: 750; }

.match-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.match-list li { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border-radius: 12px; background: rgba(14,27,61,.045); border: 1px solid rgba(14,27,61,.07); color: var(--navy); font-size: .8rem; font-weight: 650; }
.match-list li::before { content: "✓"; flex: 0 0 auto; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: rgba(200,166,90,.2); color: var(--gold-dark); font-size: .66rem; font-weight: 900; }

.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 62px; }
.purpose-card { padding: 28px; border-radius: var(--radius); background: rgba(255,255,255,.6); border: 1px solid rgba(14,27,61,.1); box-shadow: 0 18px 46px rgba(14,27,61,.05); transition: transform .3s ease, box-shadow .3s ease; }
.purpose-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px rgba(14,27,61,.09); }
.purpose-card span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; border: 1px solid rgba(138,107,47,.34); color: var(--gold-dark); font-size: .92rem; }
.purpose-card h3 { margin: 22px 0 8px; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.purpose-card p { margin: 0; color: var(--muted); font-size: .85rem; }

.hiraya-meaning { position: relative; overflow: hidden; margin-top: 62px; padding: 54px 58px; border-radius: 30px; background: var(--navy); color: #fff; box-shadow: 0 30px 80px rgba(14,27,61,.18); }
.hiraya-meaning .meaning-star { color: var(--gold-bright); font-size: 1.7rem; line-height: 1; }
.hiraya-meaning p:not(.meaning-kicker):not(.meaning-note) { position: relative; z-index: 1; max-width: 880px; margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.7vw, 2.5rem); line-height: 1.24; letter-spacing: -.02em; }
.hiraya-meaning em { color: var(--gold-bright); font-style: italic; }
.meaning-kicker { margin: 20px 0 16px; color: var(--gold-bright); font-size: .66rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.meaning-note { position: relative; z-index: 1; max-width: 720px; margin: 20px 0 0 !important; color: rgba(255,255,255,.66); font-size: .92rem; }
.hiraya-meaning::after { content: ""; position: absolute; width: 520px; height: 260px; right: -80px; bottom: -150px; border: 1px solid rgba(200,166,90,.3); border-radius: 50% 50% 0 0; pointer-events: none; }

.about-close { margin-top: 58px; padding: 44px 46px; border-radius: var(--radius); background: rgba(255,255,255,.62); border: 1px solid rgba(200,166,90,.4); text-align: center; }
.about-close h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.4rem); font-weight: 400; line-height: 1.14; }
.about-close h3 em { color: var(--gold-dark); font-style: italic; }
.about-close > p { max-width: 640px; margin: 0 auto 26px; color: var(--muted); }

/* Founders */
.founders-teaser-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.founders-teaser-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); }
.founders-teaser-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.founder-mini { padding: 26px; border-radius: var(--radius); background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.045)); border: 1px solid rgba(200,166,90,.36); backdrop-filter: blur(10px); }
.founder-mini-photo { position: relative; width: 82px; height: 82px; border-radius: 50%; overflow: hidden; border: 1px solid rgba(200,166,90,.55); background: var(--navy-2); }
.founder-mini-photo img { position: absolute; max-width: none; height: auto; }
/* The two source photos are framed differently - Regina's is a fuller
   three-quarter shot, Romelette's is already a tight headshot - so a single
   shared zoom double-crops one of them. Each gets its own framing, with the
   left offset kept at -((zoom-1)/2) so the face stays horizontally centred. */
.founder-mini-photo.photo-regina img { width: 190%; left: -45%; top: -2%; }
.founder-mini-photo.photo-romelette img { width: 133%; left: -16.5%; top: -0.5%; }
.founder-mini h3 { margin: 20px 0 5px; font-family: var(--serif); font-size: 1.32rem; font-weight: 400; color: #fff; }
.founder-mini p { margin: 0; color: var(--gold-bright); font-size: .7rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; line-height: 1.5; }
.founder-mini small { display: block; margin-top: 14px; color: rgba(255,255,255,.6); font-size: .8rem; line-height: 1.6; }

.founders-intro { max-width: 820px; }
.founders-intro > p:not(.eyebrow) { color: var(--muted); }
.founder-profile { display: grid; grid-template-columns: .8fr 1.2fr; gap: 62px; align-items: start; padding: 62px 0; border-top: 1px solid var(--line); }
.founder-profile:first-of-type { border-top: 0; padding-top: 8px; }
.founder-portrait { position: relative; }
.founder-portrait-frame { position: relative; z-index: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(200,166,90,.45); background: var(--navy); box-shadow: var(--shadow); }
.founder-portrait-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 18%; }
.founder-portrait::after { content: ""; position: absolute; z-index: 0; inset: 24px -20px -24px 24px; border: 1px solid rgba(200,166,90,.34); border-radius: var(--radius); pointer-events: none; }
.founder-profile:nth-of-type(even) { grid-template-columns: 1.2fr .8fr; }
.founder-profile:nth-of-type(even) .founder-portrait { order: 2; }
.founder-profile:nth-of-type(even) .founder-portrait::after { inset: 24px 24px -24px -20px; }
.founder-body h2 { margin-bottom: 6px; font-size: clamp(2.2rem, 3.4vw, 3.1rem); }
.founder-role { margin: 0 0 24px; color: var(--gold-dark); font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.founder-body p:not(.founder-role) { color: var(--muted); max-width: 700px; }
.expertise-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; padding: 0; list-style: none; }
.expertise-tags li { padding: 9px 14px; border-radius: 999px; border: 1px solid rgba(14,27,61,.13); background: rgba(255,255,255,.55); color: var(--navy); font-size: .71rem; font-weight: 700; }
.founder-quote { margin: 30px 0 0; padding: 22px 0 22px 26px; border-left: 2px solid var(--gold); }
.founder-quote p { margin: 0; color: var(--ink) !important; font-family: var(--serif); font-size: 1.24rem; line-height: 1.45; font-style: italic; }
.founder-quote cite { display: block; margin-top: 12px; color: var(--gold-dark); font-size: .7rem; font-style: normal; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.founder-detail { margin-top: 30px; border-top: 1px solid var(--line); }
.founder-detail summary { list-style: none; cursor: pointer; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy); font-family: var(--serif); font-size: 1.18rem; }
.founder-detail summary::-webkit-details-marker { display: none; }
.founder-detail summary span { width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--sans); font-size: .9rem; transition: transform .25s ease, background .25s ease, color .25s ease; }
.founder-detail[open] summary span { transform: rotate(45deg); background: var(--navy); color: #fff; }
.founder-detail .founder-detail-body { padding: 0 0 18px; }
.founder-detail ul { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 8px; }
.founder-detail ul li { font-size: .88rem; }

/* Secondary pages */
.subpage { background: var(--paper); }
.subpage .site-header { background: rgba(14,27,61,.96); }
.subpage-hero { padding: 175px 0 96px; background: var(--navy); color: white; position: relative; overflow: hidden; }
.subpage-hero .shell { max-width: 900px; position: relative; z-index: 1; }
.subpage-hero p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.64); font-size: 1.05rem; }
.subpage-hero::after { content: ""; position: absolute; width: 700px; height: 350px; right: -100px; bottom: -250px; border: 1px solid rgba(200,166,90,.25); border-radius: 50% 50% 0 0; }
.content-section { padding: 96px 0; }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.content-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.content-card h2, .content-card h3 { font-family: var(--serif); font-weight: 400; }
.content-card h2 { font-size: 2rem; }
.content-card h3 { font-size: 1.45rem; }
.content-card p, .content-card li { color: var(--muted); }
.content-card ul { padding-left: 20px; }
.narrow { max-width: 780px; }
.application-form { max-width: 800px; margin: 0 auto; }

/* Long-form legal pages (privacy policy) */
.policy-meta { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 6px; padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(200,166,90,.4); background: rgba(255,255,255,.06); color: var(--gold-bright) !important; font-size: .72rem !important; font-weight: 750; letter-spacing: .04em; }
.policy-card + .policy-card { margin-top: 18px; }
.policy-card h2 { margin-bottom: 16px; font-size: 1.7rem; }
.policy-card h3 { margin: 28px 0 8px; font-size: 1.15rem; }
.policy-card h3:first-of-type { margin-top: 22px; }
.policy-card p, .policy-card li { font-size: .92rem; line-height: 1.72; }
.policy-card ul { margin: 0 0 14px; display: grid; gap: 7px; }
.policy-card a { color: var(--navy); border-bottom: 1px solid var(--gold); font-weight: 650; }
.policy-card a:hover { color: var(--gold-dark); }
.policy-lead { color: var(--ink) !important; font-family: var(--serif); font-size: 1.15rem !important; line-height: 1.6 !important; }

.retention-list { list-style: none; padding: 0 !important; margin: 18px 0 0 !important; display: grid; gap: 10px; }
.retention-list li { padding: 15px 17px; border-radius: 13px; background: rgba(14,27,61,.04); border: 1px solid rgba(14,27,61,.08); }
.retention-list strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: .84rem; font-weight: 750; }
.retention-list span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.6; }

.policy-contact { margin-top: 18px; padding: 30px 32px; border-radius: var(--radius); background: var(--navy); color: #fff; }
.policy-contact h2 { color: #fff; margin-bottom: 14px; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; }
.policy-contact p { color: rgba(255,255,255,.68); font-size: .92rem; line-height: 1.72; }
.policy-contact address { font-style: normal; margin: 0 0 18px; color: var(--ivory); font-size: .95rem; line-height: 1.85; }
.policy-contact address strong { display: block; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.policy-contact a { color: var(--gold-bright); border-bottom: 1px solid rgba(223,194,122,.45); }
.policy-subject { margin-top: 18px !important; padding: 15px 17px; border-radius: 12px; border: 1px solid rgba(200,166,90,.35); background: rgba(200,166,90,.09); color: var(--ivory) !important; font-size: .88rem !important; }

@media (max-width: 620px) {
  .policy-card h2 { font-size: 1.45rem; }
  .policy-contact { padding: 24px 22px; }
}

@media (max-width: 1080px) {
  .nav-cta { display: none; }
  .hero-copy { width: min(660px, 68%); }
  .section, .content-section { padding: 96px 0; }
  .about-us-layout { gap: 52px; }
  .founders-teaser-layout { gap: 48px; }
  .founder-profile { gap: 44px; }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.2fr repeat(3, .7fr); }
  .footer-contact { grid-column: 1 / -1; max-width: 460px; }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 720px); }
  .menu-toggle { display: grid; position: relative; z-index: 3; }
  .site-nav { position: fixed; inset: 0; padding: 115px 24px 36px; background: var(--navy); flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility .35s ease; }
  .site-nav.open { transform: none; visibility: visible; }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-family: var(--serif); font-size: 1.35rem; color: white; }
  .hero { min-height: auto; padding: 0 0 46px; }
  .hero-backdrop { position: relative; inset: auto; width: 100%; aspect-ratio: 960 / 773; margin-top: 82px; }
  .hero-backdrop::after { background: linear-gradient(180deg, rgba(14,27,61,.18), rgba(14,27,61,.28) 70%, rgba(14,27,61,.82)); }
  .hero-people-crop { inset: 0; width: 100%; height: 100%; aspect-ratio: auto; }
  .hero-people-crop img { width: 211.8%; height: 100%; opacity: 1; }
  .hero-stage { margin-top: -28px; }
  .hero-copy { width: 100%; padding: 34px 24px 8px; gap: 18px; background: linear-gradient(180deg, rgba(14,27,61,.2), rgba(14,27,61,.96) 24%, var(--navy) 100%); text-shadow: none; }
  .hero-details { max-width: 660px; }
  .signal-bar { grid-template-columns: repeat(2, 1fr); }
  .signal-bar div:nth-child(2) { border-right: 0; }
  .signal-bar div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .split-layout, .industries-layout, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .value-grid, .insight-grid, .content-grid { grid-template-columns: 1fr; }
  .section-intro { grid-template-columns: 1fr; gap: 24px; }
  .service-card.featured { grid-template-columns: 1fr; }
  .service-card.featured ul { grid-column: 1; grid-row: auto; }
  .comparison-grid, .checklist-layout { grid-template-columns: 1fr; }
  .process-line { grid-template-columns: 1fr; gap: 24px; }
  .process-line::before { top: 0; bottom: 0; left: 25px; right: auto; width: 1px; height: auto; }
  .process-line li { display: grid; grid-template-columns: 58px 1fr; column-gap: 20px; }
  .process-line li > span { grid-row: 1 / span 2; }
  .process-line h3 { margin: 7px 0 5px; }
  .roles-header { flex-direction: column; align-items: flex-start; }
  .role-filters { justify-content: flex-start; }
  .faq-heading, .contact-copy { position: static; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .floating-call, .chat-toggle, .chat-panel { display: none; }
  .about-us-layout, .founders-teaser-layout { grid-template-columns: 1fr; gap: 32px; }
  .about-us-banner { margin-top: 44px; }
  .purpose-grid { grid-template-columns: repeat(2, 1fr); margin-top: 44px; }
  .hiraya-meaning { margin-top: 44px; padding: 40px 34px; }
  .about-close { margin-top: 44px; padding: 36px 30px; }
  .founder-profile,
  .founder-profile:nth-of-type(even) { grid-template-columns: 1fr; gap: 38px; padding: 48px 0; }
  .founder-profile:nth-of-type(even) .founder-portrait { order: 0; }
  .founder-portrait { max-width: 420px; }
  .founder-portrait::after,
  .founder-profile:nth-of-type(even) .founder-portrait::after { display: none; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 28px); --radius: 20px; }
  .nav-shell { min-height: 72px; }
  .brand-name { font-size: .67rem; letter-spacing: .17em; }
  .section { padding: 80px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  h2 { font-size: clamp(2.45rem, 12vw, 3.5rem); }
  .hero { padding: 0 0 36px; }
  .hero-backdrop { margin-top: 72px; }
  .hero-stage { width: 100%; margin-top: -18px; }
  .hero-copy { padding: 28px 14px 8px; gap: 14px; }
  .hero-message h1 { font-size: clamp(2.7rem, 13.6vw, 3.8rem); }
  .hero-lede { font-size: .95rem; }
  .button-row .button { width: 100%; }
  .signal-bar { margin-top: 20px; }
  .signal-bar div { padding: 18px 12px; min-height: 84px; }
  .signal-bar strong { font-size: 1.1rem; }
  .value-grid { margin-top: 42px; }
  .value-card, .service-card, .comparison-card, .checklist-statement, .checklist-card, .insight-card, .contact-form, .book-dialog { padding: 26px; }
  .dialog-watermark { right: -36px; bottom: -44px; width: 168px; height: 168px; opacity: .045; }
  .value-card h3 { margin-top: 34px; }
  .manifesto { padding: 90px 0 120px; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-statement { min-height: 390px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; }
  .service-card ul { grid-template-columns: 1fr; }
  .industry-list span { padding: 11px 14px; font-size: .92rem; }
  .role-grid { grid-template-columns: 1fr; }
  .role-card:nth-child(odd) { border-right: 0; }
  .role-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-button { white-space: nowrap; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom div { flex-direction: column; gap: 5px; }
  .social-links { flex-direction: row !important; }
  .floating-call, .chat-toggle, .chat-panel { display: none; }
  .subpage-hero { padding: 135px 0 76px; }
  .match-list { grid-template-columns: 1fr; }
  .founders-teaser-cards, .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card, .founder-mini { padding: 24px; }
  .hiraya-meaning { padding: 32px 24px; border-radius: 22px; }
  .about-close { padding: 30px 22px; }
  .founder-portrait { max-width: 100%; }
  .founder-quote { padding-left: 20px; }
  .founder-quote p { font-size: 1.1rem; }
}

@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; }
}
