﻿:root {
    --paper: #f0ebe8;
    --paper-2: #e7e1dd;
    --paper-3: #d8d0cb;
    --ink: #141820;
    --ink-70: rgba(20,24,32,0.70);
    --ink-45: rgba(20,24,32,0.45);
    --ink-12: rgba(20,24,32,0.12);
    --ink-08: rgba(20,24,32,0.08);
    --cream: #f0ece6;
    --cream-45: rgba(240,236,230,0.45);
    --cream-70: rgba(240,236,230,0.70);
    --accent: #c0603a;
    --acc-d: #9a4a2c;
    --fd: "Syne", system-ui, sans-serif;
    --fb: "Bricolage Grotesque", system-ui, sans-serif;
    --max: 1200px;
    --gutter: clamp(2rem, 5vw, 7rem);
    --t: 600ms cubic-bezier(0.16, 1, 0.3, 1);
    --t-fast: 240ms ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--fb);
    background: var(--paper);
    color: var(--ink);
    font-weight: 400; line-height: 1.6;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }

h1, h2, h3, .syne { font-family: var(--fd); font-weight: 700; line-height: 0.98; letter-spacing: -0.02em; }
.eyebrow { font-family: var(--fb); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-45); display: inline-flex; align-items: center; }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background var(--t-fast), border-color var(--t-fast); border-bottom: 1px solid transparent; }
.site-header.solid { background: rgba(240,235,232,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--ink-08); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 1.1rem; }
.brand { font-family: var(--fd); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; color: var(--ink); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-family: var(--fb); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-70); position: relative; padding: 3px 0; transition: color var(--t-fast); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--accent); transition: width var(--t); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-right: -8px; }
.menu-toggle span { width: 24px; height: 1.6px; background: var(--ink); transition: var(--t-fast); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 0.55rem; font-family: var(--fb); font-size: 0.9rem; font-weight: 600; padding: 0.9rem 1.6rem; border-radius: 100px; border: 1.5px solid transparent; transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform var(--t-fast); }
.btn .arrow { transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--acc-d); transform: translateY(-2px); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--accent); transform: translateY(-2px); }
.btn--lineInk { border-color: var(--ink-12); color: var(--ink); }
.btn--lineInk:hover { border-color: var(--ink); transform: translateY(-2px); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 84svh; display: flex; flex-direction: column; }
.hero-grid { flex: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: 6rem 2.5rem; }
.hero-copy { min-width: 0; }
.hero-eyebrow { margin-bottom: 1.5rem; }
.hero h1 { font-family: var(--fd); font-weight: 800; font-size: clamp(2.6rem, 5.6vw, 5.2rem); line-height: 0.93; letter-spacing: -0.03em; color: var(--ink); }
.hero h1 .dot { color: var(--accent); }
.hero-statement { font-family: var(--fb); font-size: clamp(1.02rem, 1.4vw, 1.22rem); font-weight: 400; line-height: 1.45; color: var(--ink-70); max-width: 40ch; margin-top: 1.6rem; }
.hero-statement b { font-weight: 600; color: var(--ink); }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-visual { position: relative; min-width: 0; width: 100%; height: min(54vh, 470px); }
.hero-visual canvas { display: block; width: 100%; height: 100%; cursor: grab; }

/* ---------- Ticker ---------- */
.ticker { border-top: 1px solid var(--ink-12); border-bottom: 1px solid var(--ink-12); display: flex; align-items: stretch; background: var(--paper); }
.ticker-label { flex: none; display: flex; align-items: center; padding: 0 1.3rem; background: var(--accent); color: #fff; font-family: var(--fb); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.ticker-window { overflow: hidden; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.ticker-track { display: flex; width: max-content; animation: scroll 46s linear infinite; padding: 0.95rem 0; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span { font-family: var(--fb); font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-70); padding: 0 1.5rem; white-space: nowrap; }
.ticker-track span::after { content: "/"; color: var(--accent); margin-left: 1.5rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(5rem, 13vh, 9rem) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: clamp(2.5rem, 6vh, 4rem); padding-bottom: 1.6rem; border-bottom: 1px solid var(--ink-12); }
.section-head h2 { font-size: clamp(2.2rem, 6vw, 4.6rem); font-weight: 800; }
.section-head .count { font-family: var(--fb); font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-45); }
a.count { transition: color var(--t-fast); }
a.count:hover { color: var(--accent); }

