:root {
  --ink: #22211d;
  --cream: #f4f0e7;
  --paper: #fbf8f1;
  --green: #173f38;
  --green-light: #285b50;
  --gold: #c78e45;
  --muted: #716e66;
  --line: rgba(34, 33, 29, .18);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 1000; top: 1rem; left: 1rem;
  transform: translateY(-200%);
  padding: .8rem 1.1rem;
  background: white;
}
.skip-link:focus { transform: none; }

.contact-bar {
  position: absolute;
  z-index: 21;
  top: 0; left: 0;
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  color: rgba(255,255,255,.78);
  background: rgba(8,31,27,.82);
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.contact-bar p { display: flex; align-items: center; gap: .55rem; margin: 0; }
.contact-bar p span { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.contact-bar > div { display: flex; min-height: 34px; align-items: center; }
.contact-bar a { display: inline-flex; min-height: 34px; align-items: center; gap: .45rem; padding: 0 .9rem; border-left: 1px solid rgba(255,255,255,.12); transition: color .2s, background .2s; }
.contact-bar a:hover { color: white; background: rgba(255,255,255,.07); }
.contact-bar svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-bar strong { font-weight: 500; }
.contact-bar-project { color: white; }
.contact-bar-project span { color: var(--gold); font-size: .8rem; }
.email-short { display: none; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 34px; left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4vw;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.35);
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: var(--serif); font-size: 1.05rem; letter-spacing: .02em; }
.brand small { margin-top: .1rem; font-size: .58rem; letter-spacing: .19em; text-transform: uppercase; opacity: .75; }
nav { display: flex; align-items: center; gap: 2.3rem; font-size: .8rem; letter-spacing: .06em; }
nav a:not(.nav-cta) { position: relative; }
nav a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; bottom: -.35rem;
  width: 100%; height: 1px;
  background: white;
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .72rem 1.1rem; border: 1px solid rgba(255,255,255,.6); }
.menu-toggle { display: none; border: 0; background: none; }

