@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-soft: #f4f4f4;
  --ink: #171717;
  --ink-2: #404040;
  --muted: #737373;
  --muted-2: #a3a3a3;
  --line: #e5e5e5;
  --line-soft: #efefef;
  --corner: #cbcbcb;
  --primary: #ff7c61;
  --primary-2: #ff68a5;
  --primary-soft: rgba(255, 136, 150, .20);
  --shadow-primary: 0 76px 21px rgba(130,130,130,0), 0 48px 19px rgba(130,130,130,.02), 0 27px 16px rgba(130,130,130,.08), 0 12px 12px rgba(130,130,130,.13), 0 3px 7px rgba(130,130,130,.15);
  --container: 1280px;
  --ease: cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Figtree', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: rgba(255,124,97,.22); }

.ox-container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.ox-section { padding: 40px 0; }
.ox-eyebrow { display: block; margin: 0 0 16px; color: var(--primary); font-size: 14px; font-weight: 500; text-transform: uppercase; }
.ox-section-title { margin: 0 0 16px; color: var(--ink); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; font-weight: 600; letter-spacing: -1.44px; }
.ox-section-copy { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.ox-section-head { max-width: 576px; margin: 0 auto 64px; text-align: center; }

/* HEADER */
.ox-header { position: sticky; top: 0; z-index: 50; height: 64px; background: transparent; transition: background-color .3s ease, box-shadow .3s ease, backdrop-filter .3s ease; }
.ox-header.is-scrolled { background: rgba(255,255,255,.8); box-shadow: 0 1px 0 rgba(0,0,0,.04); backdrop-filter: blur(12px); }
.ox-nav { display: flex; height: 64px; align-items: center; justify-content: space-between; }
.ox-brand { display: inline-flex; align-items: baseline; color: var(--ink); font-size: 24px; font-weight: 700; letter-spacing: -.7px; }
.ox-brand span { background: linear-gradient(270deg,var(--primary),var(--primary-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ox-nav-links { display: none; align-items: center; gap: 32px; }
.ox-nav-links a { color: var(--ink); font-size: 16px; font-weight: 500; transition: color .2s ease; }
.ox-nav-links a:hover, .ox-nav-links a.is-active { color: var(--primary); }
.ox-nav-cta { display: none; }
.ox-menu-toggle { display: inline-grid; width: 42px; height: 42px; place-items: center; border: 0; background: transparent; cursor: pointer; }
.ox-menu-toggle span, .ox-menu-toggle::before, .ox-menu-toggle::after { width: 22px; height: 1.5px; background: var(--ink); content: ''; transition: .3s ease; }
.ox-menu-toggle { position: relative; }
.ox-menu-toggle span { position: absolute; top: 20px; left: 10px; }
.ox-menu-toggle::before { position: absolute; top: 14px; left: 10px; }
.ox-menu-toggle::after { position: absolute; top: 26px; left: 10px; }
.ox-menu-toggle.is-open span { opacity: 0; }
.ox-menu-toggle.is-open::before { top: 20px; transform: rotate(45deg); }
.ox-menu-toggle.is-open::after { top: 20px; transform: rotate(-45deg); }
.ox-mobile-menu { position: fixed; inset: 64px 0 0; z-index: 45; visibility: hidden; background: rgba(245,245,245,.98); opacity: 0; transform: translateY(-10px); transition: opacity .3s ease, transform .3s ease, visibility .3s; }
.ox-mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; }
.ox-mobile-menu nav { padding-top: 34px; }
.ox-mobile-menu a { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--line); font-size: 28px; font-weight: 600; letter-spacing: -1px; }
.ox-mobile-menu small { color: var(--muted); font-size: 12px; font-weight: 500; }

/* BUTTONS - same interaction language as reference */
.ox-btn { position: relative; display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 12px 20px; border: 0; border-radius: 4px; font-size: 14px; font-weight: 500; cursor: pointer; transition: background .3s ease, box-shadow .3s ease, transform .3s ease; }
.ox-btn--dark { background: #0a0a0a; color: #fff; }
.ox-btn--dark:hover { background: #404040; box-shadow: 0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px -4px rgba(0,0,0,.10); }
.ox-btn--light { background: #fff; color: #0a0a0a; box-shadow: var(--shadow-primary); }
.ox-btn--gradient-wrap { position: relative; display: inline-block; padding: 4px; background: var(--primary-soft); }
.ox-btn--gradient-wrap::before, .ox-btn--gradient-wrap::after, .ox-btn--gradient-wrap > i::before, .ox-btn--gradient-wrap > i::after { position: absolute; z-index: 2; width: 3px; height: 3px; background: linear-gradient(270deg,#ff8268,#fe7eb2); content: ''; }
.ox-btn--gradient-wrap::before { top: -1px; left: -1px; }
.ox-btn--gradient-wrap::after { top: -1px; right: -1px; }
.ox-btn--gradient-wrap > i::before { bottom: -1px; left: -1px; }
.ox-btn--gradient-wrap > i::after { right: -1px; bottom: -1px; }
.ox-btn--gradient { min-height: 38px; padding: 8px 16px; background: linear-gradient(270deg,var(--primary),var(--primary-2)); color: #fff; box-shadow: inset 0 -4px 8px rgba(255,255,255,.20), inset 0 4px 4px rgba(255,255,255,.20); font-weight: 600; }
.ox-slide-label { position: relative; display: flex; min-height: 20px; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.ox-slide-label span { display: block; transition: transform .3s ease-in-out; }
.ox-slide-label span + span { position: absolute; top: 100%; left: 0; right: 0; text-align: center; }
.ox-btn:hover .ox-slide-label span:first-child, .ox-btn--gradient-wrap:hover .ox-slide-label span:first-child { transform: translateY(-100%); }
.ox-btn:hover .ox-slide-label span + span, .ox-btn--gradient-wrap:hover .ox-slide-label span + span { transform: translateY(-100%); }

/* HERO */
.ox-hero { padding: 40px 0 32px; }
.ox-hero-copy { max-width: 680px; margin: 0 auto; padding: 0 0 40px; text-align: center; }
.ox-hero h1 { margin: 0 0 16px; color: var(--ink); font-size: clamp(36px, 5.2vw, 60px); line-height: 1.13; font-weight: 600; letter-spacing: -1.8px; }
.ox-hero-orb { display: inline-block; width: 48px; height: 34px; margin: -8px 4px 0; vertical-align: middle; border-radius: 999px; background: radial-gradient(circle at 30% 30%, #fff 0 8%, transparent 9%), linear-gradient(135deg,#ffb9a8,#ff68a5 56%,#846cff); box-shadow: inset 0 0 0 1px rgba(255,255,255,.75); transform: rotate(-8deg); }
.ox-hero p { margin: 0 0 44px; color: var(--muted); font-size: 18px; line-height: 1.55; font-weight: 500; }
.ox-hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.ox-hero-stage-wrap { position: relative; padding: 32px 20px; }
.ox-hero-shape { position: absolute; inset: 4% 2% 0; overflow: hidden; pointer-events: none; }
.ox-hero-shape::before, .ox-hero-shape::after { position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; filter: blur(34px); content: ''; opacity: .7; }
.ox-hero-shape::before { top: 6%; left: 2%; background: rgba(255,124,97,.33); }
.ox-hero-shape::after { right: 2%; bottom: 2%; background: rgba(255,104,165,.25); }
.ox-hero-stage { position: relative; max-width: 1066px; margin: 0 auto; overflow: hidden; padding: 12px; border: 12px solid rgba(255,255,255,.40); border-radius: 20px; background: #fff; background-clip: padding-box; }
.ox-hero-stage img { width: 100%; aspect-ratio: 16/8.1; object-fit: cover; border-radius: 8px; filter: saturate(.72) contrast(.96); }
.ox-hero-stage::after { position: absolute; right: 0; bottom: 0; left: 0; height: 38%; background: linear-gradient(to top,rgba(255,104,165,.13),transparent); content: ''; pointer-events: none; }

/* PROOF */
.ox-proof-head { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 44px; text-align: center; }
.ox-proof-head p { margin: 0; color: #404040; font-size: 20px; font-weight: 500; }
.ox-proof-line { width: 100%; height: 1px; background: var(--line); }
.ox-proof-stat { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.ox-avatars { display: flex; margin-right: 4px; }
.ox-avatar { width: 40px; height: 40px; margin-left: -10px; border: 2px solid #fff; border-radius: 50%; background: linear-gradient(135deg,#d4d4d4,#fafafa); }
.ox-avatar:first-child { margin-left: 0; }
.ox-proof-stat strong { display: block; font-size: 20px; font-weight: 500; }
.ox-proof-stat small { color: var(--muted); font-size: 16px; font-weight: 500; }
.ox-client-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.ox-frame { position: relative; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.ox-frame::before, .ox-frame::after, .ox-corners::before, .ox-corners::after { position: absolute; z-index: 2; width: 5px; height: 5px; background: var(--corner); content: ''; }
.ox-frame::before { top: -2px; left: -2px; }
.ox-frame::after { top: -2px; right: -2px; }
.ox-corners::before { bottom: -2px; left: -2px; }
.ox-corners::after { right: -2px; bottom: -2px; }
.ox-client { display: grid; height: 104px; place-items: center; padding: 28px; color: var(--ink-2); font-size: 18px; font-weight: 600; letter-spacing: -.4px; }

/* FEATURES */
.ox-feature { display: flex; flex-direction: column; align-items: center; gap: 48px; margin-bottom: 80px; }
.ox-feature:last-child { margin-bottom: 0; }
.ox-feature-copy, .ox-feature-media { width: 100%; }
.ox-feature-copy { max-width: 520px; }
.ox-feature-copy h2 { margin: 0 0 16px; color: var(--ink); font-size: 30px; font-weight: 700; letter-spacing: -.8px; }
.ox-feature-copy > p { margin: 0 0 32px; color: #52525b; font-size: 16px; line-height: 1.6; }
.ox-feature-media img { width: 100%; aspect-ratio: 4/3; border-radius: 8px; object-fit: cover; filter: saturate(.75); }
.ox-checklist { display: grid; gap: 8px; margin: 64px 0 0; padding: 0; list-style: none; }
.ox-checklist li { display: flex; align-items: center; gap: 12px; color: #52525b; font-size: 16px; }
.ox-check { display: grid; width: 16px; height: 16px; flex: 0 0 16px; place-items: center; border: 1.5px solid var(--muted); border-radius: 50%; font-size: 10px; }
.ox-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 64px; }
.ox-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid #fff; border-radius: 999px; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); color: var(--muted); font-size: 16px; font-weight: 500; }
.ox-pill::before { display: grid; width: 20px; height: 20px; place-items: center; border: 1px solid var(--muted); border-radius: 50%; content: '✓'; font-size: 11px; }

/* WHY */
.ox-card-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.ox-value-card { min-height: 220px; padding: 28px; }
.ox-value-icon { display: grid; width: 48px; height: 48px; margin-bottom: 40px; place-items: center; border-radius: 12px; background: linear-gradient(135deg,rgba(255,124,97,.12),rgba(255,104,165,.18)); color: var(--primary); font-size: 18px; font-weight: 700; }
.ox-value-card h3 { margin: 0 0 4px; color: var(--ink-2); font-size: 24px; font-weight: 600; }
.ox-value-card p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }

/* HOME PORTFOLIO */
.home-portfolio__header { max-width: 576px; margin: 0 auto 64px; text-align: center; }
.home-portfolio__eyebrow { margin: 0 0 16px; color: var(--primary); font-size: 14px; font-weight: 500; text-transform: uppercase; }
.home-portfolio__title { margin: 0 0 16px; color: var(--ink); font-size: clamp(30px,4vw,48px); line-height: 1.08; font-weight: 600; letter-spacing: -1.44px; }
.home-portfolio__intro { margin: 0; color: var(--muted); line-height: 1.5; }
.home-portfolio__grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.home-portfolio__card { position: relative; padding: 8px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); opacity: 0; transform: translateY(50px); transition: opacity .6s ease, transform .6s ease; }
.home-portfolio__card.is-visible { opacity: 1; transform: none; }
.home-portfolio__card-link { position: absolute; inset: 0; z-index: 3; }
.home-portfolio__visual { position: relative; overflow: hidden; }
.home-portfolio__image-frame { overflow: hidden; aspect-ratio: 4/3; background: #ececec; }
.home-portfolio__image { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.home-portfolio__card:hover .home-portfolio__image { transform: scale(1.05); }
.home-portfolio__ornament { display: none; }
.home-portfolio__content { padding: 20px 12px 14px; }
.home-portfolio__project-title { margin: 0 0 5px; color: var(--ink); font-size: 20px; font-weight: 600; }
.home-portfolio__category { margin: 0; color: var(--muted); font-size: 14px; }
.home-portfolio__site-link { position: relative; z-index: 5; display: inline-block; margin-top: 12px; color: var(--primary); font-size: 14px; }
.home-portfolio__state { grid-column: 1/-1; color: var(--muted); text-align: center; }
.home-portfolio__footer { margin-top: 32px; text-align: center; }
.home-portfolio__all-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; }

/* TESTIMONIALS */
.ox-testimonials { background: var(--surface-soft); }
.ox-slider { overflow: hidden; }
.ox-slider-track { display: flex; margin-left: -16px; transition: transform .5s var(--ease); }
.ox-slide { min-width: 100%; padding-left: 16px; }
.ox-quote { position: relative; display: flex; height: 100%; flex-direction: column; gap: 0; padding: 8px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.ox-quote-photo { width: 100%; height: 268px; border-radius: 4px; object-fit: cover; filter: grayscale(.25) saturate(.7); }
.ox-quote-body { display: flex; flex: 1; flex-direction: column; justify-content: space-between; padding: 32px; }
.ox-quote-mark { margin-bottom: 12px; color: var(--ink-2); font-size: 38px; line-height: 1; }
.ox-quote blockquote { margin: 0 0 24px; color: var(--ink-2); font-size: 16px; line-height: 1.6; }
.ox-quote-author { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.ox-quote-author strong { display: block; color: var(--ink-2); font-size: 16px; }
.ox-quote-author small { color: var(--muted); font-size: 14px; }
.ox-stars { color: #facc15; letter-spacing: 1px; white-space: nowrap; }
.ox-slider-controls { display: flex; align-items: center; gap: 24px; margin-top: 32px; }
.ox-slider-count { flex: 0 0 auto; color: var(--muted-2); font-size: 20px; font-weight: 500; }
.ox-slider-count strong { color: var(--ink); }
.ox-slider-progress { position: relative; height: 1px; flex: 1; background: var(--line); }
.ox-slider-progress span { position: absolute; inset: 0 auto 0 0; width: 33.333%; background: linear-gradient(270deg,var(--primary),var(--primary-2)); transition: width .3s ease; }
.ox-slider-buttons { display: flex; gap: 12px; }
.ox-slider-buttons button { display: grid; width: 44px; height: 44px; place-items: center; border: 0; border-radius: 8px; background: #fff; cursor: pointer; transition: color .2s, background .2s; }
.ox-slider-buttons button:hover { background: linear-gradient(270deg,var(--primary),var(--primary-2)); color: #fff; }

/* FAQ */
.ox-faq-layout { display: flex; flex-direction: column; gap: 48px; }
.ox-faq-intro { max-width: 500px; }
.ox-faq-box { position: relative; width: 100%; padding: 28px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.ox-faq-item { margin-bottom: 12px; border: 1px solid var(--line-soft); transition: border-color .3s ease; }
.ox-faq-item:last-child { margin-bottom: 0; }
.ox-faq-item:hover { border-color: #d4d4d4; }
.ox-faq-button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 24px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.ox-faq-button span:first-child { font-size: 18px; font-weight: 600; }
.ox-faq-plus { position: relative; width: 24px; height: 24px; flex: 0 0 24px; }
.ox-faq-plus::before, .ox-faq-plus::after { position: absolute; top: 11px; left: 5px; width: 14px; height: 2px; border-radius: 2px; background: var(--ink); content: ''; transition: transform .3s ease; }
.ox-faq-plus::after { transform: rotate(90deg); }
.ox-faq-item.is-open .ox-faq-plus::after { transform: rotate(0); }
.ox-faq-answer { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .3s ease, opacity .3s ease; }
.ox-faq-item.is-open .ox-faq-answer { grid-template-rows: 1fr; opacity: 1; }
.ox-faq-answer > div { overflow: hidden; }
.ox-faq-answer p { margin: 0; padding: 0 24px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* CTA + CONTACT */
.ox-cta { position: relative; overflow: hidden; padding: 32px; background: #fff; text-align: center; }
.ox-cta h2 { margin: 0 0 24px; color: var(--ink); font-size: clamp(30px,4vw,48px); font-weight: 500; letter-spacing: -1.2px; }
.ox-cta > p { max-width: 448px; margin: 0 auto 48px; color: var(--muted); }
.ox-cta-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; }
.ox-cta-glow { position: absolute; right: 0; bottom: -120px; left: 0; height: 220px; background: radial-gradient(ellipse at center,rgba(255,104,165,.22),rgba(255,124,97,.10) 42%,transparent 70%); pointer-events: none; }
.ox-contact-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
.ox-contact-copy h2 { margin: 0 0 18px; font-size: clamp(34px,4vw,52px); line-height: 1.05; font-weight: 600; letter-spacing: -1.44px; }
.ox-contact-copy p { max-width: 500px; margin: 0 0 28px; color: var(--muted); line-height: 1.6; }
.ox-direct { display: grid; gap: 12px; }
.ox-direct a { color: var(--ink-2); font-weight: 500; }
.ox-contact-form { position: relative; padding: 28px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.ox-form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.ox-field label { display: block; margin-bottom: 7px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.ox-field input, .ox-field select, .ox-field textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.ox-field input, .ox-field select { height: 44px; padding: 0 14px; }
.ox-field textarea { min-height: 140px; padding: 14px; resize: vertical; }
.ox-field input:focus, .ox-field select:focus, .ox-field textarea:focus { border-color: #fdba74; box-shadow: 0 0 0 4px rgba(255,124,97,.20); }
.ox-field--full { grid-column: 1/-1; }
.ox-privacy { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.ox-privacy input { margin-top: 3px; }
.ox-form-status { min-height: 22px; margin: 8px 0 0; font-size: 14px; }
.ox-form-status[data-state='success'] { color: #15803d; }
.ox-form-status[data-state='error'] { color: #b91c1c; }

/* FOOTER */
.ox-footer { padding-top: 40px; }
.ox-footer-top { display: flex; flex-direction: column; justify-content: space-between; gap: 40px; margin-bottom: 32px; }
.ox-footer-brand { max-width: 370px; }
.ox-footer-brand p { margin: 16px 0 28px; color: var(--muted); line-height: 1.55; }
.ox-socials { display: flex; gap: 8px; }
.ox-socials a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid #fff; border-radius: 50%; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); color: var(--muted); font-size: 13px; transition: color .2s; }
.ox-socials a:hover { color: var(--primary); }
.ox-footer-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px; }
.ox-footer-links h4 { margin: 0 0 20px; color: var(--ink); font-size: 16px; }
.ox-footer-links a { display: block; margin-bottom: 12px; color: var(--ink-2); transition: color .2s; }
.ox-footer-links a:hover { color: var(--primary); }
.ox-footer-bottom { display: flex; flex-direction: column; gap: 12px; padding: 20px 0 40px; color: var(--muted); font-size: 14px; }
.ox-watermark { overflow: hidden; margin-top: 4px; padding: 0 6vw; text-align: center; }
.ox-watermark strong { display: block; background: linear-gradient(90deg,rgba(255,198,186,.31),rgba(255,104,165,.31)); filter: drop-shadow(0 2px 15px rgba(255,104,165,.30)); -webkit-background-clip: text; background-clip: text; color: transparent; font-size: 18vw; font-weight: 600; line-height: .82; letter-spacing: -1vw; }

/* PORTFOLIO PAGE */
.portfolio-page { padding: 64px 0 80px; }
.portfolio-hero { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.portfolio-hero h1 { margin: 0 0 16px; font-size: clamp(40px,5vw,60px); line-height: 1.05; font-weight: 600; letter-spacing: -1.8px; }
.portfolio-hero p { margin: 0; color: var(--muted); font-size: 18px; }
.portfolio-controls { display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 32px; }
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.portfolio-filters button { padding: 9px 12px; border: 1px solid #fff; border-radius: 999px; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); color: var(--muted); cursor: pointer; }
.portfolio-filters button.is-active { background: var(--ink); color: #fff; }
.portfolio-count { color: var(--muted); font-size: 14px; }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.project-item { display: block; padding: 8px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.project-media { margin: 0; overflow: hidden; aspect-ratio: 4/3; background: #ececec; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-item:hover .project-media img { transform: scale(1.05); }
.project-copy { padding: 20px 12px 14px; }
.project-meta { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 18px; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.project-copy h2 { margin: 0 0 8px; font-size: 24px; font-weight: 600; }
.project-copy p { margin: 0; color: var(--muted); line-height: 1.5; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.project-tags span { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; }
.portfolio-state { grid-column: 1/-1; color: var(--muted); text-align: center; }
.project-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(135deg,#fff,#ededed); color: var(--muted); }

/* PROJECT DETAIL */
.project-root { min-height: 70vh; }
.project-hero, .project-visual, .project-section, .project-next, .project-empty { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.project-hero { padding: 64px 0; }
.project-breadcrumb { display: flex; gap: 10px; margin-bottom: 40px; color: var(--muted); font-size: 14px; }
.project-hero-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
.project-hero h1 { margin: 0 0 18px; font-size: clamp(42px,6vw,72px); line-height: 1; font-weight: 600; letter-spacing: -2px; }
.project-hero p:not(.eyebrow) { max-width: 720px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.eyebrow { margin: 0 0 16px; color: var(--primary); font-size: 13px; font-weight: 500; text-transform: uppercase; }
.project-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.project-action { padding: 11px 16px; border-radius: 4px; background: #fff; box-shadow: var(--shadow-primary); font-size: 14px; font-weight: 500; }
.project-action.primary { background: var(--ink); color: #fff; box-shadow: none; }
.project-facts { margin: 0; border-top: 1px solid var(--line); }
.project-facts div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.project-facts dt { color: var(--muted); font-size: 13px; }
.project-facts dd { margin: 0; font-size: 14px; font-weight: 500; }
.project-visual { overflow: hidden; padding: 12px; border: 12px solid rgba(255,255,255,.5); border-radius: 20px; background: #fff; }
.project-visual img { width: 100%; max-height: 760px; border-radius: 8px; object-fit: cover; }
.project-section { padding: 80px 0; border-bottom: 1px solid var(--line); }
.project-section h2 { max-width: 900px; margin: 0; font-size: clamp(30px,4vw,48px); line-height: 1.12; font-weight: 600; letter-spacing: -1.3px; }
.project-columns { display: grid; grid-template-columns: 1fr; gap: 48px; }
.project-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.project-list li { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--ink-2); }
.project-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; }
.project-gallery figure { margin: 0; padding: 8px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.project-gallery img { width: 100%; }
.project-gallery figcaption { padding: 12px 6px 4px; color: var(--muted); font-size: 13px; }
.project-section blockquote { margin: 32px 0 0; padding: 28px; border: 1px solid #fff; background: linear-gradient(to bottom,#fff,rgba(255,255,255,.2)); }
.project-section blockquote p { margin: 0; color: var(--ink-2); font-size: 22px; line-height: 1.5; }
.project-section cite { display: block; margin-top: 16px; color: var(--muted); font-style: normal; }
.project-document-list { display: grid; gap: 10px; }
.project-document-list a { display: flex; justify-content: space-between; gap: 16px; padding: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.45); }
.project-document-list small { color: var(--muted); }
.project-next { padding: 80px 0 100px; text-align: center; }
.project-next h2 { margin: 0 0 24px; font-size: clamp(34px,5vw,56px); font-weight: 500; letter-spacing: -1.5px; }
.project-next a { display: inline-block; padding: 12px 20px; border-radius: 4px; background: var(--ink); color: #fff; }
.project-empty { padding: 120px 0; text-align: center; }

/* REVEALS */
[data-reveal] { opacity: 0; transform: translateY(50px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal='left'] { transform: translateX(-50px); }
[data-reveal='right'] { transform: translateX(50px); }
[data-reveal='scale'] { transform: scale(.8); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 640px) {
  .ox-container { width: min(var(--container), calc(100% - 48px)); }
  .ox-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .home-portfolio__grid, .portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ox-quote { flex-direction: row; }
  .ox-quote-photo { width: 244px; height: auto; flex: 0 0 244px; }
  .ox-cta { padding: 64px; }
  .ox-cta-actions { flex-direction: row; }
  .ox-form-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .ox-footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 768px) {
  .ox-nav-links, .ox-nav-cta { display: flex; }
  .ox-menu-toggle { display: none; }
  .ox-mobile-menu { display: none; }
  .ox-client-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}

@media (min-width: 1024px) {
  .ox-section { padding: 80px 0; }
  .ox-hero { padding: 80px 0 40px; }
  .ox-hero-stage-wrap { padding: 32px 74px; }
  .ox-proof-head { flex-direction: row; text-align: left; }
  .ox-client-grid { grid-template-columns: repeat(5,minmax(0,1fr)); }
  .ox-feature { flex-direction: row; gap: 80px; }
  .ox-feature--reverse { flex-direction: row-reverse; }
  .ox-feature-copy, .ox-feature-media { width: 50%; }
  .ox-card-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .home-portfolio__grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .ox-slide { min-width: 50%; }
  .ox-faq-layout { flex-direction: row; gap: 64px; }
  .ox-faq-intro { width: 41.666%; }
  .ox-faq-box { width: 58.333%; }
  .ox-contact-grid { grid-template-columns: .75fr 1.25fr; gap: 64px; }
  .ox-footer { padding-top: 80px; }
  .ox-footer-top { flex-direction: row; margin-bottom: 64px; }
  .ox-footer-links { width: 58.333%; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 32px; }
  .portfolio-controls { flex-direction: row; align-items: center; }
  .portfolio-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-hero-grid { grid-template-columns: 1.3fr .7fr; gap: 80px; }
  .project-columns { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .project-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (min-width: 1280px) {
  .ox-watermark strong { font-size: 300px; line-height: .8; }
}

@media (max-width: 639px) {
  .ox-hero-actions .ox-btn, .ox-hero-actions .ox-btn--gradient-wrap { width: 100%; }
  .ox-btn--gradient-wrap .ox-btn { width: 100%; }
  .ox-footer-links { grid-template-columns: 1fr 1fr; }
  .project-hero, .project-visual, .project-section, .project-next, .project-empty { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], .home-portfolio__card { opacity: 1 !important; transform: none !important; }
}
