/*
Theme Name: Seekit Marketing
Theme URI: https://seekitmarketing.com
Author: Seekit Marketing
Description: A premium light-theme creative marketing agency website with custom editorial layouts and original CSS artwork.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: seekit-marketing
*/

:root {
  --paper: #f6f4ef;
  --paper-2: #fffdf8;
  --ink: #151515;
  --muted: #6f6d67;
  --line: rgba(21, 21, 21, 0.14);
  --blue: #3157ff;
  --coral: #ff6b4a;
  --lime: #c9f46a;
  --violet: #8f78ff;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.09);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;
  --container: min(1180px, calc(100vw - 40px));
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: white; background: var(--blue); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 999;
  padding: 10px 14px; background: var(--ink); color: white; border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 72px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 760;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; }
.display {
  margin: 0; font-family: var(--serif); font-weight: 500; line-height: 0.94;
  letter-spacing: -0.055em; font-size: clamp(4rem, 9vw, 9rem);
}
.h1 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 0.98; letter-spacing: -0.045em; font-size: clamp(3.5rem, 7.7vw, 7.4rem); }
.h2 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1; letter-spacing: -0.04em; font-size: clamp(2.9rem, 5.7vw, 5.6rem); }
.h3 { margin: 0; font-size: clamp(1.5rem, 2.2vw, 2.25rem); line-height: 1.04; letter-spacing: -0.035em; }
.lead { color: var(--muted); font-size: clamp(1.1rem, 1.6vw, 1.34rem); max-width: 650px; }
.kicker { font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.28; letter-spacing: -0.025em; }
.muted { color: var(--muted); }
.micro { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.02em; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90; transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(246,244,239,.86); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav-shell { width: var(--container); height: 82px; margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -0.03em; width: max-content; }
.logo-mark { width: 30px; height: 30px; border-radius: 50% 50% 14% 50%; background: var(--blue); position: relative; transform: rotate(12deg); }
.logo-mark::after { content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); right: 5px; top: 5px; }
.logo span:last-child { font-size: 1.05rem; }
.desktop-nav { display: flex; gap: 34px; align-items: center; font-size: .9rem; font-weight: 670; }
.desktop-nav a { position: relative; padding: 8px 0; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px; background: var(--ink); transition: right .25s ease; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.nav-cta { justify-self: end; }
.menu-toggle { display: none; justify-self: end; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; align-items: center; justify-content: center; cursor: pointer; }
.menu-toggle span, .menu-toggle span::before { display: block; width: 17px; height: 1.5px; background: var(--ink); content: ""; transition: .25s ease; }
.menu-toggle span::before { transform: translateY(5px); }
.menu-toggle.active span { transform: rotate(45deg); }
.menu-toggle.active span::before { transform: rotate(90deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--paper); z-index: 80; padding: 110px 20px 30px; }
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu nav { display: grid; gap: 10px; }
.mobile-menu nav a { font-family: var(--serif); font-size: clamp(2.8rem, 14vw, 5.2rem); line-height: 1; letter-spacing: -0.045em; }
.mobile-menu .mobile-bottom { margin-top: auto; display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 20px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 19px; border: 1px solid var(--ink); border-radius: 999px;
  font-size: .86rem; font-weight: 760; background: var(--ink); color: white; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21,21,21,.15); }
.button.light { color: var(--ink); background: transparent; }
.button.light:hover { background: white; }
.button.blue { background: var(--blue); border-color: var(--blue); }
.button .arrow { font-size: 1.12rem; transition: transform .2s ease; }
.button:hover .arrow { transform: translate(3px,-3px); }