/* ---------- WORK (featured rows) ---------- */
.work-list { display: grid; gap: clamp(2.5rem, 5vh, 4.5rem); }
.proj { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.proj:nth-child(even) .proj-media { order: 2; }
.proj-media { position: relative; border-radius: 16px; overflow: hidden; background: var(--paper-2); border: 1px solid var(--ink-08); box-shadow: 0 18px 50px rgba(20,24,32,0.12); }
.proj-media { transition: box-shadow var(--t-fast), border-color var(--t-fast); }
.proj:hover .proj-media { border-color: rgba(192,96,58,0.3); box-shadow: 0 24px 60px rgba(20,24,32,0.18); }
.plate { transition: filter var(--t-fast); }
.proj:hover .plate { filter: brightness(1.08); }
.plate { aspect-ratio: 16/10; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.4rem,3vw,2.2rem); background: linear-gradient(145deg, var(--ink), #20252f); color: var(--cream); }
.plate-top { display: flex; justify-content: space-between; font-family: var(--fb); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-45); }
.plate-top .stage.prod { color: #5cba8a; }
.plate-top .stage.dev  { color: #e0b15a; }
.plate-top .stage.plan { color: #8fb4e0; }
.plate-word { font-family: var(--fd); font-weight: 700; font-size: clamp(1.7rem,3.6vw,2.7rem); line-height: 1.0; }
.plate-url { font-family: var(--fb); font-size: 0.74rem; color: var(--cream-70); }
/* screenshot variant - clean shot, only a small status pill on top */
.card .proj-media { overflow: hidden; }
.plate.shot { position: relative; background-color: #12151c; background-size: cover; background-position: top center; padding: clamp(1rem, 2.2vw, 1.35rem); justify-content: flex-end; transition: transform 900ms cubic-bezier(0.16,1,0.3,1); }
.plate.shot::before { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,17,23,0.5) 0%, rgba(14,17,23,0) 28%); }
.plate.shot > * { position: relative; z-index: 1; }
.plate.shot .plate-word, .plate.shot .plate-url { display: none; }
.plate.shot .plate-top { color: var(--cream); justify-content: flex-start; gap: 0.5rem; }
.plate.shot .plate-top span { background: rgba(15,18,25,0.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); padding: 0.34rem 0.72rem; border-radius: 100px; font-size: 0.64rem; line-height: 1.4; }
.card:hover .proj-media { border-color: rgba(192,96,58,0.3); box-shadow: 0 24px 60px rgba(20,24,32,0.18); }
.card:hover .plate { filter: brightness(1.06); }
.proj:hover .plate.shot, .card:hover .plate.shot { filter: none; }
.proj-media:hover .plate.shot { transform: scale(1.04); filter: brightness(1.04); }
.proj-no { font-family: var(--fd); font-weight: 700; font-size: 0.9rem; color: var(--accent); letter-spacing: 0.05em; }
.proj-title { font-size: clamp(1.9rem, 4vw, 3.1rem); font-weight: 700; margin: 0.5rem 0 0.4rem; }
.proj-kicker { font-family: var(--fb); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 1.1rem; }
.proj-desc { font-family: var(--fb); font-size: 1.05rem; color: var(--ink-70); margin-bottom: 1.3rem; max-width: 48ch; }
.proj-tech { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.5rem; }
.proj-tech span { font-family: var(--fb); font-size: 0.78rem; color: var(--ink-70); border: 1px solid var(--ink-12); padding: 0.3rem 0.75rem; border-radius: 100px; }
.proj-links { display: flex; gap: 1.4rem; align-items: center; }
.proj-link { font-family: var(--fb); font-size: 0.9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.45rem; padding-bottom: 3px; border-bottom: 2px solid var(--ink); transition: color var(--t-fast), border-color var(--t-fast); }
.proj-link:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- PROJECTS PAGE (card grid) ---------- */
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.card { display: flex; flex-direction: column; }
.card .proj-media { margin-bottom: 1.5rem; }
.card .proj-title { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-top: 0.45rem; }
.card .proj-desc { font-size: 1rem; max-width: none; }
@media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }

/* ---------- PAGE HEADER (sub pages) ---------- */
.page-head { padding-block: clamp(8rem, 16vh, 11rem) clamp(2.5rem, 6vh, 4rem); }
.page-head h1 { font-family: var(--fd); font-weight: 800; font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.95; letter-spacing: -0.03em; margin: 1.2rem 0; }
.page-head h1 .dot { color: var(--accent); }
.page-head p { font-family: var(--fb); font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--ink-70); max-width: 54ch; }
.page-head--rule { border-bottom: 1px solid var(--ink-12); }

/* ---------- BLOG list ---------- */
.posts { display: grid; }
.post-row { display: grid; grid-template-columns: 150px 1fr auto; gap: 1.2rem 2rem; align-items: baseline; padding: 1.8rem 0; border-top: 1px solid var(--ink-12); transition: background var(--t-fast); }
.posts .post-row:last-child { border-bottom: 1px solid var(--ink-12); }
.post-date { font-family: var(--fb); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-45); }
.post-main h3 { font-family: var(--fd); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.85rem); margin-bottom: 0.45rem; transition: color var(--t-fast); }
.post-main .post-tag { font-family: var(--fb); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: inline-block; }
.post-main p { font-family: var(--fb); font-size: 0.98rem; color: var(--ink-70); max-width: 62ch; }
.post-arrow { align-self: center; font-size: 1.1rem; color: var(--ink-45); transition: transform var(--t-fast), color var(--t-fast); }
.post-row:hover h3 { color: var(--accent); }
.post-row:hover .post-arrow { color: var(--accent); transform: translate(4px, -4px); }
@media (max-width: 680px) { .post-row { grid-template-columns: 1fr; gap: 0.5rem; } .post-arrow { display: none; } }

