@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #14213d;
  --ink-soft: #31425d;
  --paper: #f8f6f1;
  --white: #ffffff;
  --muted: #667085;
  --line: #e4e1da;
  --lime: #2f5d8c;
  --lime-deep: #244a70;
  --orange: #b4834a;
  --lilac: #dce3df;
  --sand: #f0ede6;
  --curio: #b4834a;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--font); line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.site-frame { width: 100%; min-height: 100vh; overflow: hidden; background: radial-gradient(circle at 84% 8%, rgba(130,149,139,.14), transparent 25rem), radial-gradient(circle at 4% 40%, rgba(180,131,74,.1), transparent 23rem), var(--paper); }
.shell { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }

.site-nav { position: sticky; top: 0; z-index: 50; background: rgba(248,246,241,.9); border-bottom: 1px solid rgba(20,33,61,.09); backdrop-filter: blur(18px); }
.nav-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.studio-brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 1rem; font-weight: 800; letter-spacing: -.035em; text-decoration: none; }
.brand-logo { width: 46px; height: 46px; flex: none; margin: -9px -8px; object-fit: contain; }
.brand-mark { position: relative; width: 28px; height: 28px; display: inline-block; transform: rotate(-6deg); }
.brand-mark i { position: absolute; left: 3px; width: 22px; height: 8px; background: var(--ink); border-radius: 2px; transform-origin: center; }
.brand-mark i:first-child { top: 6px; transform: rotate(36deg); }
.brand-mark i:last-child { bottom: 6px; transform: rotate(-36deg); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { position: relative; color: var(--ink-soft); font-size: .78rem; font-weight: 600; text-decoration: none; }
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 100%; height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 10px 15px; color: var(--white) !important; background: linear-gradient(135deg, var(--lime), var(--lime-deep)); border-radius: 999px; box-shadow: 0 10px 24px rgba(20,33,61,.16); }

.eyebrow, .section-index, .mini-label { margin: 0; color: var(--ink-soft); font-size: .69rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 7px; height: 7px; display: inline-block; background: var(--orange); border-radius: 50%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: 0; font-weight: 500; line-height: .98; letter-spacing: -.065em; }

