:root {
  --black: #080808;
  --black-soft: #111111;
  --white: #f6f3ed;
  --paper: #ebe7df;
  --muted: #a5a29c;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(8,8,8,.16);
  --accent: #c9a24f;
  --accent-deep: #9d772e;
  --max: 1240px;
  --gutter: clamp(1rem, 3vw, 2.75rem);
  --radius: 2px;
  --shadow: 0 20px 70px rgba(0,0,0,.25);
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--black); }

.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: 9999;
  top: .75rem;
  left: .75rem;
  transform: translateY(-200%);
  background: var(--accent);
  color: var(--black);
  padding: .75rem 1rem;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}
.section { padding: clamp(5rem, 9vw, 9rem) 0; }
.section-dark { background: var(--black); color: var(--white); }
.section-muted { background: var(--paper); }
.section-accent { background: var(--accent); color: var(--black); }

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  font-size: .74rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: .98;
  letter-spacing: -.045em;
}
h1 {
  max-width: 900px;
  margin-bottom: 1.3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 8vw, 8rem);
  font-weight: 400;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.3vw, 5.2rem);
  font-weight: 400;
}
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p { font-size: clamp(1rem, 1.3vw, 1.15rem); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-accent { background: var(--accent); color: var(--black); }
.button-accent:hover { background: #dfbd70; }
.button-ghost { border-color: rgba(255,255,255,.55); color: #fff; background: rgba(0,0,0,.15); backdrop-filter: blur(8px); }
.button-ghost:hover { background: #fff; color: #000; }
.button-dark { background: var(--black); color: var(--white); }
.button-light { background: var(--white); color: var(--black); }
.button-outline-light { background: transparent; color: var(--black); border-color: rgba(0,0,0,.5); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .8rem var(--gutter);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.15);
  transition: background .3s var(--ease), color .3s var(--ease), min-height .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(246,243,237,.96);
  color: var(--black);
  border-bottom-color: rgba(0,0,0,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: #000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.08em;
  box-shadow: 0 5px 20px rgba(0,0,0,.15);
}
.brand-name {
  white-space: nowrap;
  font-size: .92rem;
  letter-spacing: -.02em;
}
.brand-name strong { font-weight: 850; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.site-nav a {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-cta)::after {
  display: block;
  width: 0;
  height: 1px;
  margin-top: 4px;
  background: currentColor;
  content: "";
  transition: width .2s var(--ease);
}
.site-nav a:hover::after { width: 100%; }
.nav-cta { padding: .8rem 1rem; color: var(--black); background: var(--accent); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero-slides, .hero-slide, .hero-slide picture, .hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide {
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.1s ease, transform 8s linear;
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-slide img { object-fit: cover; }
.hero-slide:nth-child(1) img { object-position: 62% center; }
.hero-slide:nth-child(2) img { object-position: 50% center; }
.hero-slide:nth-child(3) img { object-position: 52% center; }
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 54%, rgba(0,0,0,.15) 100%),
    linear-gradient(0deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,0) 47%);
}
.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
.hero-content .eyebrow { color: var(--accent); }
.hero-intro { max-width: 670px; color: rgba(255,255,255,.82); font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.2rem; }
.hero-controls {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: rgba(0,0,0,.2);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.hero-control:hover { background: #fff; color: #000; }
.hero-count { display: flex; align-items: center; gap: .55rem; font-size: .7rem; font-weight: 800; letter-spacing: .14em; }
.hero-count i { width: 48px; height: 1px; background: rgba(255,255,255,.55); }
.hero-caption {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  top: 50%;
  display: flex;
  align-items: flex-end;
  gap: .4rem;
  flex-direction: column;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-caption span { color: var(--accent); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero-caption strong { font-size: .82rem; font-weight: 500; }
.scroll-cue {
  position: absolute;
  z-index: 5;
  left: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.scroll-cue span { width: 42px; height: 1px; background: var(--accent); }

.intro-grid {
  display: grid;
  grid-template-columns: .65fr 1.7fr .85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro-copy h2 { max-width: 800px; margin-bottom: 2rem; }
.intro-copy p { max-width: 760px; color: #34322f; }
.intro-stat {
  padding: 1.3rem 0 1.3rem 1.4rem;
  border-left: 3px solid var(--accent);
}
.intro-stat span, .intro-stat small { display: block; }
.intro-stat span { margin-bottom: .4rem; color: #66615b; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.intro-stat strong { display: block; margin-bottom: .7rem; font-family: Georgia, serif; font-size: 2rem; line-height: 1; }
.intro-stat small { color: #5f5b55; line-height: 1.5; }

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr .65fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0; color: #5d5953; }
.section-dark .section-heading > p { color: rgba(255,255,255,.64); }

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 1rem;
}
.work-card {
  position: relative;
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #161616;
  color: #fff;
  cursor: zoom-in;
  text-align: left;
}
.work-card-wide { min-height: 600px; }
.work-card-tall { min-height: 600px; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s var(--ease); }
.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 55%);
  content: "";
}
.work-card:hover img { transform: scale(1.035); filter: contrast(1.04); }
.work-label { position: absolute; z-index: 2; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; }
.work-label small { display: block; margin-bottom: .35rem; color: var(--accent); font-size: .65rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.work-label strong { font-family: Georgia, serif; font-size: clamp(1.3rem, 2.3vw, 2.2rem); font-weight: 400; }
.work-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.work-links a { color: rgba(255,255,255,.7); font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.work-links a:hover { color: var(--accent); }

.tournament { background: var(--paper); }
.tournament-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.tournament-copy h2 { margin-bottom: 1.6rem; }
.tournament-copy p { color: #4d4944; }
.specialty-note { padding: 1.2rem 0 1.2rem 1.3rem; border-left: 3px solid var(--accent); }
.project-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: 2rem; }
.project-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.project-image { position: relative; min-height: 240px; overflow: hidden; background: #111; color: #fff; }
.project-image-main { grid-column: 1 / -1; min-height: 470px; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-image:hover img { transform: scale(1.035); }
.project-image span { position: absolute; right: .8rem; bottom: .8rem; padding: .5rem .65rem; background: var(--accent); color: #000; font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.service-list { border-top: 1px solid var(--line-dark); }
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.service-row > span { color: var(--accent-deep); font-family: Georgia, serif; font-size: 1.4rem; }
.service-row h3 { margin-bottom: .45rem; }
.service-row p { max-width: 760px; margin-bottom: 0; color: #66615b; }
.service-row > strong { align-self: start; color: #6f6a64; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.cinematic-break {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.cinematic-break picture, .cinematic-break img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cinematic-break img { object-fit: cover; object-position: center; }
.cinematic-break::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.15)); content: ""; }
.cinematic-break-copy { position: relative; z-index: 2; display: flex; min-height: 72svh; flex-direction: column; justify-content: center; }
.cinematic-break-copy p { margin-bottom: .35rem; color: var(--accent); font-size: .78rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.cinematic-break-copy h2 { max-width: 850px; margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.logo-panel { display: grid; min-height: 430px; place-items: center; padding: clamp(2rem, 5vw, 5rem); background: #fff; box-shadow: var(--shadow); }
.logo-panel img { max-width: 430px; }
.about-brand p { margin: 1rem 0 0; color: #6e6962; font-size: .88rem; }
.about-copy h2 { margin-bottom: 1.8rem; }
.about-copy p { color: #4f4b46; }
.about-copy .text-link { margin-top: 1rem; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-heading p { color: #5f5a54; }
.accordion details { border-top: 1px solid var(--line-dark); }
.accordion details:last-child { border-bottom: 1px solid var(--line-dark); }
.accordion summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { position: absolute; right: .25rem; top: 1.2rem; color: var(--accent-deep); content: "+"; font-family: Georgia, serif; font-size: 2rem; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 760px; padding: 0 2rem 1.5rem 0; color: #5e5953; }

.inquiry-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; }
.inquiry h2 { max-width: 850px; margin-bottom: 1rem; }
.inquiry p { max-width: 800px; }
.inquiry-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }

.site-footer { padding: 5rem 0 1.4rem; background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .6fr; gap: 4rem; }
.footer-brand { display: inline-block; margin-bottom: 1rem; font-size: 1.55rem; text-decoration: none; }
.footer-grid p { max-width: 560px; color: rgba(255,255,255,.55); font-size: .95rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-grid > div:not(:first-child) strong { margin-bottom: .35rem; color: var(--accent); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid a:not(.footer-brand) { color: rgba(255,255,255,.74); font-size: .9rem; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: rgba(255,255,255,.42); font-size: .72rem; }

.back-to-top {
  position: fixed;
  z-index: 800;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,.22);
  transition: opacity .25s, transform .25s;
}
.back-to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }

.lightbox,
.form-preview {
  width: min(95vw, 1180px);
  max-height: 92svh;
  padding: 0;
  overflow: auto;
  border: 0;
  background: #0b0b0b;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}
.lightbox::backdrop,
.form-preview::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 88svh; object-fit: contain; }
.lightbox-close,
.form-close {
  position: sticky;
  z-index: 5;
  top: .7rem;
  float: right;
  display: grid;
  width: 44px;
  height: 44px;
  margin: .7rem .7rem -3.4rem 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 1.5rem;
  cursor: pointer;
}
.form-preview { width: min(94vw, 900px); background: var(--white); color: var(--black); }
.form-preview-header { padding: 3rem 3rem 1rem; }
.form-preview-header h2 { margin-bottom: 1rem; }
.form-preview-header p { color: #5f5b55; }
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1rem 3rem 3rem; }
.demo-form label { display: grid; gap: .45rem; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-form input, .demo-form select, .demo-form textarea { width: 100%; padding: .9rem; border: 1px solid #bdb8ae; border-radius: 0; background: #fff; color: #111; text-transform: none; }
.form-wide { grid-column: 1 / -1; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { min-height: 68px; }
  .brand-name { display: none; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 1rem var(--gutter) 1.5rem;
    background: rgba(8,8,8,.98);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .site-header.is-scrolled .site-nav { background: rgba(246,243,237,.98); color: #000; }
  .site-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid currentColor; }
  .site-nav a::after { display: none !important; }
  .nav-cta { margin-top: .8rem; padding: 1rem; text-align: center; border-bottom: 0 !important; }
  .intro-grid, .section-heading, .tournament-grid, .about-grid, .faq-grid, .inquiry-grid { grid-template-columns: 1fr; }
  .intro-grid { gap: 2rem; }
  .section-kicker { color: var(--accent-deep); }
  .editorial-grid { grid-template-columns: 1fr; }
  .work-card, .work-card-wide, .work-card-tall { min-height: 60vw; }
  .project-image-main { min-height: 50vw; }
  .inquiry-actions { justify-content: flex-start; }
}

@media (max-width: 680px) {
  :root { --gutter: 1rem; }
  .section { padding: 4.5rem 0; }
  .hero-content { padding-top: 7rem; padding-bottom: 9rem; }
  h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-intro { max-width: 92%; }
  .hero-caption { display: none; }
  .hero-controls { right: 1rem; bottom: 1rem; }
  .scroll-cue { left: 1rem; bottom: 1.4rem; }
  .service-row { grid-template-columns: 42px 1fr; gap: 1rem; }
  .service-row > strong { display: none; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-image-main { grid-column: auto; }
  .project-image, .project-image-main { min-height: 64vw; }
  .work-card, .work-card-wide, .work-card-tall { min-height: 90vw; }
  .logo-panel { min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .demo-form { grid-template-columns: 1fr; padding: 1rem 1.1rem 1.5rem; }
  .form-preview-header { padding: 2.5rem 1.1rem .5rem; }
  .form-wide { grid-column: auto; }
}

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

/* Visual system approval page */
.guide-body { background: var(--paper); }
.guide-header { padding: 2rem 0; background: var(--black); color: var(--white); }
.guide-header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.guide-header a { color: var(--accent); font-weight: 800; }
.guide-main { padding: 5rem 0; }
.guide-intro { max-width: 850px; margin-bottom: 5rem; }
.guide-intro h1 { font-size: clamp(3rem, 7vw, 6rem); color: var(--black); }
.guide-intro p { color: #5f5a54; }
.guide-section { margin: 0 0 5rem; padding-top: 2rem; border-top: 1px solid var(--line-dark); }
.guide-section > h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.swatches { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.swatch { min-height: 210px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; border: 1px solid rgba(0,0,0,.12); }
.swatch strong, .swatch span { display: block; }
.swatch span { font-size: .8rem; }
.swatch-black { background: var(--black); color: var(--white); }
.swatch-white { background: var(--white); }
.swatch-paper { background: var(--paper); }
.swatch-accent { background: var(--accent); }
.type-samples { display: grid; gap: 2rem; }
.type-display { font-family: Georgia, serif; font-size: clamp(3rem, 8vw, 7rem); line-height: .95; letter-spacing: -.05em; }
.type-body { max-width: 760px; font-size: 1.2rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; padding: 2rem; background: #232323; }
.component-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.component-card { padding: 2rem; background: var(--white); box-shadow: 0 12px 40px rgba(0,0,0,.08); }
.component-card-dark { background: var(--black); color: var(--white); }
.component-card h3 { margin-bottom: .75rem; }
.component-card p { color: #67625c; }
.component-card-dark p { color: rgba(255,255,255,.62); }
@media (max-width: 760px) { .swatches, .component-grid { grid-template-columns: 1fr; } }


/* Production multi-page system */
body.inner-page .site-header:not(.is-scrolled) { background: rgba(8,8,8,.78); backdrop-filter: blur(14px); }
.brand-logo-panel { display:grid; width:54px; height:54px; place-items:center; padding:4px; background:#fff; box-shadow:0 6px 24px rgba(0,0,0,.18); }
.brand-logo-panel img { width:100%; height:100%; object-fit:contain; }
.site-header.is-scrolled .brand-logo-panel { width:46px; height:46px; }
.site-header { min-height:86px; }
.site-header.is-scrolled { min-height:70px; }
.site-nav a[aria-current="page"]::after { width:100%; }
.service-row { color:inherit; text-decoration:none; }
.service-row:hover h3 { color:var(--accent-deep); }
.section-action { margin-top:2.5rem; }
.light { color:#fff; }

.page-hero { position:relative; min-height:72svh; display:flex; align-items:flex-end; overflow:hidden; background:#000; color:#fff; }
.page-hero > picture, .page-hero > picture img { position:absolute; inset:0; width:100%; height:100%; }
.page-hero > picture img { object-fit:cover; }
.page-hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.15)),linear-gradient(0deg,rgba(0,0,0,.68),transparent 55%); }
.page-hero-content { position:relative; z-index:2; padding-top:9rem; padding-bottom:clamp(3rem,7vw,6rem); }
.page-hero-content h1 { max-width:920px; font-size:clamp(3.2rem,7vw,7rem); }
.page-hero-content > p:not(.eyebrow) { max-width:760px; color:rgba(255,255,255,.82); font-size:clamp(1.05rem,2vw,1.3rem); }
.page-hero-content .button { margin-top:1rem; }
.page-hero-compact { min-height:58svh; }
.page-hero-about > picture img { object-position:center 30% !important; }
.breadcrumbs { display:flex; flex-wrap:wrap; gap:.55rem; padding-top:1.2rem; padding-bottom:1.2rem; color:#6b665f; font-size:.76rem; font-weight:750; letter-spacing:.08em; text-transform:uppercase; }
.breadcrumbs a { text-decoration:none; }
.breadcrumbs a:hover { color:var(--accent-deep); }

.panorama-feature { position:relative; min-height:420px; margin-top:1rem; overflow:hidden; }
.panorama-feature > picture, .panorama-feature img { position:absolute; inset:0; width:100%; height:100%; }
.panorama-feature img { object-fit:cover; }
.panorama-feature::after { position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.05)); content:""; }
.panorama-copy { position:relative; z-index:2; display:flex; min-height:420px; max-width:620px; flex-direction:column; justify-content:center; padding:clamp(1.5rem,5vw,4rem); color:#fff; }
.panorama-copy p { color:var(--accent); font-size:.7rem; font-weight:850; letter-spacing:.14em; text-transform:uppercase; }
.panorama-copy h3 { font-family:Georgia,serif; font-size:clamp(1.8rem,4vw,3.5rem); font-weight:400; }

.about-home-grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(3rem,8vw,8rem); align-items:center; }
.about-portrait { min-height:680px; overflow:hidden; background:#080808; }
.about-portrait picture, .about-portrait img { width:100%; height:100%; }
.about-portrait img { object-fit:cover; object-position:center 25% !important; }
.region-grid, .story-grid, .split-feature, .service-intro-grid, .featured-project-grid, .contact-grid, .related-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2.5rem,7vw,7rem); align-items:center; }
.location-list { display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.5rem; }
.location-list span { padding:.55rem .75rem; border:1px solid var(--line-dark); font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.process-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-dark); }
.process-grid article { padding:2rem; background:var(--white); }
.process-grid span, .capability-grid span { display:block; margin-bottom:1.4rem; color:var(--accent-deep); font-family:Georgia,serif; font-size:1.6rem; }
.process-grid p { color:#625d57; }

.story-grid { align-items:start; }
.story-copy h2 { max-width:760px; }
.story-copy p { color:#4f4b46; }
.story-logo { position:sticky; top:110px; }
.split-feature { color:inherit; }
.split-feature picture, .split-feature img { width:100%; min-height:480px; object-fit:cover; }
.capability-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-dark); }
.capability-grid article { padding:2rem 1.5rem; background:var(--white); }
.cinematic-short, .cinematic-short .cinematic-break-copy { min-height:58svh; }

.service-index { border-top:1px solid var(--line-dark); }
.service-index-item { display:grid; grid-template-columns:60px 1fr auto; gap:2rem; align-items:center; padding:2.25rem 0; border-bottom:1px solid var(--line-dark); color:inherit; text-decoration:none; }
.service-index-item > span { color:var(--accent-deep); font-family:Georgia,serif; font-size:1.35rem; }
.service-index-item h2 { margin:0 0 .55rem; font-size:clamp(1.8rem,3.7vw,3.6rem); }
.service-index-item p { max-width:820px; margin:0; color:#67615a; }
.service-index-item > strong { font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; }
.service-index-item:hover h2 { color:var(--accent-deep); }

.portfolio-filters { display:flex; flex-wrap:wrap; gap:.55rem; margin-bottom:2rem; }
.portfolio-filters button { padding:.65rem .85rem; border:1px solid var(--line); background:transparent; color:rgba(255,255,255,.72); font-size:.68rem; font-weight:850; letter-spacing:.09em; text-transform:uppercase; cursor:pointer; }
.portfolio-filters button.is-active, .portfolio-filters button:hover { background:var(--accent); border-color:var(--accent); color:#000; }
.portfolio-index-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.portfolio-index-card { position:relative; min-height:430px; overflow:hidden; }
.portfolio-index-card.is-filtered-out { display:none; }
.portfolio-index-card a, .portfolio-index-card picture, .portfolio-index-card img { display:block; width:100%; height:100%; }
.portfolio-index-card img { object-fit:cover; transition:transform .8s var(--ease); }
.portfolio-index-card a::after { position:absolute; inset:0; background:linear-gradient(0deg,rgba(0,0,0,.78),transparent 58%); content:""; }
.portfolio-index-card a:hover img { transform:scale(1.035); }
.portfolio-index-card span { position:absolute; z-index:2; left:1.4rem; right:1.4rem; bottom:1.4rem; color:#fff; }
.portfolio-index-card small { display:block; margin-bottom:.4rem; color:var(--accent); font-size:.68rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase; }
.portfolio-index-card strong { display:block; max-width:680px; font-family:Georgia,serif; font-size:clamp(1.4rem,3vw,2.6rem); font-weight:400; line-height:1.05; }

.gallery-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; }
.gallery-item { position:relative; min-height:430px; padding:0; overflow:hidden; border:0; background:#161616; color:#fff; cursor:zoom-in; text-align:left; }
.gallery-item:nth-child(3n+1) { grid-column:span 2; min-height:620px; }
.gallery-item.gallery-panorama, .gallery-item.gallery-wide { grid-column:1/-1; min-height:420px; }
.gallery-item picture, .gallery-item img { width:100%; height:100%; }
.gallery-item img { object-fit:cover; transition:transform .8s var(--ease); }
.gallery-item::after { position:absolute; inset:45% 0 0; background:linear-gradient(0deg,rgba(0,0,0,.78),transparent); content:""; }
.gallery-item:hover img { transform:scale(1.035); }
.gallery-label { position:absolute; z-index:2; left:1.2rem; right:1.2rem; bottom:1.2rem; }
.gallery-label strong, .gallery-label small { display:block; }
.gallery-label strong { font-family:Georgia,serif; font-size:clamp(1.25rem,2.4vw,2.2rem); font-weight:400; }
.gallery-label small { margin-top:.3rem; color:var(--accent); font-size:.68rem; font-weight:850; letter-spacing:.1em; text-transform:uppercase; }

.service-detail-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-dark); }
.service-detail-grid article { padding:2rem; background:var(--paper); }
.detail-list { margin:0; padding:0; list-style:none; }
.detail-list li { padding:.8rem 0; border-top:1px solid var(--line-dark); }
.detail-list li:last-child { border-bottom:1px solid var(--line-dark); }
.featured-project-band { background:var(--paper); }
.featured-project-grid { align-items:center; }
.featured-project-image { position:relative; display:block; min-height:480px; overflow:hidden; color:#fff; }
.featured-project-image picture, .featured-project-image img { width:100%; height:100%; }
.featured-project-image img { object-fit:cover; }
.featured-project-image span { position:absolute; right:1rem; bottom:1rem; padding:.55rem .7rem; background:var(--accent); color:#000; font-size:.68rem; font-weight:850; letter-spacing:.1em; text-transform:uppercase; }
.related-actions { display:flex; flex-wrap:wrap; gap:.8rem; justify-content:flex-end; }
.button-outline-dark { background:transparent; border-color:rgba(0,0,0,.5); color:#000; }

.faq-full-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:clamp(3rem,8vw,8rem); align-items:start; }
.prose { max-width:860px; }
.prose h2 { margin-top:2.8rem; margin-bottom:1rem; font-size:clamp(1.8rem,3.5vw,3rem); }
.prose h2:first-child { margin-top:0; }
.prose p { color:#514c46; }

.contact-grid { align-items:start; }
.contact-copy { position:sticky; top:110px; }
.contact-copy h2 { margin-bottom:1.4rem; }
.contact-option { margin-top:2rem; padding-top:1.4rem; border-top:1px solid var(--line-dark); }
.contact-option strong { display:block; margin-bottom:.4rem; }
.inquiry-form { display:grid; grid-template-columns:1fr 1fr; gap:1rem; padding:clamp(1.2rem,4vw,2.5rem); background:var(--paper); border:1px solid var(--line-dark); }
.inquiry-form label { display:grid; gap:.45rem; }
.inquiry-form label > span { font-size:.72rem; font-weight:850; letter-spacing:.08em; text-transform:uppercase; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width:100%; padding:.95rem; border:1px solid #aaa49b; border-radius:0; background:#fff; color:#111; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color:var(--accent-deep); outline:3px solid rgba(201,162,79,.25); }
.inquiry-form .form-wide { grid-column:1/-1; }
.file-field small { color:#69635c; }
.checkbox-field { grid-template-columns:auto 1fr; align-items:start; }
.checkbox-field input { width:20px; height:20px; margin-top:.1rem; }
.checkbox-field > span { text-transform:none !important; letter-spacing:0 !important; font-size:.9rem !important; }
.honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.form-status { display:none; grid-column:1/-1; padding:1rem; border-left:4px solid var(--accent-deep); background:#fff; }
.form-status.is-visible { display:block; }
.form-status.is-error { border-left-color:#9d2e2e; }
.form-noscript { color:#8f2222; }

.status-body { background:#050505; color:#fff; }
.status-body .site-header, .status-body .site-footer { display:none; }
.status-page { min-height:100svh; display:grid; place-items:center; padding:2rem; background:linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.82)),url('../images/cincinnati-skyline-sunset-1800.jpg') center/cover no-repeat; }
.status-404 { background-image:linear-gradient(rgba(0,0,0,.72),rgba(0,0,0,.84)),url('../images/roebling-bridge-night-1800.jpg'); }
.status-card { max-width:920px; color:#fff; }
.status-card h1 { max-width:900px; }
.status-card p { max-width:700px; color:rgba(255,255,255,.78); }
.status-actions { display:flex; flex-wrap:wrap; gap:.75rem; margin-top:2rem; }

.footer-logo-link { display:inline-block; width:165px; margin-bottom:1rem; padding:.5rem; background:#fff; }
.footer-logo { width:100%; }
.footer-bottom a { color:inherit; }

.lightbox { position:relative; width:min(96vw,1450px); overflow:visible; }
.lightbox figure { margin:0; }
.lightbox figure img { width:100%; max-height:82svh; object-fit:contain; background:#050505; }
.lightbox figcaption { min-height:3rem; padding:1rem 4.5rem 1rem 1rem; color:rgba(255,255,255,.78); }
.lightbox-toolbar { position:absolute; z-index:6; top:.7rem; right:.7rem; }
.lightbox-close { position:static; float:none; margin:0; }
.lightbox-nav { position:absolute; z-index:6; top:50%; display:grid; width:50px; height:58px; place-items:center; border:0; background:rgba(0,0,0,.58); color:#fff; font-size:2.2rem; transform:translateY(-50%); cursor:pointer; }
.lightbox-prev { left:.6rem; }
.lightbox-next { right:.6rem; }
body.lightbox-open { overflow:hidden; }

@media (max-width:980px) {
  .about-home-grid, .region-grid, .story-grid, .split-feature, .service-intro-grid, .featured-project-grid, .contact-grid, .related-grid, .faq-full-grid { grid-template-columns:1fr; }
  .story-logo, .contact-copy { position:static; }
  .process-grid, .capability-grid, .service-detail-grid { grid-template-columns:1fr 1fr; }
  .service-index-item { grid-template-columns:52px 1fr; }
  .service-index-item > strong { display:none; }
  .portfolio-index-grid { grid-template-columns:1fr; }
  .about-portrait { min-height:650px; }
  .related-actions { justify-content:flex-start; }
}
@media (max-width:680px) {
  .brand-logo-panel { width:48px; height:48px; }
  .page-hero { min-height:68svh; }
  .page-hero-compact { min-height:56svh; }
  .page-hero-content h1 { font-size:clamp(3rem,14vw,5rem); }
  .process-grid, .capability-grid, .service-detail-grid, .gallery-grid, .inquiry-form { grid-template-columns:1fr; }
  .gallery-item, .gallery-item:nth-child(3n+1), .gallery-item.gallery-panorama, .gallery-item.gallery-wide { grid-column:auto; min-height:82vw; }
  .gallery-item.gallery-panorama img { object-fit:cover; object-position:center !important; }
  .portfolio-index-card { min-height:78vw; }
  .about-portrait { min-height:115vw; }
  .service-index-item { grid-template-columns:38px 1fr; gap:1rem; }
  .service-index-item h2 { font-size:2rem; }
  .inquiry-form .form-wide { grid-column:auto; }
  .lightbox-nav { width:44px; height:52px; }
  .lightbox figcaption { padding-right:1rem; }
}
/* White logo artwork is designed for a dark field. */
.brand-logo-panel { background:#050505; border:1px solid rgba(255,255,255,.18); }
.footer-logo-link { background:#050505; border:1px solid rgba(255,255,255,.16); }
.footer-logo { width:100%; height:auto; }
.logo-panel { background:#050505; border:1px solid rgba(255,255,255,.12); }
.logo-panel img { width:100%; height:auto; }