/* ---------- ARTICLE (post page) ---------- */
.article { padding: clamp(7.5rem, 15vh, 10rem) 0 clamp(4rem, 8vh, 6rem); }
.article-inner { max-width: 720px; margin: 0 auto; }
.back-link { font-family: var(--fb); font-size: 0.85rem; font-weight: 600; color: var(--ink-70); display: inline-flex; gap: 0.4rem; margin-bottom: 2rem; transition: color var(--t-fast); }
.back-link:hover { color: var(--accent); }
.article .meta { font-family: var(--fb); font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-45); margin-bottom: 1.2rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.article .meta .tag { color: var(--accent); font-weight: 600; }
.article h1 { font-family: var(--fd); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.04; letter-spacing: -0.02em; margin-bottom: 1.6rem; }
.article-body { font-family: var(--fb); font-size: 1.1rem; line-height: 1.7; }
.article-body p { margin-bottom: 1.3rem; color: var(--ink-70); }
.article-body h2 { font-family: var(--fd); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 2.4rem 0 0.9rem; color: var(--ink); letter-spacing: -0.01em; }
.article-body ul { margin: 0 0 1.3rem 1.3rem; color: var(--ink-70); }
.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--accent); border-bottom: 1px solid var(--ink-12); }
.article-body a:hover { border-color: var(--accent); }
.article-body code { font-family: ui-monospace, "SF Mono", Menlo, monospace; background: var(--paper-2); padding: 0.12rem 0.4rem; border-radius: 5px; font-size: 0.88em; }
.article-body blockquote { border-left: 2px solid var(--accent); padding-left: 1.2rem; margin: 0 0 1.3rem; color: var(--ink); font-style: italic; }