.hero { position: relative; min-height: 100svh; color: white; overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img { height: 100%; object-fit: cover; object-position: center 55%; animation: heroZoom 16s ease-out both; }
.hero-shade { background: linear-gradient(90deg, rgba(13,29,26,.82) 0%, rgba(13,29,26,.46) 48%, rgba(13,29,26,.05) 82%), linear-gradient(0deg, rgba(8,19,17,.34), transparent 50%); }
.hero-copy {
  position: relative; z-index: 2;
  width: min(760px, 72vw);
  padding: clamp(10rem, 20vh, 14rem) 0 7rem 8vw;
}
.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--green);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.78); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 600; line-height: .95; }
h1 { font-size: clamp(4rem, 8.5vw, 8.4rem); letter-spacing: -.055em; }
h1 em, h2 em { color: var(--gold); font-weight: 500; }
.hero-intro { width: min(480px, 90%); margin: 2rem 0; font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.82); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border: 1px solid var(--ink);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .25s, background .25s;
}
.button-light { color: var(--green); background: white; border-color: white; }
.button-light:hover { color: white; background: transparent; }
.button-outline-light { color: white; border-color: rgba(255,255,255,.55); }
.button-outline-light:hover { color: var(--green); background: white; border-color: white; }
.text-link { display: inline-flex; align-items: center; gap: .7rem; padding-bottom: .35rem; border-bottom: 1px solid currentColor; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(3px, -2px); }
.light-link { color: white; }
.hero-mark {
  position: absolute; z-index: 2;
  right: -7.5rem; top: 50%;
  display: flex; align-items: center; gap: 1rem;
  transform: rotate(90deg);
  font-size: .58rem; letter-spacing: .19em; text-transform: uppercase;
}
.hero-mark i { display: block; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.scroll-cue { position: absolute; z-index: 2; left: 50%; bottom: 2rem; width: 22px; height: 38px; border: 1px solid rgba(255,255,255,.5); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 8px; left: 9px; width: 2px; height: 7px; background: white; animation: scroll 2s infinite; }

.section { padding: 6.5rem 7vw; }
.intro { display: grid; grid-template-columns: .35fr 1.35fr .8fr; gap: 4vw; align-items: start; background: var(--cream); }
.intro-number { padding-top: .3rem; color: var(--gold); font-family: var(--serif); font-size: .8rem; }
h2 { font-size: clamp(3rem, 5.2vw, 5.4rem); letter-spacing: -.045em; }
.intro-copy { padding-top: 2.4rem; }
.intro-copy p { margin: 0 0 1.4rem; color: #55524c; line-height: 1.75; }
.intro-copy .text-link { margin-top: 1rem; color: var(--green); }

.services { background: var(--paper); }
.services-head { display: flex; align-items: end; justify-content: space-between; gap: 5vw; margin-bottom: 2.8rem; }
.services-head > p { max-width: 430px; margin: 0 0 .5rem; color: var(--muted); line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card { min-height: 285px; padding: 2rem; border-right: 1px solid var(--line); }
.service-card:last-child { border-right: 0; }
.service-card > span { color: var(--gold); font-family: var(--serif); font-size: .8rem; }
.service-card h3 { max-width: 260px; margin-top: 3.5rem; font-size: clamp(1.7rem, 2.4vw, 2.5rem); line-height: 1.05; }
.service-card p { margin: 1.4rem 0 0; color: var(--muted); font-size: .86rem; line-height: 1.75; }
.service-card-link { display: inline-flex; margin-top: 1.2rem; padding-bottom: .25rem; border-bottom: 1px solid var(--green); color: var(--green); font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.turnaround { display: grid; grid-template-columns: .45fr 1.4fr auto; gap: 4vw; align-items: center; margin-top: 2.5rem; padding: 1.2rem 0; }
.turnaround .eyebrow { margin: 0; }
.turnaround > p:not(.eyebrow) { margin: 0; color: var(--muted); line-height: 1.75; }
.turnaround strong { color: var(--ink); }
.turnaround .text-link { white-space: nowrap; color: var(--green); }

.dark-section { color: white; background: var(--green); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 2.8rem; }
.section-head > p { max-width: 300px; margin: 0 0 .5rem; color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }
.carousel { display: grid; grid-template-columns: 1.65fr .65fr; min-height: 520px; background: #0f302a; }
.carousel-visual { position: relative; min-height: 520px; overflow: hidden; }
.carousel-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.28), transparent 35%); pointer-events: none; }
.carousel-visual img { height: 100%; object-fit: cover; transition: opacity .3s ease, transform .7s ease; }
.carousel-visual img.switching { opacity: 0; transform: scale(1.02); }
.carousel-count { position: absolute; z-index: 2; left: 2rem; bottom: 1.6rem; display: flex; align-items: center; gap: .75rem; font-family: var(--serif); }
.carousel-count span:first-child { color: var(--gold); font-size: 1.5rem; }
.carousel-count span:last-child { color: rgba(255,255,255,.55); font-size: .8rem; }
.count-line { width: 45px; height: 1px; background: rgba(255,255,255,.4); }
.carousel-info { display: flex; flex-direction: column; justify-content: center; padding: 3.5rem; }
.piece-type { margin: 0 0 1.4rem; color: var(--gold); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.carousel-info h3 { font-size: clamp(2rem, 3.2vw, 3.8rem); line-height: 1.05; }
.carousel-info > p:not(.piece-type) { margin: 1.7rem 0 2.8rem; color: rgba(255,255,255,.6); font-size: .87rem; line-height: 1.75; }
.carousel-controls { display: flex; align-items: center; gap: 1rem; }
.carousel-controls button { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.28); background: transparent; cursor: pointer; transition: background .25s; }
.carousel-controls button:hover { background: rgba(255,255,255,.12); }
.carousel-progress { flex: 1; height: 1px; overflow: hidden; background: rgba(255,255,255,.2); }
.carousel-progress span { display: block; width: 0; height: 100%; background: var(--gold); }
.carousel-progress span.running { animation: progress 5.5s linear both; }
.showcase-footer { display: flex; align-items: center; justify-content: space-between; gap: 3rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.16); }
.showcase-footer p { max-width: 620px; margin: 0; color: rgba(255,255,255,.58); line-height: 1.7; }
.process { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6vw; align-items: center; background: var(--cream); }
.process-copy > p:not(.eyebrow) { max-width: 520px; margin: 2rem 0 2.5rem; color: #5e5a53; line-height: 1.8; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 55px 1fr; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.process-list span { color: var(--gold); font-family: var(--serif); font-size: .76rem; }
.process-list strong { font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; }
.process-video { position: relative; }
.process-video video { aspect-ratio: 4/5; max-height: 620px; object-fit: cover; background: #162d29; }
.video-label { position: absolute; left: -2rem; bottom: 2rem; padding: 1.2rem 1.5rem; color: white; background: var(--green); }
.video-label span, .video-label small { display: block; }
.video-label span { font-family: var(--serif); font-size: 1.25rem; }
.video-label small { margin-top: .3rem; color: rgba(255,255,255,.6); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }

.motion { overflow: hidden; color: white; background: #102f29; }
.motion-head { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 2.8rem; }
.motion-head > p { max-width: 420px; margin: 0 0 .5rem; color: rgba(255,255,255,.58); line-height: 1.75; }
.motion-feature { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .65fr); background: #09231e; }
.motion-player { display: grid; min-height: 0; aspect-ratio: 16/10; place-items: center; overflow: hidden; background: #061815; }
.motion-player video { width: 100%; height: 100%; max-height: 720px; object-fit: contain; background: #061815; }
.motion-feature-copy { display: flex; min-height: 100%; flex-direction: column; justify-content: center; padding: 3.5rem; }
.motion-feature-copy > span { color: rgba(255,255,255,.42); font-family: var(--serif); font-size: .78rem; }
.motion-feature-copy > p:first-of-type { margin: 4rem 0 1.2rem; color: var(--gold); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.motion-feature-copy h3 { font-size: clamp(2rem, 3.6vw, 4rem); line-height: 1.03; }
.motion-feature-copy > p:last-child { margin: 1.6rem 0 0; color: rgba(255,255,255,.58); font-size: .88rem; line-height: 1.75; }
.motion-archive-link { align-self: flex-start; margin-top: 2.2rem; }
.social { background: var(--paper); }
.social-head { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 2.8rem; }
.instagram-handle { display: flex; align-items: center; gap: .8rem; padding-bottom: .4rem; border-bottom: 1px solid var(--ink); font-size: .8rem; }
.instagram-handle svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.social-grid a { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--cream); }
.social-grid img { height: 100%; object-fit: cover; transition: transform .5s, filter .5s; }
.social-grid span { position: absolute; inset: auto .7rem .7rem; color: white; font-size: .6rem; letter-spacing: .07em; opacity: 0; transform: translateY(5px); transition: .3s; }
.social-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.65), transparent 55%); opacity: 0; transition: .3s; }
.social-grid a:hover img { transform: scale(1.05); filter: saturate(.8); }
.social-grid a:hover::after, .social-grid a:hover span { opacity: 1; }
.social-grid span { z-index: 2; }
.social-grid a:hover span { transform: none; }

.cta { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; color: white; background: #8c562d; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(20,34,30,.62), rgba(20,34,30,.7)), url("assets/images/618811110_17849277642664225_4655730447367925297_n.jpg") center/cover; }
.cta-content { position: relative; z-index: 2; max-width: 700px; padding: 4rem 2rem; }
.cta-content > p:not(.eyebrow) { max-width: 500px; margin: 2rem auto; color: rgba(255,255,255,.72); line-height: 1.7; }
.cta .button { margin-top: 1rem; }

.reviews { display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; align-items: center; padding-top: 4rem; padding-bottom: 4rem; background: var(--cream); }
.reviews-proof { padding-right: 4vw; border-right: 1px solid var(--line); }
.reviews-rating { display: flex; align-items: baseline; gap: 1rem; }
.reviews-rating strong { font-family: var(--serif); font-size: clamp(3.8rem, 6vw, 6rem); font-weight: 600; line-height: 1; }
.reviews-rating span { color: var(--gold); font-size: .9rem; letter-spacing: .16em; }
.reviews-proof > p:not(.eyebrow) { margin: .7rem 0 1.6rem; color: var(--muted); font-size: .75rem; }
.reviews-proof ul { display: flex; flex-wrap: wrap; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.reviews-proof li { padding: .5rem .7rem; border: 1px solid var(--line); color: var(--green); font-size: .58rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.review-rotator blockquote { min-height: 2.15em; margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.5vw, 4.8rem); font-weight: 600; letter-spacing: -.035em; line-height: 1.08; transition: opacity .2s, transform .2s; }
.review-rotator blockquote.switching { opacity: 0; transform: translateY(6px); }
.review-meta { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-top: 2.2rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.review-meta strong, .review-meta span { display: block; }
.review-meta strong { font-family: var(--serif); font-size: 1.15rem; }
.review-meta div span, .review-meta > span { margin-top: .25rem; color: var(--muted); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.review-controls { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.review-controls button { width: 40px; height: 40px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.review-controls button:hover { color: white; background: var(--green); border-color: var(--green); }
.review-progress { flex: 1; height: 1px; overflow: hidden; background: var(--line); }
.review-progress span { display: block; width: 0; height: 100%; background: var(--gold); }
.review-progress span.running { animation: reviewProgress 7s linear both; }
.review-source { margin-top: 1.7rem; color: var(--green); }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 6vw; color: white; background: #0c2823; }
.contact-details > p:not(.eyebrow) { max-width: 560px; margin: 2rem 0; color: rgba(255,255,255,.62); line-height: 1.75; }
.contact-list { margin: 2rem 0; border-top: 1px solid rgba(255,255,255,.15); font-style: normal; }
.contact-list a, .contact-list > div { display: grid; grid-template-columns: 100px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-list span { color: var(--gold); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-list strong { font-size: .85rem; font-weight: 500; }
.contact-list a:hover strong { color: var(--gold); }
.contact-person span, .contact-person small { display: block; }
.contact-person span { font-family: var(--serif); font-size: 1.4rem; }
.contact-person small { margin-top: .3rem; color: rgba(255,255,255,.48); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }
.inquiry-form { padding: 2.4rem; color: var(--ink); background: var(--cream); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.inquiry-form label { display: block; margin-bottom: 1.4rem; }
.inquiry-form label > span { display: block; margin-bottom: .55rem; color: #5c5851; font-size: .62rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  padding: .9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(34,33,29,.3);
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
}
.inquiry-form textarea { padding: .9rem; border: 1px solid rgba(34,33,29,.3); resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--green); box-shadow: 0 1px 0 var(--green); }
.inquiry-form textarea:focus { box-shadow: inset 0 0 0 1px var(--green); }
.contact-submit { color: white; background: var(--green); cursor: pointer; }
.contact-submit:hover { color: var(--green); background: transparent; }
.contact-submit:disabled { opacity: .58; cursor: wait; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: .68rem; }
.form-note a { color: var(--green); text-decoration: underline; text-underline-offset: .18em; }
.form-status { min-height: 1.2rem; margin: .6rem 0 0; color: var(--green); font-size: .72rem; }
.form-status.is-error { color: #94463c; }
.form-status a { font-weight: 600; text-decoration: underline; text-underline-offset: .18em; }

.work-hero { position: relative; min-height: min(760px, 82svh); overflow: hidden; color: white; background: var(--green); }
.work-hero > img, .work-hero-shade { position: absolute; inset: 0; height: 100%; }
.work-hero > img { object-fit: cover; object-position: center 42%; }
.work-hero-shade { background: linear-gradient(90deg, rgba(8,31,27,.92) 0%, rgba(8,31,27,.68) 44%, rgba(8,31,27,.18) 78%), linear-gradient(0deg, rgba(7,22,19,.45), transparent 55%); }
.work-hero-copy { position: relative; z-index: 2; width: min(780px, 78vw); padding: clamp(11rem, 24vh, 14rem) 0 6rem 8vw; }
.work-hero-copy h1 { font-size: clamp(4.5rem, 8vw, 8rem); }
.work-hero-copy > p:last-child { max-width: 560px; margin: 2rem 0 0; color: rgba(255,255,255,.72); font-size: 1rem; line-height: 1.75; }
.work-library { background: var(--paper); }
.work-library-head { display: flex; align-items: end; justify-content: space-between; gap: 4rem; }
.work-library-head > p { max-width: 430px; margin: 0 0 .5rem; color: var(--muted); line-height: 1.75; }
.work-filters { display: flex; gap: .65rem; margin: 3.2rem 0 1rem; padding-bottom: 1rem; overflow-x: auto; scrollbar-width: thin; }
.work-filters button { flex: 0 0 auto; padding: .72rem 1rem; border: 1px solid var(--line); color: var(--muted); background: transparent; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; transition: color .2s, background .2s, border-color .2s; }
.work-filters button:hover, .work-filters button.active { color: white; background: var(--green); border-color: var(--green); }
.work-count { margin: 0 0 1.5rem; color: var(--muted); font-family: var(--serif); font-size: .82rem; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.2rem; }
.project-card { transition-delay: var(--delay, 0ms); }
.project-card button { display: block; width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; text-align: left; }
.project-card-image { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.project-card:nth-child(4n+1) .project-card-image { aspect-ratio: 4/5; }
.project-card-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,22,18,.7), transparent 48%); opacity: 0; transition: opacity .35s; }
.project-card-image img { height: 100%; object-fit: cover; transition: transform .65s ease, filter .4s; }
.project-card-image > span { position: absolute; z-index: 2; right: 1rem; bottom: 1rem; color: white; font-size: .65rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform: translateY(5px); transition: opacity .3s, transform .3s; }
.project-card button:hover .project-card-image img, .project-card button:focus-visible .project-card-image img { transform: scale(1.035); filter: saturate(.88); }
.project-card button:hover .project-card-image::after, .project-card button:focus-visible .project-card-image::after, .project-card button:hover .project-card-image > span, .project-card button:focus-visible .project-card-image > span { opacity: 1; transform: none; }
.project-card-copy { position: relative; display: grid; grid-template-columns: 1fr auto; gap: .45rem 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.project-card-copy small { grid-column: 1 / -1; color: var(--gold); font-size: .58rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.project-card-copy strong { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; line-height: 1.08; }
.project-card-copy em { align-self: end; color: var(--muted); font-size: .62rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.archive-cta { display: flex; align-items: center; justify-content: space-between; gap: 4rem; padding: 5.5rem 7vw; color: white; background: var(--green); }
.archive-cta .eyebrow { margin-bottom: 1rem; }
.archive-cta h2 { font-size: clamp(2.8rem, 5vw, 5rem); }
.archive-cta .button { flex: 0 0 auto; }
.project-dialog { width: min(1180px, 94vw); max-height: 92vh; padding: 0; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.42); }
.project-dialog::backdrop { background: rgba(5,18,15,.86); backdrop-filter: blur(5px); }
.project-dialog-close { position: sticky; z-index: 5; top: 1rem; float: right; width: 44px; height: 44px; margin: 1rem 1rem -60px 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; background: rgba(10,35,29,.82); font-size: 1.6rem; cursor: pointer; }
.project-dialog-copy { padding: 4.5rem 6vw 3rem; background: var(--cream); }
.project-dialog-copy h2 { max-width: 760px; font-size: clamp(3rem, 6vw, 6rem); }
.project-dialog-copy > p:not(.piece-type) { max-width: 720px; margin: 2rem 0; color: var(--muted); line-height: 1.8; }
.project-dialog-copy .text-link { color: var(--green); }
.project-dialog-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1rem; background: #0a211c; }
.project-dialog-media figure { margin: 0; color: white; background: #061712; }
.project-dialog-media figure:first-child:nth-last-child(odd) { grid-column: 1 / -1; }
.project-dialog-media img, .project-dialog-media video { width: 100%; max-height: 78vh; object-fit: contain; background: #061712; }
.project-dialog-media figcaption { padding: .8rem 1rem; color: rgba(255,255,255,.65); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }

footer { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: center; padding: 3rem 5vw; color: rgba(255,255,255,.67); background: #0c2823; font-size: .7rem; }
.footer-brand { color: white; font-family: var(--serif); font-size: 1.5rem; }
.footer-brand em { color: var(--gold); }
footer p { margin: 0; }
footer div { display: flex; gap: 1.5rem; }
footer small { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes scroll { 0%, 100% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(11px); opacity: 0; } }
@keyframes progress { from { width: 0; } to { width: 100%; } }
@keyframes reviewProgress { from { width: 0; } to { width: 100%; } }

@media (max-width: 980px) {
  .contact-bar { padding: 0 5vw; }
  .contact-bar p, .contact-bar .contact-bar-project { display: none; }
  .contact-bar > div { width: 100%; justify-content: flex-end; }
  .contact-bar > div a:first-child { margin-right: auto; border-left: 0; padding-left: 0; }
  .contact-bar-email { padding-right: 0 !important; }
  .email-full { display: none; }
  .email-short { display: inline; }
  .site-header { padding: 1rem 5vw; }
  .menu-toggle { position: relative; z-index: 22; display: block; width: 42px; height: 42px; }
  .menu-toggle span:not(.sr-only) { position: absolute; left: 9px; width: 24px; height: 1px; background: white; transition: .3s; }
  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:nth-child(2) { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }
  nav { position: fixed; inset: 0; z-index: 21; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 12vw; background: var(--green); transform: translateX(100%); transition: transform .4s ease; font-family: var(--serif); font-size: 2.3rem; }
  nav.open { transform: none; }
  .nav-cta { font-family: var(--sans); font-size: .75rem; }
  .hero-copy { width: 86vw; padding-left: 6vw; }
  .hero-media img { object-position: 60% center; }
  .intro { grid-template-columns: .2fr 1fr; }
  .intro-copy { grid-column: 2; padding-top: 0; }
  .services-head { align-items: flex-start; flex-direction: column; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-card h3 { margin-top: 2.5rem; }
  .turnaround { grid-template-columns: 1fr; }
  .carousel { grid-template-columns: 1fr; }
  .carousel-info { padding: 2.5rem; }
  .showcase-footer { align-items: flex-start; flex-direction: column; }
  .process { grid-template-columns: 1fr; }
  .process-copy { max-width: 700px; }
  .process-video { width: min(650px, 100%); margin-left: auto; }
  .motion-feature { grid-template-columns: 1fr; }
  .motion-feature-copy { padding: 2.5rem; }
  .motion-feature-copy > p:first-of-type { margin-top: 2.5rem; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .social-grid a:nth-child(n+4) { display: none; }
  .reviews { grid-template-columns: 1fr; }
  .reviews-proof { padding: 0 0 2.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .contact { grid-template-columns: 1fr; }
  .work-library-head { align-items: flex-start; flex-direction: column; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .archive-cta { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 640px) {
  .contact-bar { min-height: 30px; }
  .contact-bar > div, .contact-bar a { min-height: 30px; }
  .site-header { top: 30px; }
  .section { padding: 4.5rem 5vw; }
  .brand img { width: 40px; height: 40px; }
  .hero-copy { width: 95vw; padding: 10rem 5vw 5rem; }
  h1 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .hero-intro { font-size: .92rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.3rem; }
  .hero-mark { display: none; }
  .intro { display: block; }
  .intro-number { margin-bottom: 3rem; }
  .intro-copy { padding-top: 2rem; }
  .services-head { margin-bottom: 1.5rem; }
  .service-card { min-height: 0; padding: 1.6rem 0; }
  .service-card h3 { margin-top: 1.5rem; }
  .turnaround { margin-top: 2rem; }
  h2 { font-size: clamp(2.7rem, 13vw, 4.2rem); }
  .section-head, .social-head { align-items: flex-start; flex-direction: column; }
  .carousel, .carousel-visual { min-height: auto; }
  .carousel-visual { aspect-ratio: 4/5; }
  .carousel-info { padding: 2rem 1.4rem; }
  .showcase-footer { gap: 1.5rem; }
  .process-video { width: 95%; }
  .video-label { left: -1rem; bottom: 1rem; }
  .motion-head { align-items: flex-start; flex-direction: column; }
  .motion-player { aspect-ratio: 4/3; }
  .motion-feature-copy { padding: 2rem 1.4rem; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-grid a:nth-child(3) { display: none; }
  .cta { min-height: 480px; }
  .review-rotator blockquote { min-height: 3.25em; font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .review-meta { align-items: flex-start; }
  .contact-details > p:not(.eyebrow) { margin: 1.3rem 0; }
  .contact-list { margin: 1.5rem 0; }
  .inquiry-form { padding: 1.6rem 1.2rem; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-list a, .contact-list > div { grid-template-columns: 85px 1fr; }
  .work-hero { min-height: 720px; }
  .work-hero > img { object-position: 54% center; }
  .work-hero-copy { width: 100%; padding: 10rem 5vw 4.5rem; }
  .work-hero-copy h1 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .work-filters { margin-right: -5vw; padding-right: 5vw; }
  .project-grid { grid-template-columns: 1fr; gap: 2rem; }
  .project-card:nth-child(4n+1) .project-card-image { aspect-ratio: 4/3; }
  .archive-cta { padding: 4.5rem 5vw; }
  .project-dialog { width: 100vw; max-width: none; max-height: 96vh; }
  .project-dialog-copy { padding: 4.5rem 1.4rem 2.5rem; }
  .project-dialog-media { grid-template-columns: 1fr; }
  .project-dialog-media figure:first-child:nth-last-child(odd) { grid-column: auto; }
  footer { display: flex; align-items: flex-start; flex-direction: column; }
  footer small { width: 100%; }
}

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