/* Project NK — preserved editorial design system */
:root {
    --bg: #f4f4f0;
    --bg-white: #ffffff;
    --bg-muted: #e9e9e4;
    --ink: #111111;
    --text-secondary: #585858;
    --text-tertiary: #8a8a86;
    --border: #dcdcd6;
    --border-light: #e9e9e4;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1400px;
    --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-sans); -webkit-font-smoothing: antialiased; }
body.modal-open, body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 96px), var(--container)); margin: 0 auto; }
.section-space { padding: clamp(100px, 11vw, 170px) 0; border-top: 1px solid var(--border); }

/* Reveal motion retained from the original site */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }

/* Shared navigation */
.navbar {
    position: fixed; z-index: 50; inset: 0 0 auto; height: 86px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 clamp(28px, 5vw, 78px); transition: var(--ease);
}
.navbar.scrolled { height: 72px; background: rgba(244,244,240,.9); border-bottom: 1px solid var(--border-light); backdrop-filter: blur(18px); }
.nav-logo, .footer-logo { font: 500 24px/1 var(--font-display); letter-spacing: -.045em; }
.nav-logo em, .footer-logo em { font-style: normal; font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.nav-cta) { color: var(--text-secondary); font-size: 13px; transition: color var(--ease); }
.nav-links > a:not(.nav-cta):hover, .nav-links > a.active { color: var(--ink); }
.nav-links > a.active::after { content: ""; width: 4px; height: 4px; display: inline-block; margin: 0 0 2px 7px; background: var(--ink); border-radius: 50%; }
.nav-cta { display: inline-flex; align-items: center; gap: 22px; padding: 12px 18px 12px 20px; color: #fff; background: var(--ink); border-radius: 999px; font-size: 12px; }
.arrow-sm { font-size: 16px; transition: transform var(--ease); }
.nav-cta:hover .arrow-sm { transform: translateX(4px); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: none; padding: 10px; }
.nav-toggle span { display: block; height: 1.5px; margin: 5px 0; background: var(--ink); transition: var(--ease); }

/* Hero — original lines, orb and wave language */
.hero { min-height: 780px; height: 100svh; position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 75px; }
.hero-bg { position: absolute; inset: 0; background: var(--bg); }
.hero-orb { position: absolute; width: min(54vw, 760px); height: min(54vw, 760px); right: -12vw; top: -20vw; border-radius: 50%; background: radial-gradient(circle, rgba(201,205,218,.7), rgba(244,244,240,0) 69%); filter: blur(6px); }
.hero-visual { position: absolute; inset: 16% 4% 12% 49%; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 18%, #000 78%, transparent); }
.lines-container { height: 100%; display: flex; align-items: center; justify-content: center; gap: clamp(4px, .55vw, 10px); }
.line { width: 1px; background: linear-gradient(to bottom, transparent, rgba(17,17,17,.56), transparent); animation: breathe 3.8s ease-in-out infinite alternate; transform-origin: center; }
.line-band-0 { height: 95%; animation-delay: 0s; }
.line-band-1 { height: 90%; animation-delay: .18s; }
.line-band-2 { height: 85%; animation-delay: .36s; }
.line-band-3 { height: 80%; animation-delay: .55s; }
.line-band-4 { height: 74%; animation-delay: .73s; }
.line-band-5 { height: 69%; animation-delay: .91s; }
.line-band-6 { height: 64%; animation-delay: 1.09s; }
.line-band-7 { height: 59%; animation-delay: 1.27s; }
.line-band-8 { height: 54%; animation-delay: 1.45s; }
.line-band-9 { height: 49%; animation-delay: 1.64s; }
.line-band-10 { height: 43%; animation-delay: 1.82s; }
.line-band-11 { height: 38%; animation-delay: 2s; }
@keyframes breathe { from { transform: scaleY(.58); opacity: .25; } to { transform: scaleY(1); opacity: .85; } }
.hero-waves { position: absolute; inset: auto 0 0; height: 31%; opacity: .48; }
.wave { position: absolute; inset: 0; width: 100%; height: 100%; fill: rgba(255,255,255,.58); }
.wave-2 { transform: translateY(20px); fill: rgba(229,229,224,.56); }
.wave-3 { transform: translateY(42px); fill: rgba(255,255,255,.78); }
.hero-content { position: relative; z-index: 3; width: min(calc(100% - 96px), var(--container)); margin: 0 auto; }
.hero-eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 25px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 600; }
.hero-eyebrow span { color: var(--ink); font-size: 8px; }
.hero h1, .page-hero h1 { max-width: 940px; margin: 0; font: 400 clamp(64px, 7.7vw, 126px)/.88 var(--font-display); letter-spacing: -.075em; }
.hero-sub { max-width: 640px; margin: 34px 0 0; color: var(--text-secondary); font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }
.hero-cta { display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.btn-pill { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 34px; padding: 0 24px; background: var(--ink); color: #fff; border: 1px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 500; transition: var(--ease); }
.btn-pill:hover { background: transparent; color: var(--ink); }
.btn-pill .arrow { font-size: 18px; transition: transform var(--ease); }
.btn-pill:hover .arrow { transform: translateX(5px); }
.text-link { padding: 11px 0 8px; border-bottom: 1px solid #9c9c96; color: var(--text-secondary); font-size: 13px; }
.text-link span { margin-left: 8px; }

/* Editorial section primitives */
.section-label { display: flex; width: max-content; align-items: center; margin-bottom: 48px; }
.section-label .num { min-width: 39px; height: 35px; display: grid; place-items: center; padding: 0 12px; background: var(--ink); color: #fff; border-radius: 999px; font-size: 10px; }
.section-label .text { height: 35px; display: grid; place-items: center; padding: 0 16px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 999px; color: var(--text-secondary); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.section-title { margin: 0; font: 400 clamp(51px, 6.4vw, 96px)/.95 var(--font-display); letter-spacing: -.065em; }
.definition { background: var(--bg); }
.definition-content { max-width: 1220px; }
.big-text { margin: 0; font: 400 clamp(40px, 5.25vw, 80px)/1.08 var(--font-display); letter-spacing: -.052em; }
.big-text em { color: var(--text-tertiary); font-style: normal; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, .38fr); gap: 80px; align-items: end; margin-bottom: 75px; }
.section-heading .section-label { margin-bottom: 38px; }
.section-heading > p { max-width: 470px; margin: 0 0 8px; color: var(--text-secondary); font-size: 16px; line-height: 1.7; }

/* Home capabilities */
.pathways { background: var(--bg-white); }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.pathway-card { min-height: 480px; display: flex; flex-direction: column; padding: 28px; background: var(--bg-white); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background var(--ease); }
.pathway-card:hover { background: var(--bg); }
.pathway-num { color: var(--text-tertiary); font-size: 10px; }
.pathway-card h3 { max-width: 360px; margin: 0 0 18px; font: 400 clamp(27px, 2.6vw, 39px)/1.03 var(--font-display); letter-spacing: -.045em; }
.pathway-card p { max-width: 390px; margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.65; }
.card-link { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); color: var(--text-secondary); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; }
.card-link b { color: var(--ink); font-size: 15px; transition: transform var(--ease); }
.pathway-card:hover .card-link b { transform: translate(3px,-3px); }

/* Geometric iconography — derived from the original line system */
.service-glyph { width: 108px; height: 82px; position: relative; margin: 64px 0 50px; }
.glyph-window { border: 1px solid var(--ink); background: var(--bg); box-shadow: 14px 14px 0 var(--bg-muted); }
.glyph-window::before { content: ""; position: absolute; inset: 18px 0 auto; border-top: 1px solid var(--border); }
.glyph-window i { width: 5px; height: 5px; display: inline-block; margin: 6px 0 0 7px; border-radius: 50%; background: var(--ink); }
.glyph-path { display: flex; align-items: center; justify-content: space-between; }
.glyph-path::before { content: ""; position: absolute; left: 15px; right: 15px; top: 40px; border-top: 1px solid var(--ink); }
.glyph-path i { width: 27px; height: 27px; position: relative; z-index: 1; border: 1px solid var(--ink); background: var(--bg-white); border-radius: 50%; }
.glyph-path i:nth-child(2) { background: var(--ink); }
.glyph-system { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; transform: rotate(-4deg); }
.glyph-system i { border: 1px solid var(--ink); background: var(--bg); }
.glyph-system i:nth-child(2), .glyph-system i:nth-child(3) { background: var(--ink); }
.glyph-connect i { position: absolute; width: 42px; height: 42px; top: 20px; border: 1px solid var(--ink); border-radius: 50%; background: rgba(244,244,240,.7); }
.glyph-connect i:nth-child(1) { left: 0; }.glyph-connect i:nth-child(2) { left: 33px; }.glyph-connect i:nth-child(3) { left: 66px; }

/* Selected work — quiet CSS-built system previews */
.selected-work { background: var(--bg); }
.selected-work .section-title { max-width: 900px; margin-bottom: 70px; }
.work-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.work-card { background: var(--bg-white); border: 1px solid var(--border-light); transition: transform var(--ease), box-shadow var(--ease); }
.work-card:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0,0,0,.06); }
.work-visual { min-height: 410px; display: grid; place-items: center; overflow: hidden; background: var(--bg-muted); position: relative; }
.work-visual::before { content: ""; position: absolute; width: 440px; height: 440px; border: 1px solid rgba(17,17,17,.09); border-radius: 50%; }
.work-visual::after { content: ""; position: absolute; width: 290px; height: 290px; border: 1px solid rgba(17,17,17,.08); border-radius: 50%; }
.visual-commerce { background: #e7e7e2; }
.mini-app, .mini-config { width: min(74%, 430px); min-height: 245px; position: relative; z-index: 2; padding: 25px; background: #fff; border: 1px solid #cfcfc9; box-shadow: 20px 22px 50px rgba(0,0,0,.1); transform: rotate(-3deg); }
.mini-app span, .mini-config span { font: 600 11px var(--font-display); letter-spacing: .04em; }
.mini-app b, .mini-config b { display: block; margin: 45px 0 20px; font: 400 32px var(--font-display); letter-spacing: -.04em; }
.mini-app i { display: block; height: 30px; margin-top: 7px; border: 1px solid #e1e1dc; background: #f4f4f0; }
.mini-config { background: #151515; color: #fff; border-color: #333; transform: rotate(3deg); }
.mini-config i { width: 30%; height: 64px; display: inline-block; margin-right: 2%; border: 1px solid #484848; background: #202020; }
.work-copy { padding: 34px; }
.work-copy > span { color: var(--text-tertiary); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.work-copy h3 { margin: 15px 0 13px; font: 400 clamp(34px, 3.4vw, 52px)/1 var(--font-display); letter-spacing: -.055em; }
.work-copy p { max-width: 540px; margin: 0; color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* Page heroes */
.page-hero { min-height: 690px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 180px 0 100px; border-bottom: 1px solid var(--border); }
.page-hero .hero-visual { inset: 11% 5% 6% 56%; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { max-width: 1060px; }
.page-hero-content > p:last-child { max-width: 630px; margin: 34px 0 0; color: var(--text-secondary); font-size: 18px; line-height: 1.65; }

/* Services */
.service-list { background: var(--bg-white); padding-top: 70px; }
.service-row { display: grid; grid-template-columns: 180px 1fr minmax(280px, .45fr); gap: 70px; align-items: start; padding: 85px 0; border-bottom: 1px solid var(--border); scroll-margin-top: 78px; }
.service-index > span { color: var(--text-tertiary); font-size: 10px; }
.service-index .service-glyph { margin: 40px 0 0; }
.service-kicker { margin: 0 0 19px; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.service-copy h2 { max-width: 700px; margin: 0; font: 400 clamp(43px, 5vw, 74px)/.98 var(--font-display); letter-spacing: -.058em; }
.service-copy > p:last-child { max-width: 650px; margin: 26px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.service-points { list-style: none; padding: 36px 0 0; margin: 0; }
.service-points li { padding: 15px 0; border-top: 1px solid var(--border); color: var(--text-secondary); font-size: 12px; }
.service-points li::before { content: "↗"; display: inline-block; width: 26px; color: var(--ink); }
.choice-statement { background: var(--bg); }
.statement-grid { display: grid; grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
.statement-grid .section-label { margin: 5px 0 0; }

/* About */
.founder-section { background: var(--bg-white); }
.founder-grid { display: grid; grid-template-columns: minmax(360px, .72fr) 1.28fr; gap: clamp(65px, 9vw, 145px); align-items: center; }
.founder-photo { position: relative; }
.founder-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(100%); }
.photo-note { position: absolute; right: -20px; bottom: 30px; padding: 14px 18px; background: var(--ink); color: #fff; border-radius: 999px; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; box-shadow: 0 16px 35px rgba(0,0,0,.18); }
.photo-note span { margin-right: 8px; }
.founder-copy .section-title { margin-bottom: 42px; }
.founder-copy > p { max-width: 720px; color: var(--text-secondary); font-size: 15px; line-height: 1.75; }
.founder-copy .lead { color: var(--ink); font: 400 26px/1.35 var(--font-display); }
.principles { background: var(--bg); }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.principle-card { min-height: 310px; padding: 30px; background: var(--bg-white); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.principle-card > span, .process-lineup article > span { color: var(--text-tertiary); font-size: 9px; }
.principle-card h3 { margin: 95px 0 16px; font: 400 31px/1.05 var(--font-display); letter-spacing: -.04em; }
.principle-card p { max-width: 340px; color: var(--text-secondary); font-size: 13px; line-height: 1.65; }
.process-section { background: var(--bg-white); }
.process-lineup { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--border); }
.process-lineup article { min-height: 290px; padding: 25px 45px 0 0; border-right: 1px solid var(--border); }
.process-lineup article:not(:first-child) { padding-left: 45px; }
.process-lineup article:last-child { border-right: 0; }
.process-lineup h3 { margin: 85px 0 13px; font: 400 34px/1 var(--font-display); letter-spacing: -.04em; }
.process-lineup p { max-width: 310px; margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.65; }

/* Closing and footer */
.closing-cta { min-height: 670px; display: grid; place-items: center; text-align: center; background: var(--ink); color: #fff; }
.closing-inner { display: flex; flex-direction: column; align-items: center; }
.closing-cta .hero-eyebrow { color: #a7a7a2; }
.closing-cta .hero-eyebrow span { color: #fff; }
.closing-cta h2 { margin: 0; font: 400 clamp(58px, 7.3vw, 108px)/.9 var(--font-display); letter-spacing: -.07em; }
.closing-cta p:not(.hero-eyebrow) { max-width: 610px; margin: 30px 0; color: #aaa9a4; font-size: 15px; line-height: 1.65; }
.closing-cta .btn-pill { background: #fff; border-color: #fff; color: var(--ink); }
.closing-cta .btn-pill:hover { background: transparent; color: #fff; }
.footer { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); }
.footer-content { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
.footer-links { display: flex; gap: 28px; color: var(--text-secondary); font-size: 11px; }
.footer-content > p { justify-self: end; margin: 0; color: var(--text-tertiary); text-transform: uppercase; letter-spacing: .08em; font-size: 8px; }

/* Booking modal — same visual mechanism, simplified content */
.booking-overlay { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 22px; background: rgba(17,17,17,.64); backdrop-filter: blur(12px); opacity: 0; visibility: hidden; transition: opacity var(--ease), visibility var(--ease); }
.booking-overlay.active { opacity: 1; visibility: visible; }
.booking-modal { width: min(820px, 100%); max-height: 92vh; overflow: auto; position: relative; padding: clamp(32px, 5vw, 58px); background: var(--bg); transform: translateY(25px) scale(.98); transition: transform var(--ease); box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.booking-overlay.active .booking-modal { transform: translateY(0) scale(1); }
.booking-close { position: absolute; z-index: 2; top: 18px; right: 19px; width: 36px; height: 36px; border: 0; background: none; color: var(--text-secondary); font-size: 28px; cursor: pointer; }
.booking-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.booking-logo { font: 500 20px var(--font-display); letter-spacing: -.04em; }.booking-logo em { font-style: normal; font-weight: 300; }
.booking-steps { display: flex; align-items: center; }
.booking-steps .step { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--text-tertiary); font-size: 8px; }
.booking-steps .step.active, .booking-steps .step.done { background: var(--ink); border-color: var(--ink); color: #fff; }
.booking-steps .step-line { width: 24px; height: 1px; background: var(--border); }.booking-steps .step-line.done { background: var(--ink); }
.booking-step h3 { margin: 0; font: 400 clamp(38px, 5vw, 58px)/1 var(--font-display); letter-spacing: -.055em; }
.booking-subtitle { margin: 13px 0 30px; color: var(--text-secondary); font-size: 13px; line-height: 1.6; }
.booking-step.hidden { display: none; }
.calendar-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.cal-arrow { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; background: var(--bg-white); cursor: pointer; }
.cal-month { font: 500 15px var(--font-display); }
.calendar-days-header, .calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.calendar-days-header span { padding: 8px 0; color: var(--text-tertiary); text-align: center; font-size: 8px; }
.cal-day { aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--border); background: var(--bg-white); color: var(--ink); cursor: pointer; font-size: 11px; transition: var(--ease); }
.cal-day.empty { opacity: 0; pointer-events: none; }.cal-day.disabled { color: #c8c8c4; cursor: not-allowed; }.cal-day:not(.disabled):hover, .cal-day.selected { background: var(--ink); color: #fff; border-color: var(--ink); }.cal-day.today { outline: 1px solid var(--ink); outline-offset: -4px; }
.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.time-slot { padding: 14px 8px; border: 1px solid var(--border); background: var(--bg-white); cursor: pointer; color: var(--text-secondary); font-size: 11px; }.time-slot:hover, .time-slot.selected { background: var(--ink); border-color: var(--ink); color: #fff; }
.booking-back { margin-top: 22px; padding: 0; border: 0; background: none; color: var(--text-tertiary); cursor: pointer; font-size: 11px; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-group { display: flex; flex-direction: column; gap: 8px; }.form-group.full { grid-column: 1/-1; }
.form-group label { text-transform: uppercase; letter-spacing: .09em; font-size: 8px; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px; border: 1px solid var(--border); border-radius: 0; outline: none; background: var(--bg-white); color: var(--ink); font-size: 12px; }.form-group textarea { resize: vertical; min-height: 96px; }.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--ink); }
.booking-submit { grid-column: 1/-1; width: 100%; border: 1px solid var(--ink); cursor: pointer; }
.booking-submit:disabled { cursor: wait; opacity: .62; }
.form-status { grid-column: 1/-1; min-height: 18px; margin: 0; color: #8b2f2f; font-size: 11px; line-height: 1.5; }
.booking-confirmed { padding: 25px 0 10px; text-align: center; }.confirm-icon { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: var(--ink); color: #fff; }.confirm-details { max-width: 460px; margin: 25px auto; padding: 20px; background: var(--bg-white); color: var(--text-secondary); font-size: 12px; line-height: 1.7; }.booking-done { min-height: 46px; padding: 0 24px; border: 1px solid var(--ink); border-radius: 999px; background: transparent; cursor: pointer; }.booking-whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: var(--ink); text-decoration: none; }.booking-close-confirmation { display: block; margin: 18px auto 0; }

@media (max-width: 1050px) {
    .hero h1, .page-hero h1 { font-size: clamp(62px, 9.6vw, 96px); }
    .hero-visual { inset-left: 58%; }
    .pathway-grid, .principle-grid { grid-template-columns: 1fr 1fr; }
    .pathway-card:last-child, .principle-card:last-child { grid-column: 1/-1; }
    .service-row { grid-template-columns: 120px 1fr; gap: 45px; }.service-points { grid-column: 2; padding-top: 0; }
    .founder-grid { grid-template-columns: .8fr 1.2fr; gap: 65px; }
}

@media (max-width: 760px) {
    .container, .hero-content { width: min(calc(100% - 40px), var(--container)); }
    .section-space { padding: 88px 0; }
    .navbar { height: 70px; padding: 0 20px; }
    .nav-logo { font-size: 21px; }
    .nav-toggle { display: block; position: relative; z-index: 2; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }.nav-toggle.active span:nth-child(2) { opacity: 0; }.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
    .nav-links { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; background: var(--bg); opacity: 0; visibility: hidden; transition: var(--ease); }.nav-links.active { opacity: 1; visibility: visible; }.nav-links > a:not(.nav-cta) { font: 400 37px var(--font-display); color: var(--ink); }
    .hero { height: auto; min-height: 760px; padding: 130px 0 90px; align-items: flex-start; }.hero h1, .page-hero h1 { font-size: clamp(53px, 15vw, 76px); }.hero-sub { font-size: 16px; }.hero-cta { align-items: flex-start; flex-direction: column; gap: 12px; }.hero-visual { inset: 46% -10% 8% 28%; }.hero-orb { width: 95vw; height: 95vw; right: -42vw; top: -20vw; }.hero-waves { height: 25%; }
    .section-label { margin-bottom: 35px; }.big-text { font-size: clamp(35px, 10vw, 50px); }.section-title { font-size: clamp(46px, 12vw, 66px); }
    .section-heading { grid-template-columns: 1fr; gap: 26px; margin-bottom: 50px; }
    .pathway-grid, .work-pair, .principle-grid { grid-template-columns: 1fr; }.pathway-card, .pathway-card:last-child, .principle-card, .principle-card:last-child { grid-column: auto; }.pathway-card { min-height: 410px; }.service-glyph { margin: 44px 0 36px; }.work-visual { min-height: 320px; }.selected-work .section-title { margin-bottom: 45px; }
    .page-hero { min-height: 580px; padding: 150px 0 70px; }.page-hero .hero-visual { inset: 42% -8% 2% 32%; }.page-hero-content > p:last-child { font-size: 15px; }
    .service-list { padding-top: 30px; }.service-row { grid-template-columns: 1fr; gap: 28px; padding: 65px 0; }.service-index { display: flex; align-items: flex-start; justify-content: space-between; }.service-index .service-glyph { width: 84px; height: 65px; margin: 0 10px 0 0; }.service-points { grid-column: 1; }.statement-grid { grid-template-columns: 1fr; gap: 30px; }
    .founder-grid { grid-template-columns: 1fr; gap: 60px; }.founder-photo { width: min(88%, 480px); }.photo-note { right: -15px; }.founder-copy .section-title { margin-bottom: 30px; }
    .process-lineup { grid-template-columns: 1fr; }.process-lineup article, .process-lineup article:not(:first-child) { min-height: 220px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--border); }.process-lineup h3 { margin-top: 52px; }
    .closing-cta { min-height: 590px; }.closing-cta h2 { font-size: clamp(52px, 14vw, 76px); }
    .footer-content { grid-template-columns: 1fr; gap: 28px; }.footer-content > p { justify-self: start; }.footer-links { flex-wrap: wrap; }
    .booking-overlay { padding: 10px; }.booking-modal { max-height: 96vh; padding: 42px 21px 24px; }.booking-header { align-items: flex-start; flex-direction: column; gap: 18px; margin-bottom: 32px; }.booking-steps { align-self: flex-end; }.time-slots { grid-template-columns: 1fr 1fr; }.booking-form { grid-template-columns: 1fr; }.form-group.full, .booking-submit { grid-column: 1; }
}

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