:root {
  --bg: #f8f1e4;
  --surface: #fffaf0;
  --surface-2: #dfeee8;
  --ink: #191713;
  --muted: #635f58;
  --line: #d8c7ad;
  --red: #c23f2d;
  --red-dark: #8f2d22;
  --blue: #075e83;
  --green: #2f7c65;
  --gold: #c69432;
  --cobalt: #163f8c;
  --clay: #d56842;
  --shadow: 0 18px 50px rgba(38, 29, 19, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffaf0 0%, var(--bg) 44%, #e5f1eb 100%);
  line-height: 1.55;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.4rem, 5vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3.1rem); }
h3 { font-size: 1.2rem; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 240, 0.96);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 10px 28px rgba(38, 29, 19, 0.08);
  backdrop-filter: blur(14px);
}

.header-top {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 0 clamp(18px, 3.2vw, 46px);
  color: #fff7e8;
  background: var(--ink);
  font-size: 0.82rem;
}

.header-top a {
  color: inherit;
}

.header-top a:hover {
  color: #ffd064;
}

.header-main {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: stretch;
  gap: clamp(18px, 2.4vw, 34px);
  padding: 0 clamp(18px, 3.2vw, 46px);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 6px 0;
}

.brand img {
  width: 146px;
  height: auto;
}

.brand span {
  display: block;
  max-width: 110px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  min-width: 0;
  gap: 0;
  font-size: 0.93rem;
}

.site-nav a {
  position: relative;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: -2px;
  left: 11px;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red-dark);
  background: rgba(194, 63, 45, 0.06);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-quote {
  align-self: center;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fffaf0;
  font-weight: 800;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--ink);
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-quote:hover {
  background: var(--blue);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero,
.gold-hero {
  position: relative;
  min-height: 620px;
  height: 78svh;
  max-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #10120f;
}

.hero {
  background: #071011;
}

.gold-hero {
  background:
    linear-gradient(118deg, #041113 0%, #071b1f 38%, #123238 62%, #655221 82%, #b78a38 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-position: center right;
  background-repeat: no-repeat;
}

.hero::before {
  background-size: cover;
  transform: none;
  animation: none;
  opacity: 1;
  filter: none;
}

.gold-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  transform: none;
  animation: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 11, 11, 0.86) 0%, rgba(7, 11, 11, 0.74) 30%, rgba(7, 16, 17, 0.42) 48%, rgba(7, 16, 17, 0.12) 70%, rgba(7, 16, 17, 0.02) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.10) 100%);
}

.gold-overlay {
  background:
    linear-gradient(90deg, rgba(3, 14, 16, 0.90) 0%, rgba(3, 14, 16, 0.72) 40%, rgba(20, 54, 58, 0.30) 68%, rgba(181, 130, 48, 0.10) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.16) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - var(--container)) / 2));
  color: #fff;
  padding: 56px 0;
}

.hero-content::before {
  content: "";
  display: block;
  width: 86px;
  height: 8px;
  margin-bottom: 22px;
  background: var(--red);
  box-shadow: 96px 0 0 var(--gold);
}

.hero-content h1 {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: inherit;
  max-width: 780px;
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.hero .eyebrow,
.gold-hero .eyebrow,
.section-dark .eyebrow {
  color: #f1c55a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 0;
  border: 2px solid var(--ink);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-primary {
  background: var(--red);
  color: #fff;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  background: var(--blue);
  color: #fff;
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.1);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.28);
}

.section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.section-muted {
  background:
    linear-gradient(90deg, rgba(7, 94, 131, 0.07), transparent 38%),
    var(--surface-2);
}

.gold-gallery-section {
  padding-bottom: clamp(52px, 6vw, 78px);
}

.gold-price-section {
  padding-top: clamp(52px, 6vw, 78px);
  background:
    linear-gradient(180deg, rgba(198, 148, 50, 0.12), transparent 92px),
    var(--surface);
  border-top: 3px solid rgba(25, 23, 19, 0.88);
}

.section-dark {
  background:
    linear-gradient(90deg, rgba(194, 63, 45, 0.16), transparent 42%),
    #14282f;
  color: #fff;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.service-grid,
.audience-grid,
.cards-three,
.resource-grid,
.requirements-grid,
.note-grid,
.contact-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.material-section {
  background: #fbfaf6;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.material-card {
  overflow: hidden;
  background: #eef2ed;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 7px 7px 0 rgba(47, 124, 101, 0.24);
}

.material-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.material-card-body {
  min-height: 320px;
  padding: 34px 28px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.material-card-body h3 {
  font-size: clamp(1.45rem, 2.1vw, 2rem);
}

.material-card-body p {
  font-size: 1.02rem;
}

.material-card-body a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
}

.service-card,
.audience-grid article,
.cards-three article,
.requirements-grid article,
.note,
.contact-panel,
.article-grid article {
  position: relative;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 26px;
  box-shadow: 6px 6px 0 rgba(198, 148, 50, 0.26);
}

.service-card::before,
.audience-grid article::before,
.cards-three article::before,
.requirements-grid article::before,
.note::before,
.contact-panel::before,
.article-grid article::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  height: 8px;
  background: var(--blue);
}