.hero { min-height: 100svh; padding: 145px 0 52px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: end; gap: 56px; }
.hero-copy { position: relative; }
.hero .display .line { display: block; }
.hero .display .italic { font-style: italic; color: var(--blue); }
.hero-intro { margin: 44px 0 0 8px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.hero-intro .lead { margin: 0; max-width: 520px; }
.hero-visual { min-height: 540px; position: relative; }
.hero-card {
  position: absolute; border-radius: 32px; box-shadow: var(--shadow); overflow: hidden;
  border: 1px solid rgba(21,21,21,.1); background: var(--paper-2);
}
.hero-card.card-one { width: 78%; aspect-ratio: 4 / 5; right: 0; bottom: 26px; transform: rotate(4deg); }
.hero-card.card-two { width: 55%; aspect-ratio: 1 / 1.25; left: 0; top: 68px; transform: rotate(-8deg); background: var(--blue); color: white; }
.hero-card.card-three { width: 44%; aspect-ratio: 1.35 / 1; left: 10%; bottom: 0; transform: rotate(5deg); background: var(--lime); }
.card-one .visual-top { height: 62%; background: #f1cab8; position: relative; overflow: hidden; }
.card-one .visual-top::before { content: ""; width: 220px; height: 220px; border-radius: 49% 51% 58% 42%; background: var(--coral); position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%) rotate(22deg); }
.card-one .visual-top::after { content: "S"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 8rem; color: white; }
.card-one .visual-body { padding: 23px; display: grid; gap: 15px; }
.mini-line { height: 8px; border-radius: 5px; background: #dedbd4; }
.mini-line.short { width: 62%; }
.card-two { padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.card-two .small-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; }
.card-two .big-number { font-family: var(--serif); font-size: 5.8rem; line-height: .8; letter-spacing: -.08em; }
.card-two .small-copy { max-width: 170px; opacity: .72; font-size: .86rem; }
.card-three { padding: 20px; display: flex; align-items: center; justify-content: center; }
.orbit { width: 80%; aspect-ratio: 1; border: 1px solid rgba(21,21,21,.5); border-radius: 50%; position: relative; }
.orbit::before, .orbit::after { content: ""; position: absolute; border-radius: 50%; background: var(--ink); }
.orbit::before { width: 17px; height: 17px; left: 50%; top: -8px; }
.orbit::after { width: 7px; height: 7px; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.hero-footer { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 30px; }
.hero-footer .scroll-hint { display: flex; align-items: center; gap: 12px; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.scroll-dot { width: 8px; height: 8px; border: 1px solid var(--ink); border-radius: 50%; animation: blink 1.8s infinite; }
@keyframes blink { 50% { background: var(--ink); transform: scale(.7); } }

.marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-2); }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 30px; padding: 22px 35px; font-family: var(--serif); font-size: 1.35rem; font-style: italic; white-space: nowrap; }
.marquee-item::after { content: "✦"; font-family: var(--sans); color: var(--blue); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 56px; align-items: start; margin-bottom: 72px; }
.split-heading .eyebrow { margin-top: 16px; }
.split-heading .h2 { max-width: 950px; }

.work-list { border-top: 1px solid var(--line); }
.work-row { display: grid; grid-template-columns: 1fr .95fr; gap: 45px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: center; position: relative; }
.work-row::before { content: ""; position: absolute; inset: 0; background: white; transform: scaleY(0); transform-origin: bottom; transition: transform .35s ease; z-index: -1; }
.work-row:hover::before { transform: scaleY(1); }
.work-copy { padding: 15px 0 15px 20px; }
.work-meta { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 25px; }
.tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 750; border: 1px solid var(--line); padding: 7px 10px; border-radius: 999px; }
.work-title { font-family: var(--serif); font-size: clamp(2.4rem, 4.4vw, 5rem); letter-spacing: -.05em; line-height: .95; margin: 0 0 22px; }
.work-copy p { color: var(--muted); max-width: 510px; }
.work-arrow { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; margin-top: 28px; transition: .25s ease; }
.work-row:hover .work-arrow { background: var(--ink); color: white; transform: rotate(45deg); }
.work-art { min-height: 420px; border-radius: 30px; overflow: hidden; position: relative; isolation: isolate; }
.art-morrow { background: #d7f0ff; }
.art-morrow::before { content: ""; position: absolute; width: 58%; aspect-ratio: 1; border-radius: 50%; background: var(--blue); left: 50%; top: 50%; transform: translate(-50%,-50%); }
.art-morrow::after { content: "morrow"; position: absolute; inset: 0; display: grid; place-items: center; font-size: clamp(3rem,6vw,6rem); font-weight: 850; color: white; letter-spacing: -.07em; }
.art-kite { background: #f8c6bb; }
.art-kite::before { content: ""; position: absolute; inset: 12% 22%; border-radius: 45% 55% 38% 62%; background: var(--coral); transform: rotate(-11deg); }
.art-kite::after { content: "KITE / 06"; position: absolute; left: 9%; bottom: 10%; font-family: var(--serif); font-size: clamp(2.2rem,5vw,5rem); color: white; }
.art-northstar { background: #e9f8c3; }
.art-northstar::before { content: "N"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: clamp(12rem,25vw,25rem); color: var(--ink); line-height: .7; transform: rotate(-8deg); }
.art-northstar::after { content: "Coffee for people going somewhere."; position: absolute; width: 150px; right: 8%; top: 10%; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 780; }

.services-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.service-card { min-height: 320px; border: 1px solid var(--line); border-radius: 28px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.45); transition: transform .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-6px); background: white; }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-number { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 780; }
.service-icon { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); font-size: 1.15rem; }
.service-card:nth-child(2) .service-icon { background: #d7f0ff; }
.service-card:nth-child(3) .service-icon { background: #f8c6bb; }
.service-card:nth-child(4) .service-icon { background: #ded7ff; }
.service-card h3 { margin: 50px 0 14px; font-family: var(--serif); font-size: clamp(2.1rem,3.4vw,3.7rem); font-weight: 500; letter-spacing: -.045em; line-height: .95; }
.service-card p { color: var(--muted); max-width: 460px; margin: 0; }
.service-list { margin: 28px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: .78rem; font-weight: 700; }

.statement { background: var(--ink); color: white; border-radius: 40px; padding: clamp(40px,7vw,88px); position: relative; overflow: hidden; }
.statement::after { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; right: -80px; bottom: -150px; box-shadow: 0 0 0 60px rgba(255,255,255,.035), 0 0 0 120px rgba(255,255,255,.02); }
.statement .h2 { max-width: 940px; position: relative; z-index: 1; }
.statement .h2 em { color: var(--lime); font-weight: 500; }
.statement-bottom { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; z-index: 1; }
.statement-bottom p { color: rgba(255,255,255,.64); max-width: 520px; margin: 0; }

.process { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; }
.process-sticky { position: sticky; top: 130px; align-self: start; }
.process-sticky .h2 { margin-top: 22px; }
.process-list { counter-reset: process; border-top: 1px solid var(--line); }
.process-item { counter-increment: process; display: grid; grid-template-columns: 70px 1fr; gap: 26px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.process-item::before { content: "0" counter(process); font-size: .78rem; font-weight: 800; letter-spacing: .1em; color: var(--blue); padding-top: 7px; }
.process-item h3 { font-family: var(--serif); font-size: clamp(2rem,3.2vw,3.35rem); font-weight: 500; margin: 0 0 16px; }
.process-item p { color: var(--muted); max-width: 570px; margin: 0; }

.quote-card { background: white; border-radius: 36px; padding: clamp(38px,6vw,74px); box-shadow: var(--shadow); position: relative; }
.quote-mark { font-family: var(--serif); font-size: 9rem; line-height: .3; color: var(--blue); }
.quote-card blockquote { margin: 38px 0 52px; font-family: var(--serif); font-size: clamp(2rem,4vw,4.4rem); line-height: 1.04; letter-spacing: -.04em; max-width: 980px; }
.quote-person { display: flex; align-items: center; gap: 15px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; color: white; font-weight: 850; }
.quote-person strong, .quote-person span { display: block; }
.quote-person span { color: var(--muted); font-size: .84rem; }

.cta-panel { padding: 72px 0 0; }
.cta-inner { border-top: 1px solid var(--line); padding: 68px 0 40px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.cta-inner .h2 { max-width: 760px; }
.cta-inner .h2 em { color: var(--blue); font-weight: 500; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.site-footer { background: var(--ink); color: white; margin-top: 76px; padding: 70px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; }
.footer-logo { font-family: var(--serif); font-size: clamp(3.5rem,7vw,7.5rem); letter-spacing: -.055em; line-height: .85; }
.footer-logo span { color: var(--lime); font-style: italic; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-nav h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.45); margin: 0 0 16px; }
.footer-nav a, .footer-nav p { display: block; margin: 0 0 9px; color: rgba(255,255,255,.82); }
.footer-nav a:hover { color: var(--lime); }
.footer-bottom { margin-top: 76px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); display: flex; justify-content: space-between; gap: 20px; font-size: .76rem; color: rgba(255,255,255,.48); }

.page-hero { padding: 180px 0 90px; }
.page-hero-grid { display: grid; grid-template-columns: 1.4fr .6fr; align-items: end; gap: 50px; }
.page-hero .lead { justify-self: end; margin: 0 0 8px; }
.page-ribbon { margin-top: 74px; display: grid; grid-template-columns: repeat(4,1fr); border-block: 1px solid var(--line); }
.ribbon-item { padding: 19px 18px; border-right: 1px solid var(--line); }
.ribbon-item:last-child { border-right: 0; }
.ribbon-item span { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 6px; }
.ribbon-item strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }

.service-detail { border-top: 1px solid var(--line); }
.service-detail-row { display: grid; grid-template-columns: 110px .8fr 1.1fr; gap: 45px; padding: 55px 0; border-bottom: 1px solid var(--line); }
.service-detail-row .num { font-size: .74rem; color: var(--blue); font-weight: 850; letter-spacing: .11em; }
.service-detail-row h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.5rem,4vw,4.6rem); line-height: .94; letter-spacing: -.045em; margin: 0; }
.service-detail-row p { color: var(--muted); max-width: 590px; margin-top: 0; }
.deliverables { list-style: none; padding: 19px 0 0; margin: 28px 0 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; font-size: .82rem; font-weight: 700; }
.deliverables li::before { content: "↳"; margin-right: 8px; color: var(--blue); }

.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.case-card { border-radius: 30px; overflow: hidden; background: white; border: 1px solid var(--line); }
.case-card:nth-child(3n) { grid-column: 1 / -1; }
.case-visual { min-height: 430px; position: relative; overflow: hidden; }
.case-card:nth-child(3n) .case-visual { min-height: 540px; }
.case-body { padding: 28px; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: end; }
.case-body h2 { font-family: var(--serif); font-size: clamp(2rem,3.4vw,3.5rem); font-weight: 500; letter-spacing: -.04em; margin: 0 0 7px; }
.case-body p { color: var(--muted); margin: 0; }
.case-stat { text-align: right; }
.case-stat strong { font-family: var(--serif); font-size: 2.2rem; font-weight: 500; display: block; }
.case-stat span { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.visual-one { background: #dce8ff; }
.visual-one::before { content: ""; position: absolute; width: 420px; aspect-ratio: 1; border-radius: 50%; background: var(--blue); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.visual-one::after { content: "M"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: 13rem; color: white; }
.visual-two { background: #f5c8bc; }
.visual-two::before { content: ""; position: absolute; width: 62%; height: 58%; background: var(--coral); border-radius: 60% 40% 70% 30%; top: 22%; left: 19%; transform: rotate(-12deg); }
.visual-two::after { content: "KITE"; position: absolute; right: 8%; bottom: 8%; font-size: 5.5rem; font-weight: 880; color: white; letter-spacing: -.07em; }
.visual-three { background: #eef8d0; }
.visual-three::before { content: "NORTH / STAR"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: clamp(4rem,10vw,10rem); letter-spacing: -.075em; transform: rotate(-5deg); }
.visual-four { background: #e4ddff; }
.visual-four::before { content: "APERTURE"; position: absolute; left: 7%; top: 10%; font-size: clamp(3rem,7vw,7rem); font-weight: 900; letter-spacing: -.08em; }
.visual-four::after { content: ""; width: 210px; height: 210px; border-radius: 50%; border: 40px solid var(--violet); position: absolute; right: 10%; bottom: 8%; }
.visual-five { background: #f8efc5; }
.visual-five::before { content: "STILL / LIFE"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); font-size: clamp(4rem,9vw,9rem); color: #6c5423; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-grid .kicker { margin-top: 0; }
.about-manifesto { font-family: var(--serif); font-size: clamp(2.6rem,5vw,5.2rem); line-height: 1; letter-spacing: -.045em; margin: 0; }
.about-manifesto em { color: var(--blue); font-weight: 500; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { border-top: 1px solid var(--line); padding-top: 18px; }
.team-photo { aspect-ratio: 4 / 5; border-radius: 26px; margin-bottom: 18px; position: relative; overflow: hidden; }
.team-card:nth-child(1) .team-photo { background: #dce8ff; }
.team-card:nth-child(2) .team-photo { background: #f7c7b9; }
.team-card:nth-child(3) .team-photo { background: #e7f4bd; }
.team-photo::before { content: ""; position: absolute; width: 58%; aspect-ratio: .78; background: var(--ink); border-radius: 48% 48% 28% 28%; left: 50%; bottom: -4%; transform: translateX(-50%); }
.team-photo::after { content: ""; position: absolute; width: 23%; aspect-ratio: 1; background: #d7aa8e; border-radius: 50%; left: 50%; top: 19%; transform: translateX(-50%); }
.team-card:nth-child(2) .team-photo::before { background: var(--blue); width: 64%; }
.team-card:nth-child(3) .team-photo::before { background: #5b4937; }
.team-card h3 { margin: 0 0 3px; font-size: 1.05rem; }
.team-card p { margin: 0; font-size: .82rem; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.value { padding: 25px 0 0; border-top: 1px solid var(--line); }
.value strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; display: block; margin-bottom: 12px; }
.value p { color: var(--muted); font-size: .9rem; }

.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; align-items: start; }
.contact-side { position: sticky; top: 120px; }
.contact-side .lead { margin: 25px 0 35px; }
.contact-detail { padding: 16px 0; border-top: 1px solid var(--line); }
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-detail span { display: block; font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 5px; }
.contact-form { background: white; border-radius: 34px; padding: clamp(28px,5vw,56px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 760; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field textarea, .field select { width: 100%; border: 0; border-bottom: 1px solid var(--line); background: transparent; padding: 12px 0; outline: none; border-radius: 0; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); }
.field textarea { min-height: 120px; resize: vertical; }
.form-actions { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 36px; }
.form-status { font-size: .85rem; color: #2f6e32; display: none; }
.form-status.visible { display: block; }

.legal { max-width: 780px; }
.legal h2 { font-family: var(--serif); font-size: 2.25rem; font-weight: 500; margin: 48px 0 12px; }
.legal p, .legal li { color: var(--muted); }

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

@media (max-width: 960px) {
  .desktop-nav, .nav-cta { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .page-hero-grid, .about-grid, .contact-layout, .process, .footer-top { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; max-width: 560px; width: 100%; margin: 0 auto; }
  .hero-intro { grid-template-columns: 1fr; }
  .hero-intro .button { justify-self: start; }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .work-row { grid-template-columns: 1fr; }
  .work-art { order: -1; min-height: 360px; }
  .service-card:nth-child(n) { grid-column: span 6; }
  .statement-bottom { grid-template-columns: 1fr; }
  .process-sticky, .contact-side { position: static; }
  .service-detail-row { grid-template-columns: 60px 1fr; }
  .service-detail-row > div:last-child { grid-column: 2; }
  .page-hero .lead { justify-self: start; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 28px, 1180px); --radius-lg: 28px; }
  .section { padding: 78px 0; }
  .nav-shell { height: 70px; }
  .hero { padding-top: 112px; }
  .hero-grid { gap: 20px; }
  .hero-intro { margin-top: 28px; margin-left: 0; }
  .hero-visual { min-height: 410px; }
  .hero-card.card-one { width: 75%; }
  .hero-card.card-two { width: 52%; top: 36px; }
  .hero-card.card-three { width: 44%; }
  .card-two { padding: 18px; }
  .card-two .big-number { font-size: 4rem; }
  .hero-footer { display: none; }
  .work-art { min-height: 285px; }
  .work-copy { padding-left: 4px; }
  .services-grid { display: grid; grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: 1; min-height: 290px; }
  .statement { border-radius: 28px; }
  .process-item { grid-template-columns: 48px 1fr; gap: 12px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 130px 0 70px; }
  .page-ribbon { grid-template-columns: 1fr 1fr; }
  .ribbon-item:nth-child(2) { border-right: 0; }
  .ribbon-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .service-detail-row { grid-template-columns: 1fr; gap: 18px; }
  .service-detail-row > div:last-child { grid-column: 1; }
  .deliverables { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card:nth-child(3n) { grid-column: 1; }
  .case-visual, .case-card:nth-child(3n) .case-visual { min-height: 330px; }
  .case-body { grid-template-columns: 1fr; }
  .case-stat { text-align: left; }
  .team-grid, .values-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
  .form-actions { align-items: flex-start; flex-direction: column-reverse; }
}

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