/* ---------- CASE STUDIES ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-family: var(--fb); font-size: 0.82rem; color: var(--ink-45); margin-bottom: 1.4rem; }
.breadcrumbs a { color: var(--ink-70); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--accent); }
.case-hero { padding-top: clamp(2rem, 5vh, 3.5rem); }
.case-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top center; border-radius: 16px; border: 1px solid var(--ink-08); box-shadow: 0 18px 50px rgba(20,24,32,0.12); background: var(--paper-2); }
.case-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; padding-block: clamp(3rem, 8vh, 6rem); }
.case-main { max-width: 760px; }
.case-main h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin: 2.2rem 0 0.8rem; letter-spacing: -0.01em; }
.case-main h2:first-child { margin-top: 0; }
.case-main p { font-size: 1.08rem; color: var(--ink-70); margin-bottom: 1.1rem; }
.case-main a { color: var(--accent); border-bottom: 1px solid var(--ink-12); }
.case-main a:hover { border-color: var(--accent); }
.case-aside { position: sticky; top: 6rem; display: grid; gap: 1rem; }
.case-facts { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.case-facts span { font-family: var(--fb); font-size: 0.78rem; color: var(--ink-70); border: 1px solid var(--ink-12); padding: 0.32rem 0.75rem; border-radius: 100px; background: rgba(255,255,255,0.16); }
@media (max-width: 860px) { .case-grid { grid-template-columns: 1fr; } .case-aside { position: static; } }

/* ---------- ABOUT ---------- */
.about { background: var(--paper-2); }
.about-grid { display: grid; grid-template-columns: 1.4fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.about-copy p { font-family: var(--fb); font-size: clamp(1.1rem,1.6vw,1.35rem); color: var(--ink); line-height: 1.55; margin-bottom: 1.3rem; max-width: 40ch; font-weight: 500; }
.about-copy p.dim { color: var(--ink-70); font-weight: 400; font-size: 1.05rem; max-width: 52ch; }
.about-copy .accentword { color: var(--accent); text-decoration: underline; text-decoration-color: transparent; text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: text-decoration-color var(--t-fast); }
.about-copy .accentword:hover { text-decoration-color: var(--accent); }
.about-aside { position: relative; display: flex; justify-content: flex-end; }
@media (max-width: 940px) { .about-aside { justify-content: flex-start; } }
.portrait { border-radius: 14px; overflow: hidden; border: 1px solid var(--ink-08); box-shadow: 0 14px 44px rgba(20,24,32,0.12); width: 100%; max-width: 300px; }
.portrait img { display: block; width: 100%; height: 360px; object-fit: cover; object-position: center 20%; filter: contrast(1.02) saturate(1.03); }
.skills { margin-top: 1.8rem; }
.skills .row { padding: 0.85rem 0; border-top: 1px solid var(--ink-12); display: grid; grid-template-columns: 130px 1fr; gap: 1rem; align-items: baseline; }
.skills .row:last-child { border-bottom: 1px solid var(--ink-12); }
.skills .row { transition: border-color var(--t-fast); }
.skills .row:hover { border-color: var(--ink-45); }
.skills .row:hover .cat { color: var(--acc-d); }
.skills .cat { font-family: var(--fb); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.skills .items { font-family: var(--fb); font-size: 0.95rem; color: var(--ink); }
@media (max-width: 520px) { .skills .row { grid-template-columns: 1fr; gap: 0.2rem; } }

/* ---------- CONTACT ---------- */
.contact { border-top: 1px solid var(--ink-12); }
.contact h2 { font-family: var(--fd); font-weight: 800; font-size: clamp(2.4rem, 7vw, 5.5rem); color: var(--ink); margin: 1rem 0 2rem; max-width: 16ch; }
.contact h2 .dot { color: var(--accent); }
.contact-email { font-family: var(--fb); font-size: clamp(1.2rem, 3.2vw, 2.1rem); font-weight: 500; color: var(--ink); border-bottom: 2px solid var(--ink-12); padding-bottom: 4px; transition: color var(--t-fast), border-color var(--t-fast); word-break: break-word; }
.contact-email:hover { color: var(--accent); border-color: var(--accent); }
.contact-foot { display: flex; flex-wrap: wrap; gap: 1.4rem 3rem; justify-content: space-between; align-items: center; margin-top: clamp(3rem,7vh,4.5rem); padding-top: 1.8rem; border-top: 1px solid var(--ink-12); }
.socials { display: flex; gap: 1.5rem; }
.socials a { font-family: var(--fb); font-size: 0.88rem; font-weight: 500; color: var(--ink-70); transition: color var(--t-fast); }
.socials a:hover { color: var(--accent); }
.contact-foot .place { font-family: var(--fb); font-size: 0.82rem; color: var(--ink-45); }

footer { border-top: 1px solid var(--ink-12); padding: 2rem 0 2.6rem; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 0.7rem 2rem; justify-content: space-between; align-items: center; font-family: var(--fb); font-size: 0.76rem; color: var(--ink-45); }
.footer-grid a:hover { color: var(--accent); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 800ms cubic-bezier(0.16,1,0.3,1), transform 800ms cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

@media (max-width: 940px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.25rem; padding-top: 7rem; }
    .hero-visual { height: 300px; order: -1; }
    .about .container { display: flex; flex-direction: column; gap: 2.5rem; }
    .about-grid { display: contents; }
    .about-aside { order: -1; justify-content: flex-start; }
    .about .section-head { margin-bottom: 0; }
    .portrait { max-width: none; }
    .portrait img { height: 380px; }
    .proj { grid-template-columns: 1fr; gap: 1.8rem; }
    .proj:nth-child(even) .proj-media { order: 0; }
    .proj-media { order: -1; }
}
@media (max-width: 680px) {
    .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw, 300px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem; padding: 2rem var(--gutter); background: var(--paper-2); border-left: 1px solid var(--ink-12); transform: translateX(100%); transition: transform var(--t); z-index: 105; }
    .nav-links.open { transform: translateX(0); box-shadow: -20px 0 60px rgba(20,24,32,0.18); }
    .nav-links a { color: var(--ink); font-size: 1.05rem; }
    .menu-toggle { display: flex; z-index: 110; }
    body.nav-open { overflow: hidden; }
    body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(20,24,32,0.42); z-index: 99; }
    body.nav-open .site-header.solid { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .hero-actions { width: 100%; flex-direction: column; gap: 0.7rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .page-head { padding-block: 6.5rem 2rem; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } .reveal { opacity: 1; transform: none; } }

/* ---------- Services / Pricing ---------- */
.pricing-tiers { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.pricing-card { position: relative; background: var(--paper-2); border: 1px solid var(--ink-12); border-radius: 20px; padding: clamp(1.8rem, 3vw, 2.4rem); display: flex; flex-direction: column; }
.pricing-card--feature { border-color: var(--accent); box-shadow: 0 24px 60px -32px rgba(192,96,58,0.45); }
.pricing-ribbon { position: absolute; top: 1.5rem; right: 1.5rem; background: var(--accent); color: #fff; font-family: var(--fb); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 100px; }
.pricing-num { font-family: var(--fd); font-weight: 800; color: var(--accent); letter-spacing: 0.1em; font-size: 0.8rem; margin-bottom: 0.7rem; display: block; }
.pricing-name { font-size: clamp(1.5rem, 2.4vw, 1.8rem); margin-bottom: 0.4rem; }
.pricing-sub { color: var(--ink-70); font-size: 0.92rem; margin-bottom: 1.2rem; }
.pricing-amt { display: flex; align-items: baseline; flex-wrap: wrap; gap: 0.4rem; font-family: var(--fd); font-weight: 800; font-size: clamp(1.9rem, 3.2vw, 2.3rem); letter-spacing: -0.02em; }
.pricing-amt-num { white-space: nowrap; }
.pricing-per { font-family: var(--fb); font-weight: 500; font-size: 0.85rem; color: var(--ink-45); }
.pricing-note { color: var(--ink-70); font-size: 0.85rem; margin-top: 0.15rem; }
.pricing-turn { color: var(--ink-45); font-size: 0.78rem; margin: 0.6rem 0 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--ink-12); }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.4rem; }
.pricing-list li { font-size: 0.92rem; line-height: 1.4; padding-left: 1.3rem; position: relative; }
.pricing-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; font-size: 0.85rem; }
.pricing-chip { margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; background: var(--paper-3); border: 1px solid var(--ink-12); border-radius: 100px; padding: 0.45rem 0.9rem; font-family: var(--fb); font-size: 0.78rem; font-weight: 600; }

.pricing-extras { margin-top: 2rem; background: var(--paper-2); border: 1px solid var(--ink-12); border-radius: 20px; padding: clamp(1.6rem, 3vw, 2.2rem); }
.pricing-extras h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.pricing-extras-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 2rem; }
.pricing-extra { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: 0.88rem; border-bottom: 1px dotted var(--ink-12); padding-bottom: 0.6rem; }
.pricing-extra-cost { font-weight: 700; color: var(--accent); white-space: nowrap; margin-left: 0.8rem; }

.pricing-terms { margin-top: 1.2rem; font-size: 0.82rem; color: var(--ink-45); line-height: 1.7; }
.pricing-terms b { color: var(--ink); font-weight: 600; }

.pricing-cta { margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--ink-12); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.pricing-cta p { font-size: 0.95rem; max-width: 46ch; }
.pricing-cta p b { color: var(--accent); }
.pricing-cta-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

@media (max-width: 760px) {
    .pricing-tiers { grid-template-columns: 1fr; }
    .pricing-extras-grid { grid-template-columns: 1fr; }
}
