:root {
  --ink: #07162d;
  --ink-soft: #26364d;
  --paper: #f8f5ee;
  --white: #ffffff;
  --zinc: #d8dde4;
  --zinc-dark: #7b8794;
  --tile: #b96d43;
  --tile-soft: #e9d1bf;
  --shadow: 0 18px 45px rgba(7, 22, 45, 0.13);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 238, 0.95);
  border-bottom: 1px solid rgba(7, 22, 45, 0.1);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 210px;
}

.brand img {
  width: 78px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--white) !important;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(7, 22, 45, 0.18);
  background: var(--white);
  color: var(--ink);
  min-height: 42px;
  padding: 0 14px;
  font-weight: 700;
}

.hero {
  min-height: 82vh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: var(--ink);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 22, 45, 0.84), rgba(7, 22, 45, 0.56) 45%, rgba(7, 22, 45, 0.18)),
    linear-gradient(0deg, rgba(7, 22, 45, 0.62), rgba(7, 22, 45, 0.02) 44%);
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 58px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--tile-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  font-weight: 500;
}

h1 {
  max-width: 890px;
  font-size: clamp(2.7rem, 7vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.hero-lead {
  max-width: 710px;
  margin: 22px 0 30px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink);
  background: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.button.light {
  background: var(--paper);
  color: var(--ink);
}

.hero-metrics {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 840px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-metrics div {
  padding: 20px 18px;
  background: rgba(7, 22, 45, 0.46);
}

.hero-metrics strong {
  display: block;
  font-size: 1.35rem;
  color: var(--white);
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 62px 0;
}

.section.dark {
  background: var(--ink);
  color: var(--white);
}

.section.white {
  background: var(--white);
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-intro p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.dark .section-intro p {
  color: rgba(255, 255, 255, 0.75);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

.split p {
  color: var(--ink-soft);
}

.dark .split p {
  color: rgba(255, 255, 255, 0.76);
}

.media-frame {
  border: 1px solid rgba(7, 22, 45, 0.12);
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-frame.wide img {
  aspect-ratio: 16 / 10;
}

.service-grid,
.zone-grid,
.proof-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zone-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.proof-card,
.process-card,
.zone-link {
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.12);
  padding: 24px;
  border-radius: 8px;
}

.service-card {
  text-decoration: none;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-card p,
.proof-card p,
.process-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
}

.service-card span,
.zone-link span {
  margin-top: 20px;
  color: var(--tile);
  font-weight: 800;
}

.zone-link {
  text-decoration: none;
  min-height: 118px;
}

.zone-link strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.editorial-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: stretch;
}

.editorial-feature,
.editorial-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  min-height: 280px;
}

.editorial-feature img,
.editorial-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.editorial-feature:hover img,
.editorial-tile:hover img {
  transform: scale(1.025);
}

.editorial-feature {
  min-height: 620px;
}

.editorial-stack {
  display: grid;
  gap: 18px;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.editorial-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(7, 22, 45, 0.84), rgba(7, 22, 45, 0));
}

.editorial-caption h3 {
  margin: 0;
}

.editorial-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.image-led {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
}

.image-led img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.image-led-copy {
  align-self: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.12);
  border-radius: 8px;
}

.image-led-copy p {
  color: var(--ink-soft);
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.before-after-card {
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.before-after-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 22, 45, 0.16);
}

.before-after-shot {
  position: relative;
  height: 380px;
  background: var(--paper);
}

.before-after-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--paper);
}

.before-after-shot span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  background: rgba(7, 22, 45, 0.88);
  color: var(--white);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.before-after-body {
  padding: 24px;
}

.before-after-body p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.work-card {
  grid-column: span 4;
  background: var(--white);
  border: 1px solid rgba(7, 22, 45, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.work-card.large {
  grid-column: span 8;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--paper);
}

.work-card.large img {
  aspect-ratio: 16 / 7;
}

.work-card div {
  padding: 18px;
}

.work-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq article {
  padding: 24px 0;
  border-top: 1px solid rgba(7, 22, 45, 0.16);
}

.faq p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.cta-band {
  background: var(--ink);
  color: var(--white);
  padding: 62px 0;
}

.cta-band .container {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
}

.cta-band p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(7, 22, 45, 0.1);
  border: 1px solid rgba(7, 22, 45, 0.1);
}

.contact-strip a,
.contact-strip div {
  background: var(--white);
  padding: 22px;
  text-decoration: none;
}

.contact-strip span {
  display: block;
  color: var(--zinc-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.contact-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.page-hero {
  padding: 88px 0 70px;
  background: var(--ink);
  color: var(--white);
}

.page-hero p {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.text-page {
  max-width: 860px;
}

.text-page p,
.text-page li {
  color: var(--ink-soft);
}

.text-page h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.site-footer {
  background: #050f20;
  color: var(--white);
  padding: 54px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  margin: 8px 0;
}

.footer-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-logo {
  width: 180px;
  height: auto;
  background: var(--white);
  padding: 8px;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(7, 22, 45, 0.12);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero-metrics,
  .service-grid,
  .proof-grid,
  .process-grid,
  .faq,
  .before-after-grid,
  .editorial-gallery,
  .image-led,
  .split,
  .split.reverse,
  .footer-grid,
  .contact-strip,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .zone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-feature {
    min-height: 420px;
  }

  .editorial-stack {
    grid-template-rows: none;
  }

  .before-after-images {
    grid-template-columns: 1fr;
  }

  .before-after-shot {
    height: 340px;
  }

  .work-card,
  .work-card.large {
    grid-column: span 12;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .container,
  .hero-content {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 64px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-bottom: 38px;
  }

  .hero-metrics {
    margin-top: 34px;
  }

  .section {
    padding: 68px 0;
  }

  .image-led img {
    min-height: 300px;
  }

  .image-led-copy {
    padding: 28px;
  }

  .before-after-images {
    grid-template-columns: 1fr;
  }

  .zone-grid {
    grid-template-columns: 1fr;
  }
}