.home-hero { padding: 90px 0 116px; }
.hero-heading { margin-bottom: 36px; }
.hero-heading .eyebrow { margin-bottom: 34px; }
.hero-heading h1 { font-size: clamp(3.9rem, 7.4vw, 7.7rem); }
.hero-heading h1 em, .inner-hero h1 em { color: var(--orange); font-style: normal; }
.hero-intro { max-width: 620px; margin-bottom: 64px; }
.hero-intro > p { margin: 0 0 25px; color: var(--muted); font-size: 1.08rem; letter-spacing: -.02em; }
.button-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 19px; border: 1px solid transparent; border-radius: 999px; font-size: .8rem; font-weight: 700; text-decoration: none; transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button-dark { color: var(--white); background: linear-gradient(135deg, var(--lime), var(--lime-deep)); box-shadow: 0 12px 28px rgba(20,33,61,.2); }
.button-dark:hover { background: linear-gradient(135deg, var(--orange), #956a39); }
.button-text { border-color: var(--line); background: rgba(255,255,255,.84); box-shadow: 0 10px 26px rgba(20,33,61,.06); }
.button-accent { color: var(--white); background: linear-gradient(135deg, var(--orange), #956a39); box-shadow: 0 12px 28px rgba(180,131,74,.2); }
.button-accent:hover { background: var(--lime-deep); }
.button-light { color: var(--ink); background: var(--white); }

.hero-showcase { min-height: 690px; display: grid; grid-template-columns: minmax(0, 1.56fr) minmax(310px, .74fr); gap: 10px; }
.showcase-main { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(145deg, #3f719f 0%, #2f5d8c 48%, #14213d 100%); border-radius: 30px; text-decoration: none; isolation: isolate; box-shadow: 0 28px 70px rgba(20,33,61,.2); }
.showcase-main::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .33; background: radial-gradient(circle at 80% 30%, rgba(255,255,255,.34), transparent 24%), repeating-radial-gradient(circle at 80% 50%, transparent 0 42px, rgba(255,255,255,.18) 43px 44px); }
.showcase-topline { display: flex; justify-content: space-between; padding: 25px 28px; font-size: .65rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.showcase-copy { position: absolute; left: 34px; bottom: 35px; z-index: 2; display: flex; align-items: center; gap: 16px; }
.showcase-copy img { width: 72px; height: 72px; border-radius: 17px; box-shadow: 0 18px 38px rgba(20,33,61,.28); }
.showcase-copy p { margin: 0; font-size: 1.65rem; font-weight: 700; letter-spacing: -.05em; }
.showcase-copy span { display: block; margin-top: 2px; font-size: .75rem; font-weight: 600; }
.showcase-phone { position: absolute; right: 6%; top: 9%; width: min(47%, 410px); height: 590px; overflow: hidden; border: 8px solid rgba(255,255,255,.82); border-radius: 42px 42px 0 0; box-shadow: 0 35px 70px rgba(20,33,61,.3); transform: rotate(3deg); transition: transform .45s var(--ease); }
.showcase-main:hover .showcase-phone { transform: rotate(1deg) translateY(-8px); }
.showcase-phone picture, .curio-visual picture { display: block; width: 100%; height: 100%; }
.showcase-phone img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.showcase-side { display: grid; grid-template-rows: 1.45fr .75fr; gap: 10px; }
.signal-card, .metric-card { border-radius: 26px; box-shadow: 0 18px 46px rgba(20,33,61,.09); }
.signal-card { display: flex; flex-direction: column; align-items: flex-start; padding: 34px; color: var(--ink); background: linear-gradient(155deg, #ffffff, #f0ede6); border: 1px solid rgba(47,93,140,.12); }
.signal-card .mini-label { color: var(--lime-deep); }
.signal-card strong { margin: auto 0 24px; font-size: clamp(2.5rem, 4.4vw, 4.6rem); font-weight: 500; line-height: .92; letter-spacing: -.07em; }
.signal-card > span { max-width: 30ch; margin-bottom: 25px; color: var(--muted); font-size: .82rem; }
.signal-card a { font-size: .72rem; font-weight: 700; text-decoration: underline; text-underline-offset: 5px; }
.metric-card { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: rgba(255,255,255,.9); border: 1px solid var(--line); }
.metric-card div { display: flex; flex-direction: column; justify-content: end; padding: 22px 18px; border-right: 1px solid var(--line); }
.metric-card div:last-child { border: 0; }
.metric-card strong { font-size: 1.75rem; font-weight: 600; letter-spacing: -.07em; }
.metric-card span { color: var(--muted); font-size: .62rem; line-height: 1.25; }

.statement { padding: 132px 0 108px; }
.statement-grid { display: block; }
.statement-grid .section-index { margin-bottom: 30px; }
.statement-grid h2, .section-title h2, .portfolio-heading h2 { font-size: clamp(3.2rem, 6vw, 6.4rem); }
.statement-grid > div > p { max-width: 540px; margin: 30px 0 0; color: var(--muted); font-size: 1.06rem; }

.curio-story { padding: 0 0 132px; }
.curio-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 86px; align-items: center; }
.curio-visual { height: 760px; overflow: hidden; background: var(--sand); border: 10px solid rgba(255,255,255,.85); border-radius: 30px; box-shadow: 0 26px 70px rgba(20,33,61,.13); }
.curio-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.curio-details h2 { max-width: 720px; margin: 24px 0 28px; font-size: clamp(3rem, 5vw, 5.4rem); }
.section-lede { max-width: 610px; color: var(--muted); font-size: 1.03rem; }
.feature-list { margin: 42px 0; border-top: 1px solid var(--line); }
.feature-list > div { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.feature-list > div > span { padding-top: 4px; color: var(--orange); font-size: .66rem; font-weight: 700; }
.feature-list p { margin: 0; color: var(--muted); font-size: .85rem; }
.feature-list strong { display: block; margin-bottom: 4px; color: var(--ink); font-size: 1rem; }

.craft-section { padding: 116px 0 132px; background: rgba(240,237,230,.76); }
.section-title { display: block; margin-bottom: 58px; }
.craft-grid { display: grid; grid-template-columns: .92fr 1.08fr .92fr; gap: 12px; align-items: start; }
.craft-card { min-height: 390px; display: flex; flex-direction: column; padding: 28px; border-radius: 26px; box-shadow: 0 20px 50px rgba(20,33,61,.09); }
.craft-card:nth-child(2) { margin-top: 66px; }
.card-lime { color: var(--white); background: linear-gradient(145deg, #3f719f, #244a70); }
.card-paper { color: var(--ink); background-color: #ffffff; background-image: radial-gradient(circle at 100% 0, rgba(180,131,74,.12), transparent 44%), repeating-radial-gradient(circle at 100% 0, transparent 0 27px, rgba(47,93,140,.05) 28px 29px); }
.card-dark { color: var(--white); background: linear-gradient(145deg, #213252, #101b33); }
.craft-number { align-self: flex-end; font-size: .66rem; font-weight: 700; }
.craft-symbol { width: 52px; height: 52px; display: grid; place-items: center; margin: auto 0 28px; background: rgba(255,255,255,.65); border-radius: 50%; font-size: 1.45rem; }
.card-dark .craft-symbol { color: var(--ink); }
.craft-card h3 { margin-bottom: 13px; font-size: 1.7rem; letter-spacing: -.045em; }
.craft-card p { max-width: 35ch; margin: 0; color: inherit; opacity: .68; font-size: .82rem; }

.portfolio-section { padding: 132px 0; }
.portfolio-heading { display: block; gap: 70px; align-items: end; margin-bottom: 62px; }
.portfolio-heading > p { margin: 0; color: var(--muted); font-size: .94rem; }
.portfolio-heading .section-index { margin-bottom: 20px; }
.portfolio-list { border-top: 1px solid var(--line); }
.portfolio-row { display: grid; grid-template-columns: 62px 1fr 260px 34px; align-items: center; min-height: 94px; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .25s var(--ease), background .25s var(--ease); }
.portfolio-row:hover { padding: 0 18px; background: var(--white); }
.featured-row:hover { color: var(--white); background: var(--lime); }
.featured-row:hover .portfolio-no, .featured-row:hover .portfolio-category { color: rgba(255,255,255,.76); }
.portfolio-no, .portfolio-category { color: var(--muted); font-size: .68rem; }
.portfolio-name { font-size: clamp(1.8rem, 3vw, 3.2rem); font-weight: 500; letter-spacing: -.06em; }
.portfolio-category { text-align: right; }
.portfolio-arrow { text-align: right; font-size: 1.05rem; }
.more-apps { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 32px; }
.more-apps span { margin-right: 8px; color: var(--muted); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.more-apps a { padding: 8px 12px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; font-weight: 600; text-decoration: none; }
.more-apps a:hover { border-color: var(--ink); }

.closing-section { padding: 0 10px 10px; }
.closing-card { width: 100%; max-width: none; min-height: 470px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; padding: 78px max(32px, calc((100% - 1240px)/2)); color: var(--white); background: radial-gradient(circle at 78% 18%, rgba(255,255,255,.13), transparent 22%), radial-gradient(circle at 16% 100%, rgba(180,131,74,.25), transparent 28%), linear-gradient(135deg, #2f5d8c, #14213d); border-radius: 30px; box-shadow: 0 28px 70px rgba(20,33,61,.22); }
.light-eyebrow { color: rgba(255,255,255,.72); }
.closing-card h2 { margin-top: 25px; font-size: clamp(3.6rem, 7vw, 7rem); }
.closing-copy { max-width: 390px; padding-bottom: 10px; }
.closing-copy p { margin-bottom: 28px; color: rgba(255,255,255,.72); }

.site-footer { padding: 68px 0 30px; background: var(--paper); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr .6fr; gap: 60px; align-items: end; padding-bottom: 60px; }
.footer-contact, .footer-location { display: flex; flex-direction: column; gap: 8px; }
.footer-contact span, .footer-location span { color: var(--muted); font-size: .62rem; }
.footer-contact a { font-size: clamp(1.2rem, 2.3vw, 2.2rem); font-weight: 500; letter-spacing: -.055em; text-decoration: none; }
.footer-location strong { font-size: 1.05rem; font-weight: 500; }
.footer-links { display: flex; justify-content: space-between; gap: 40px; padding-top: 23px; border-top: 1px solid var(--line); }
.footer-links nav, .footer-links > div { display: flex; flex-wrap: wrap; gap: 28px; }
.footer-links a, .footer-links span { color: var(--muted); font-size: .65rem; text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

/* Shared inner pages */
.inner-hero { padding: 104px 0 96px; }
.inner-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; }
.inner-hero h1 { margin-top: 40px; font-size: clamp(4.5rem, 9vw, 9.4rem); }
.inner-intro { max-width: 450px; padding-bottom: 10px; }
.inner-intro p { margin-bottom: 25px; color: var(--muted); font-size: 1.06rem; }
.inner-intro span { display: inline-block; padding-top: 12px; border-top: 1px solid var(--line); color: var(--ink); font-size: .68rem; font-weight: 700; letter-spacing: .06em; }

/* Contact */
.contact-feature { padding-bottom: 116px; }
.contact-feature-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 10px; }
.contact-primary, .contact-note { min-height: 460px; padding: 44px; border-radius: 28px; box-shadow: 0 22px 55px rgba(20,33,61,.11); }
.contact-primary { display: flex; flex-direction: column; align-items: flex-start; color: var(--white); background: linear-gradient(145deg, #3f719f, #244a70); }
.contact-primary h2 { max-width: 760px; margin: auto 0 25px; font-size: clamp(3rem, 6vw, 6.2rem); }
.contact-primary > p:not(.mini-label) { max-width: 590px; color: rgba(255,255,255,.74); font-size: .94rem; }
.contact-primary > a { margin-top: 26px; font-size: clamp(1.1rem, 2vw, 1.8rem); font-weight: 600; letter-spacing: -.04em; text-underline-offset: 7px; }
.contact-note { display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); background: linear-gradient(155deg, #ffffff, #f0ede6); border: 1px solid var(--line); }
.contact-note-mark { width: 58px; height: 58px; display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 50%; font-size: 1.4rem; }
.contact-note p { margin: auto 0 25px; font-size: clamp(1.8rem, 3.4vw, 3.6rem); line-height: 1.03; letter-spacing: -.06em; }
.contact-note > span:last-child { color: var(--muted); font-size: .69rem; }
.support-paths { padding: 116px 0 132px; background: rgba(240,237,230,.76); }
.compact-title { margin-bottom: 52px; }
.compact-title h2 { font-size: clamp(3.3rem, 6vw, 6.4rem); }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.support-card { position: relative; min-height: 350px; display: grid; grid-template-columns: 40px 1fr; gap: 10px; padding: 28px; border-radius: 26px; text-decoration: none; box-shadow: 0 20px 50px rgba(20,33,61,.09); transition: transform .24s var(--ease); }
.support-card:hover { transform: translateY(-5px); }
.support-card > span { font-size: .65rem; font-weight: 700; }
.support-card > div { align-self: end; }
.support-card h3 { margin-bottom: 14px; font-size: 1.8rem; }
.support-card p { margin: 0; color: inherit; opacity: .68; font-size: .82rem; }
.support-card b { position: absolute; right: 28px; top: 25px; font-size: 1rem; font-weight: 500; }
.support-details { padding: 132px 0; }
.details-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.details-grid h2 { margin-top: 22px; font-size: clamp(3.2rem, 5.5vw, 5.6rem); }
.detail-list { border-top: 1px solid var(--line); }
.detail-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.detail-list span { font-weight: 700; font-size: .75rem; }
.detail-list p { margin: 0; color: var(--muted); font-size: .84rem; }

/* Privacy */
.privacy-hero { padding-bottom: 112px; }
.privacy-principles { padding: 10px; }
.principle-summary { width: 100%; max-width: none; display: grid; grid-template-columns: repeat(3, 1fr); border-radius: 28px; overflow: hidden; background: linear-gradient(145deg, #213252, #101b33); box-shadow: 0 24px 60px rgba(20,33,61,.16); }
.principle-summary > div { min-height: 250px; display: grid; grid-template-columns: 46px 1fr; align-content: end; padding: 32px; color: var(--white); border-right: 1px solid rgba(255,255,255,.14); }
.principle-summary > div:nth-child(2) { color: var(--white); background: linear-gradient(145deg, #3f719f, #244a70); }
.principle-summary > div:last-child { border: 0; }
.principle-summary span { grid-row: 1 / span 2; padding-top: 5px; font-size: .65rem; font-weight: 700; }
.principle-summary strong { font-size: 1.45rem; font-weight: 600; letter-spacing: -.045em; }
.principle-summary p { margin: 12px 0 0; color: inherit; opacity: .68; font-size: .76rem; }
.policy-section { padding: 132px 0; background: rgba(240,237,230,.7); }
.policy-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: 100px; justify-content: center; }
.policy-nav { position: sticky; top: 118px; align-self: start; display: flex; flex-direction: column; padding: 25px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.policy-nav p { margin: 0 0 14px; font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.policy-nav a { padding: 7px 0; color: var(--muted); font-size: .72rem; text-decoration: none; }
.policy-nav a:hover { color: var(--ink); }
.policy-copy > section { position: relative; padding: 0 0 70px 58px; scroll-margin-top: 110px; }
.policy-copy > section + section { padding-top: 8px; border-top: 1px solid var(--line); }
.policy-number { position: absolute; left: 0; top: 7px; color: var(--orange); font-size: .65rem; font-weight: 700; }
.policy-copy h2 { margin-bottom: 22px; font-size: clamp(2.1rem, 4vw, 3.6rem); }
.policy-copy h3 { margin: 31px 0 10px; font-size: 1.08rem; letter-spacing: -.025em; }
.policy-copy p, .policy-copy address { color: var(--muted); font-size: .92rem; font-style: normal; line-height: 1.75; }
.policy-copy address { padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 12px 30px rgba(20,33,61,.06); }
.policy-copy address a { color: var(--ink); text-underline-offset: 4px; }
.policy-contact { min-height: 330px; padding: 46px 46px 46px 76px !important; color: var(--white); background: linear-gradient(145deg, #3f719f, #244a70); border: 0 !important; border-radius: 26px; box-shadow: 0 20px 50px rgba(20,33,61,.14); }
.policy-contact .policy-number { left: 28px; top: 54px; }
.policy-contact p { color: rgba(255,255,255,.74); }

/* Motion system */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--orange), var(--lime));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.site-nav {
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(248,246,241,.96);
  border-color: rgba(20,33,61,.12);
  box-shadow: 0 12px 34px rgba(20,33,61,.08);
}

.motion-ready .motion-reveal {
  opacity: 0;
  filter: blur(5px);
  transition:
    opacity .75s var(--ease) var(--reveal-delay, 0ms),
    filter .75s var(--ease) var(--reveal-delay, 0ms),
    transform .9s var(--ease) var(--reveal-delay, 0ms);
}

.motion-ready .motion-reveal:not(.tilt-surface) {
  transform: translate3d(0, 34px, 0) scale(.985);
}

.motion-ready .motion-reveal.tilt-surface {
  --reveal-y: 34px;
}

.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
}

.motion-ready .motion-reveal.is-visible:not(.tilt-surface) {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ready .motion-reveal.is-visible.tilt-surface {
  --reveal-y: 0px;
}

.motion-ready .motion-reveal.is-visible.is-settled.tilt-surface {
  transition: transform .24s var(--ease), box-shadow .32s var(--ease);
}

.tilt-surface {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-lift: 0px;
  transform: perspective(1100px) translate3d(0, calc(var(--tilt-lift) + var(--reveal-y, 0px)), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease);
}

.tilt-surface:hover {
  --tilt-lift: -5px;
}

.tilt-surface > * {
  transform-style: preserve-3d;
}

.tilt-surface .showcase-topline,
.tilt-surface .showcase-copy,
.tilt-surface .craft-symbol,
.tilt-surface h2,
.tilt-surface h3 {
  transform: translateZ(18px);
}

.showcase-phone {
  transform: translate3d(0, var(--parallax-y, 0px), 28px) rotate(3deg);
}

.showcase-main:hover .showcase-phone {
  transform: translate3d(0, calc(var(--parallax-y, 0px) - 8px), 28px) rotate(1deg);
}

.curio-visual img {
  transform: translate3d(0, var(--parallax-y, 0px), 22px) scale(1.035);
  transition: transform .25s linear;
}

@media (max-width: 1040px) {
  .section-title { grid-template-columns: 170px 1fr; }
  .hero-showcase { min-height: 620px; grid-template-columns: 1.3fr .7fr; }
  .showcase-phone { width: 54%; height: 520px; }
  .curio-layout { gap: 50px; }
  .curio-visual { height: 660px; }
  .craft-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 36px, 1240px); }
  .nav-links > a:not(.nav-cta) { display: none; }
  .home-hero { padding: 68px 0 84px; }
  .section-title, .portfolio-heading, .inner-hero-grid, .details-grid { grid-template-columns: 1fr; }
  .hero-heading .eyebrow { margin: 0 0 34px; }
  .hero-heading h1 { font-size: clamp(3.3rem, 13vw, 6rem); }
  .hero-intro { margin: 32px 0 44px; }
  .hero-showcase { min-height: auto; grid-template-columns: 1fr; }
  .showcase-main { min-height: 620px; }
  .showcase-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .signal-card { min-height: 400px; }
  .metric-card { grid-template-columns: 1fr; }
  .metric-card div { border-right: 0; border-bottom: 1px solid var(--line); }
  .statement { padding: 92px 0 70px; }
  .section-title .section-index { margin-bottom: 30px; }
  .curio-layout { grid-template-columns: 1fr; }
  .curio-visual { height: 700px; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-card:nth-child(2) { margin-top: 0; }
  .portfolio-heading > p { max-width: 520px; }
  .portfolio-row { grid-template-columns: 44px 1fr 32px; }
  .portfolio-category { display: none; }
  .closing-card { grid-template-columns: 1fr; align-items: end; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-feature-grid { grid-template-columns: 1fr; }
  .contact-note { min-height: 390px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 290px; }
  .principle-summary { grid-template-columns: 1fr; }
  .principle-summary > div { min-height: 200px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .policy-layout { grid-template-columns: 1fr; gap: 60px; }
  .policy-nav { position: static; display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 20px; }
  .policy-nav p { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-inner { height: 68px; }
  .nav-cta { padding: 9px 13px !important; }
  .home-hero { padding-top: 52px; }
  .hero-heading h1 { font-size: clamp(2.85rem, 15vw, 4.4rem); }
  .showcase-main { min-height: 580px; }
  .showcase-phone { right: -5%; top: 12%; width: 68%; height: 450px; }
  .showcase-copy { left: 22px; bottom: 24px; }
  .showcase-copy img { width: 58px; height: 58px; }
  .showcase-side { grid-template-columns: 1fr; }
  .signal-card { min-height: 380px; }
  .metric-card { grid-template-columns: repeat(3, 1fr); min-height: 150px; }
  .metric-card div { border-right: 1px solid var(--line); border-bottom: 0; }
  .metric-card strong { font-size: 1.35rem; }
  .curio-visual { height: 560px; }
  .portfolio-name { font-size: 1.65rem; }
  .closing-section { padding-inline: 5px; }
  .closing-card { min-height: 560px; padding: 54px 24px; border-radius: 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-links { flex-direction: column; }
  .inner-hero { padding: 68px 0 70px; }
  .inner-hero h1 { margin-top: 30px; font-size: clamp(3.4rem, 18vw, 5.7rem); }
  .contact-primary, .contact-note { min-height: 410px; padding: 28px; }
  .support-paths, .support-details, .policy-section { padding: 86px 0; }
  .detail-list > div { grid-template-columns: 100px 1fr; }
  .policy-copy > section { padding-left: 38px; }
  .policy-contact { padding: 38px 26px 38px 58px !important; }
  .policy-contact .policy-number { left: 22px; top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  .motion-ready .motion-reveal { opacity: 1; filter: none; transform: none; }
  .showcase-phone, .showcase-main:hover .showcase-phone, .curio-visual img { transform: none; }
}