.service-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
}

.service-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
}

.service-card-accent {
  background: #102b34;
  color: #fff;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 rgba(194, 63, 45, 0.32);
}

.service-card-accent::before {
  background: var(--gold);
}

.service-card-accent a {
  color: #f2c75a;
}

.service-number {
  color: var(--red);
  font-weight: 700;
  margin-bottom: 32px;
}

.service-card-accent .service-number {
  color: #f2c75a;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-center {
  align-items: center;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.production-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(620px, 1.35fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.production-layout h2 {
  font-size: clamp(2rem, 2.8vw, 2.85rem);
}

.production-gallery {
  gap: 18px;
}

.production-gallery .image-card img {
  aspect-ratio: 4 / 3;
}

.image-card {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(38, 29, 19, 0.14);
  cursor: zoom-in;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.image-card:hover,
.image-card:focus-visible {
  transform: translate(2px, 2px);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 rgba(38, 29, 19, 0.14);
  outline: none;
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 42px);
  background: rgba(8, 12, 15, 0.86);
}

.lightbox.is-open {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-frame {
  width: min(1180px, 100%);
  max-height: calc(100svh - 56px);
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.lightbox-image {
  width: 100%;
  max-height: calc(100svh - 132px);
  object-fit: contain;
  background: #111719;
}

.lightbox-caption {
  padding: 14px 18px;
  color: var(--ink);
  font-size: 1rem;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.check-list,
.ordered-list {
  margin: 20px 0;
  padding-left: 1.2rem;
}

.check-list li,
.ordered-list li {
  margin-bottom: 0.72rem;
}

.audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.cards-three {
  grid-template-columns: repeat(3, 1fr);
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.resource-grid a {
  position: relative;
  display: block;
  min-height: 230px;
  padding: 26px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(7, 94, 131, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.resource-grid a:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(7, 94, 131, 0.18);
}

.resource-grid span {
  display: block;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 26px;
}

.resource-grid a:hover h3 {
  color: var(--blue);
}

.steps {
  display: grid;
  gap: 12px;
}

.steps div,
.process-line article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.steps span,
.process-line span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: #1f292c;
  font-weight: 700;
}

.steps p {
  margin: 0;
}

.page-hero {
  padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 6vw, 80px);
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  max-width: 900px;
}

.page-hero .lead {
  color: var(--ink);
}

.page-hero-light {
  background:
    linear-gradient(135deg, rgba(168, 74, 61, 0.07), transparent 28%),
    linear-gradient(180deg, #fbfaf6, var(--bg));
}

.page-hero-visual {
  background:
    linear-gradient(135deg, rgba(21, 95, 120, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfaf6 0%, #edf3ef 100%);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.intro-copy {
  max-width: 780px;
}

.intro-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.intro-facts div {
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intro-facts strong {
  display: block;
  color: var(--red);
  font-size: 1.08rem;
  line-height: 1.15;
  margin-bottom: 6px;
}

.intro-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
}

.intro-photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 41, 44, 0.12);
}

.intro-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(31, 41, 44, 0.22));
  pointer-events: none;
}

.intro-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid-large .image-card img {
  aspect-ratio: 5 / 4;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid .image-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #e8e6e1;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-line article {
  display: block;
  background: var(--surface);
  border-color: var(--line);
}

.process-line span {
  margin-bottom: 16px;
}

.note-grid {
  grid-template-columns: repeat(2, 1fr);
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric-list div {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.metric-list strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.05;
  color: var(--red);
}

.metric-list span {
  color: var(--muted);
}

.quote-box {
  background: #1c3438;
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.quote-box a {
  color: #f2c75a;
  font-weight: 700;
}

.order-template-section {
  background:
    linear-gradient(90deg, rgba(194, 63, 45, 0.08), transparent 42%),
    #fffaf0;
  scroll-margin-top: 128px;
}

.order-template-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.order-template-section a:not(.button) {
  color: var(--red);
  font-weight: 800;
}

.order-template-mail {
  color: var(--muted);
}

.order-template {
  min-height: 360px;
  margin: 0;
  padding: 26px;
  color: var(--ink);
  background: #fff6e4;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 rgba(194, 63, 45, 0.24);
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.copy-status {
  min-height: 1.5rem;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}

.requirements-grid {
  grid-template-columns: repeat(2, 1fr);
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(198, 148, 50, 0.22);
}

.price-table-group {
  margin-top: 28px;
}

.price-table-group h3 {
  margin-bottom: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th, td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  white-space: nowrap;
}

th {
  background: var(--ink);
  color: #fff;
  font-size: 0.88rem;
  border-right-color: rgba(255, 250, 240, 0.18);
}

th:last-child,
td:last-child {
  border-right: 0;
}

tr:last-child td {
  border-bottom: 0;
}

.notes-list {
  margin: 22px 0 0;
  padding-left: 1.35rem;
  color: var(--muted);
}

.notes-list li {
  margin-bottom: 0.9rem;
  padding-left: 0.2rem;
}

.notes-list li::marker {
  color: var(--red);
  font-weight: 700;
}

.contact-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.big-link {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--red);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.article-grid {
  grid-template-columns: repeat(2, 1fr);
}

.article-grid article h2 {
  font-size: 1.35rem;
}

.cta-band {
  padding: 40px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-band-dark {
  background: #172b2f;
  color: #fff;
  border: 0;
}

.cta-row {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.cta-row p {
  max-width: 720px;
}

.site-footer {
  padding: 56px clamp(20px, 4vw, 52px) 24px;
  background: #102126;
  color: #d9dfde;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: #f2c75a;
}

.footer-bottom {
  max-width: var(--container);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 1260px) {
  .header-main {
    display: flex;
    min-height: 74px;
    align-items: center;
  }

  .header-quote {
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 104px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--surface);
    border: 2px solid var(--ink);
    border-radius: 0;
    box-shadow: 6px 6px 0 rgba(38, 29, 19, 0.18);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-child {
    border-bottom: 1px solid transparent;
  }

  .nav-toggle {
    display: block;
    margin-left: 10px;
  }
}

@media (max-width: 1100px) {
  .service-grid,
  .material-grid,
  .audience-grid,
  .resource-grid,
  .process-line,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .production-layout {
    grid-template-columns: 1fr;
  }

  .production-gallery {
    max-width: 960px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-top {
    display: none;
  }

  .header-main {
    min-height: 66px;
    padding: 0 14px;
  }

  .brand {
    min-height: 66px;
    padding: 5px 0;
  }

  .brand img {
    width: 128px;
  }

  .brand span {
    display: none;
  }

  .header-quote {
    min-height: 42px;
    padding: 0 14px;
  }

  .site-nav {
    top: 66px;
  }

  .hero,
  .gold-hero {
    min-height: 560px;
    height: 82svh;
  }

  .hero::before {
    background-position: 67% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 22, 24, 0.86) 0%, rgba(7, 22, 24, 0.74) 52%, rgba(7, 22, 24, 0.52) 100%),
      linear-gradient(90deg, rgba(7, 22, 24, 0.88), rgba(21, 95, 120, 0.28));
  }

  .gold-overlay {
    background:
      linear-gradient(180deg, rgba(4, 17, 19, 0.88) 0%, rgba(4, 17, 19, 0.72) 56%, rgba(4, 17, 19, 0.46) 100%),
      linear-gradient(115deg, rgba(4, 17, 19, 0.92) 0%, rgba(18, 50, 56, 0.44) 62%, rgba(181, 130, 48, 0.24) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding: 36px 0 34px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-photo {
    max-width: 620px;
  }

  .material-card-body {
    min-height: auto;
    padding: 28px 22px;
  }

  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .material-grid,
  .audience-grid,
  .cards-three,
  .resource-grid,
  .requirements-grid,
  .note-grid,
  .process-line,
  .gallery-grid,
  .portfolio-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-pair,
  .intro-facts,
  .metric-list {
    grid-template-columns: 1fr;
  }

  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .order-template-actions {
    flex-direction: column;
  }

  .site-footer a {
    min-height: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 1.92rem; }
  h2 { font-size: 1.7rem; }

  p,
  li,
  .lead {
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    font-size: 1.92rem;
    overflow-wrap: anywhere;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    overflow-wrap: anywhere;
  }

  .header-quote {
    display: none;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero .lead,
  .gold-hero .lead {
    font-size: 1rem;
    line-height: 1.45;
  }

  .service-card,
  .audience-grid article,
  .cards-three article,
  .requirements-grid article,
  .note,
  .contact-panel,
  .article-grid article {
    padding: 20px;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tr {
    display: block;
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-right: 0;
    border-bottom: 0;
    padding: 8px 0;
    white-space: normal;
  }

  td::before {
    content: attr(data-label);
    color: var(--muted);
    font-weight: 700;
  }
}
