:root {
  --ink: #071f17;
  --ink-2: #0b2c20;
  --panel: rgba(255, 252, 239, 0.08);
  --panel-strong: rgba(255, 252, 239, 0.14);
  --paper: #fff8e7;
  --muted: #d8d0bd;
  --gold: #efc35b;
  --red: #d84b3e;
  --sky: #8fd0c9;
  --line: rgba(239, 195, 91, 0.32);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(216, 75, 62, 0.12), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(143, 208, 201, 0.16), transparent 32%),
    linear-gradient(180deg, #062118 0%, #092a1f 52%, #0c2419 100%);
}

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(5, 23, 17, 0.86);
  border-bottom: 1px solid rgba(255, 248, 231, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 0;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span:first-child {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.brand span:last-child { font-size: 1.02rem; }

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover { color: var(--paper); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #11150f;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 4vw, 64px) 50px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
  filter: saturate(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 16, 12, 0.92), rgba(3, 16, 12, 0.72) 43%, rgba(3, 16, 12, 0.2)),
    linear-gradient(0deg, rgba(7, 31, 23, 1), transparent 36%);
}

.hero-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-top: 14px;
  font-size: clamp(3rem, 6.4vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.9rem);
}

h3 { font-size: clamp(1.1rem, 1.4vw, 1.34rem); }

.lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #efe7d3;
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.proof {
  display: grid;
  gap: 12px;
}

.proof-card, .card, .program-card, .quote, .mini-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-card {
  padding: 18px;
}

.proof-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(66px, 9vw, 116px) clamp(18px, 4vw, 64px);
}

.section.alt {
  background: rgba(255, 248, 231, 0.045);
}

.wrap {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-head p, .card p, .program-card p, .mini-card p, .quote p {
  color: var(--muted);
}

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

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

.card, .program-card, .mini-card {
  padding: 24px;
}

.card img, .program-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 6px;
  margin: -10px 0 20px;
}

.card a, .program-card a {
  color: var(--gold);
  font-weight: 800;
  text-decoration: none;
}

.program-link {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.program-link:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 195, 91, 0.55);
}

.program-link .eyebrow {
  margin-top: 16px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--gold);
  font-weight: 900;
}

.theme-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 6px 0 12px;
  scroll-snap-type: x proximity;
}

.theme-chip {
  flex: 0 0 220px;
  scroll-snap-align: start;
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.26);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.07);
}

.theme-chip strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.theme-chip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.catalog-filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(239, 195, 91, 0.32);
  border-radius: 999px;
  background: rgba(255, 248, 231, 0.055);
  color: var(--muted);
  font-weight: 850;
}

.catalog-filter:hover,
.catalog-filter.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #11150f;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.catalog-tile {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.26);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.05));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.catalog-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 195, 91, 0.62);
}

.catalog-tile img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: rgba(255, 248, 231, 0.08);
}

.catalog-tile-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.catalog-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255, 248, 231, 0.2);
  border-radius: 999px;
  color: rgba(255, 248, 231, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
}

.catalog-tile h3 {
  margin-top: 4px;
}

.catalog-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.catalog-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: stretch;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(239, 195, 91, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(255, 248, 231, 0.04)),
    rgba(5, 23, 17, 0.78);
  box-shadow: var(--shadow);
}

.catalog-detail img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 6px;
}

.catalog-detail-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.catalog-detail-copy h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.catalog-detail-copy p {
  margin: 0;
  color: var(--muted);
}

.catalog-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.catalog-points li {
  padding: 12px;
  border: 1px solid rgba(239, 195, 91, 0.22);
  border-radius: 6px;
  background: rgba(255, 248, 231, 0.055);
  color: rgba(255, 248, 231, 0.82);
  font-weight: 700;
}

.catalog-source-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.055);
  color: var(--muted);
}

.people-service {
  position: relative;
  overflow: hidden;
  background: #071910;
}

.people-service::before,
.people-service::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.people-service::before {
  background: var(--people-image) center / cover no-repeat;
  opacity: 0.32;
  filter: saturate(0.88) contrast(1.08);
}

.people-service::after {
  background:
    linear-gradient(90deg, rgba(2, 24, 14, 0.94), rgba(2, 24, 14, 0.72) 54%, rgba(2, 24, 14, 0.94)),
    radial-gradient(circle at 18% 20%, rgba(239, 195, 91, 0.16), transparent 34%);
}

.people-service .wrap {
  position: relative;
  z-index: 1;
}

.people-service .section-head {
  max-width: 820px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.people-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(239, 195, 91, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(13, 60, 42, 0.48));
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
}

.people-card strong {
  display: block;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.people-card p,
.people-note {
  color: rgba(255, 248, 231, 0.78);
}

.people-note {
  max-width: 820px;
  margin: 20px 0 0;
}

.catalog-source-note strong {
  color: var(--gold);
}

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

.section-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.case-card {
  position: relative;
  min-height: 360px;
  grid-column: span 6;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: #061711;
  box-shadow: var(--shadow);
}

.case-card.featured {
  grid-column: span 8;
  min-height: 430px;
}

.case-card.compact {
  grid-column: span 4;
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--case-image) center / cover no-repeat;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 23, 17, 0.1), rgba(5, 23, 17, 0.86) 74%),
    linear-gradient(90deg, rgba(5, 23, 17, 0.54), transparent 58%);
}

.case-card:hover::before {
  transform: scale(1.07);
}

.case-card:hover {
  border-color: rgba(239, 195, 91, 0.58);
}

.case-copy {
  position: relative;
  z-index: 2;
  width: min(540px, 100%);
}

.case-card .eyebrow {
  margin: 0 0 10px;
}

.case-card h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.case-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.case-card .card-cta {
  margin-top: 16px;
}

.case-anchor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.case-anchor-grid a {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 850;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.055));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.case-anchor-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 195, 91, 0.62);
}

.case-study-detail {
  padding: clamp(72px, 9vw, 118px) clamp(18px, 4vw, 64px);
  scroll-margin-top: 96px;
}

.case-study-detail.alt {
  background: rgba(255, 248, 231, 0.045);
}

.case-study-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.case-study-layout figure {
  min-height: 440px;
  margin: 0;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 23, 17, 0.08), rgba(5, 23, 17, 0.24)),
    var(--case-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.case-study-layout article {
  max-width: 760px;
}

.case-study-layout h2 {
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.case-study-layout h3 {
  margin: 28px 0 10px;
  color: var(--gold);
}

.case-study-layout p {
  color: var(--muted);
  font-size: 1.04rem;
}

.case-study-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.case-study-facts span {
  padding: 8px 11px;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 999px;
  background: rgba(255, 248, 231, 0.06);
}

.case-story-section {
  padding-top: clamp(54px, 7vw, 88px);
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-story-panel {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(143, 208, 201, 0.045));
  box-shadow: var(--shadow);
}

.case-story-panel h3 {
  margin-bottom: 12px;
  color: var(--gold);
}

.case-story-panel p {
  margin: 0;
  color: var(--muted);
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.case-gallery figure {
  min-height: 250px;
  margin: 0;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 23, 17, 0.02), rgba(5, 23, 17, 0.18)),
    var(--case-image) center / cover no-repeat;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.case-gallery figure:first-child {
  grid-column: span 2;
  min-height: 350px;
}

.mosaic {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 16px;
  align-items: stretch;
}

.mosaic img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.mosaic-stack {
  display: grid;
  gap: 16px;
}

.photo-gallery-section .section-head {
  max-width: 780px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-gallery-grid figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.04);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.photo-gallery-grid figure:nth-child(1),
.photo-gallery-grid figure:nth-child(8) {
  grid-column: span 2;
}

.photo-gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.4s ease;
}

.photo-gallery-grid figure:hover img {
  transform: scale(1.06);
}

.photo-gallery-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 44px 16px 14px;
  color: var(--paper);
  font-weight: 850;
  background: linear-gradient(180deg, rgba(5, 23, 17, 0), rgba(5, 23, 17, 0.86));
}

.case-source-action {
  display: flex;
  margin-top: 26px;
}

.case-source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 14px 20px;
  border: 1px solid rgba(239, 195, 91, 0.65);
  border-radius: 999px;
  background: var(--gold);
  color: #11150f;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(239, 195, 91, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.case-source-link:hover {
  transform: translateY(-2px);
  background: #ffe08a;
  box-shadow: 0 20px 42px rgba(239, 195, 91, 0.3);
}

.quote {
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.13), rgba(143, 208, 201, 0.09));
}

.quote p {
  margin: 0;
  max-width: 920px;
  font-size: clamp(1.4rem, 2.7vw, 2.6rem);
  line-height: 1.18;
  color: var(--paper);
  font-weight: 850;
}

.authority {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.authority .section-head {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
}

.authority-grid {
  display: grid;
  gap: 14px;
}

.authority-grid article {
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(255, 248, 231, 0.04));
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
}

.authority-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.references {
  overflow: hidden;
}

.logo-carousel {
  position: relative;
  margin: 26px 0 34px;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(239, 195, 91, 0.18);
  border-bottom: 1px solid rgba(239, 195, 91, 0.18);
  background: linear-gradient(90deg, rgba(255, 248, 231, 0.02), rgba(255, 248, 231, 0.07), rgba(255, 248, 231, 0.02));
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 54px;
  height: 100%;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(14, 42, 31, 1), rgba(14, 42, 31, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(14, 42, 31, 1), rgba(14, 42, 31, 0));
}

.logo-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 4px 0;
  animation: logoMarquee 36s linear infinite;
}

.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-pill {
  flex: 0 0 172px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 248, 231, 0.18);
  border-radius: 6px;
  overflow: hidden;
}

.logo-pill img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.02);
}

.logo-arrow {
  display: none;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reference-grid article {
  padding: 22px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.055));
}

.reference-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.reference-grid p {
  margin: 0;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.breadcrumbs {
  width: min(1180px, calc(100% - clamp(36px, 8vw, 128px)));
  margin: 18px auto -12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 248, 231, 0.64);
  font-size: 0.86rem;
}

.breadcrumbs a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 800;
}

.breadcrumbs a:hover {
  color: var(--paper);
}

.breadcrumbs span[aria-hidden="true"] {
  color: rgba(255, 248, 231, 0.34);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.decision-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(143, 208, 201, 0.055));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.decision-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 195, 91, 0.62);
}

.decision-card span {
  color: var(--gold);
  font-weight: 900;
}

.decision-card p {
  margin: 0;
  color: var(--muted);
}

.decision-card strong {
  color: var(--gold);
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.local-grid article {
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.055);
}

.local-grid strong {
  display: block;
  color: var(--gold);
  margin-bottom: 8px;
}

.local-grid span {
  color: var(--muted);
}

.local-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.local-proof a {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(239, 195, 91, 0.26);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 231, 0.08), rgba(143, 208, 201, 0.055));
}

.local-proof strong {
  color: var(--gold);
}

.local-proof span {
  color: var(--muted);
}

.case-related {
  padding-top: clamp(42px, 6vw, 72px);
}

.split-info {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.split-info p {
  color: var(--muted);
}

.info-list,
.cost-factors {
  display: grid;
  gap: 12px;
}

.info-list article,
.cost-factors div {
  padding: 18px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.06);
}

.info-list strong,
.cost-factors strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-list span,
.cost-factors span {
  color: var(--muted);
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.budget-card {
  padding: 24px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 231, 0.07);
  box-shadow: var(--shadow);
}

.budget-card.featured {
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.18), rgba(143, 208, 201, 0.08));
  border-color: rgba(239, 195, 91, 0.52);
}

.budget-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.budget-card strong {
  display: block;
  margin: 14px 0;
  color: var(--gold);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.budget-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.tag {
  border: 1px solid rgba(255, 248, 231, 0.24);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}

.step strong {
  color: var(--gold);
}

.calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.45fr);
  gap: 18px;
  align-items: start;
}

.calc-panel {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  color: var(--muted);
  font-weight: 700;
}

input[type="range"], select {
  width: 100%;
}

select, input {
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(255, 248, 231, 0.22);
  background: rgba(0, 0, 0, 0.24);
  color: var(--paper);
  padding: 0 12px;
}

textarea {
  width: 100%;
  min-height: 132px;
  border-radius: 6px;
  border: 1px solid rgba(255, 248, 231, 0.22);
  background: rgba(0, 0, 0, 0.24);
  color: var(--paper);
  padding: 12px;
  resize: vertical;
  font: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

select option {
  color: #11150f;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(239, 195, 91, 0.68);
  box-shadow: 0 0 0 3px rgba(239, 195, 91, 0.1);
}

.inquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(26px, 5vw, 68px);
  align-items: start;
}

.inquiry .section-head {
  position: sticky;
  top: 96px;
  margin-bottom: 0;
}

.inquiry-note {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 195, 91, 0.13), rgba(143, 208, 201, 0.07));
}

.inquiry-note strong {
  color: var(--gold);
}

.inquiry-note span {
  color: var(--muted);
}

.inquiry-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(239, 195, 91, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 231, 0.1), rgba(255, 248, 231, 0.045)),
    rgba(5, 23, 17, 0.82);
  box-shadow: var(--shadow);
}

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

.inquiry-form label {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select {
  width: 100%;
  margin-top: 8px;
  font: inherit;
}

.inquiry-form textarea {
  margin-top: 8px;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 248, 231, 0.46);
}

.consent {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-size: 0.92rem !important;
}

.consent input {
  width: auto;
  min-height: auto;
  margin: 4px 0 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.price {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  color: var(--gold);
  font-weight: 900;
}

.faq details {
  border-bottom: 1px solid rgba(255, 248, 231, 0.12);
  padding: 18px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  padding: 38px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 248, 231, 0.12);
  color: var(--muted);
  background: #061711;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px 42px;
  align-items: start;
  padding: 38px clamp(18px, 4vw, 64px);
  border-top: 1px solid rgba(255, 248, 231, 0.12);
  color: var(--muted);
  background: #061711;
}

.footer a { color: var(--paper); }

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
}

.footer-grid a { color: var(--paper); }

.footer-contact {
  text-align: right;
}

.footer-projects {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 231, 0.1);
  font-size: 0.92rem;
}

.footer-projects span {
  color: rgba(255, 248, 231, 0.58);
}

.footer-projects a {
  color: var(--paper);
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid rgba(239, 195, 91, 0.24);
  border-radius: 999px;
  background: rgba(239, 195, 91, 0.06);
}

.footer-projects a:hover {
  color: var(--gold);
  border-color: rgba(239, 195, 91, 0.7);
  background: rgba(239, 195, 91, 0.12);
}

.footer > .footer-projects { grid-column: 1 / -1; }

.form-feedback {
  grid-column: 1 / -1;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.form-feedback.is-success { color: #dff7e8; background: rgba(54, 150, 92, 0.2); border: 1px solid rgba(111, 211, 148, 0.5); }
.form-feedback.is-error { color: #ffe3dd; background: rgba(184, 66, 50, 0.2); border: 1px solid rgba(232, 112, 92, 0.5); }

.company-line {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 231, 0.7);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: 16px;
  color: var(--paper);
  background: rgba(5, 23, 17, 0.96);
  border: 1px solid rgba(239, 195, 91, 0.4);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.page-hero {
  --hero-image: url("/assets/img/hero-lights.jpg");
  min-height: 58vh;
}

.venue-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.36fr);
}

.venue-note {
  align-self: end;
}

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

.venue-filter-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(135deg, rgba(239, 195, 91, 0.13), rgba(143, 208, 201, 0.07)),
    rgba(255, 248, 231, 0.055);
  border: 1px solid rgba(239, 195, 91, 0.3);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.venue-filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 6px;
  background: #092a1f;
  color: var(--paper);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 750;
  text-transform: none;
  letter-spacing: 0;
}

.venue-check {
  min-height: 46px;
  grid-auto-flow: column;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(239, 195, 91, 0.28);
  border-radius: 6px;
  background: rgba(9, 42, 31, 0.74);
}

.venue-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.venue-check span {
  color: var(--paper);
  font-size: 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.venue-filter-result {
  margin: 16px 0 0;
  color: var(--gold);
  font-weight: 850;
}

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

.venue-card {
  position: relative;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 248, 231, 0.11), rgba(255, 248, 231, 0.045)),
    rgba(255, 248, 231, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.venue-card p {
  color: var(--muted);
}

.venue-number {
  color: rgba(239, 195, 91, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.venue-card h3 {
  margin-top: 8px;
  color: var(--paper);
  font-size: clamp(1.42rem, 2vw, 2rem);
}

.venue-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.venue-fields div {
  padding: 12px;
  background: rgba(7, 31, 23, 0.58);
  border: 1px solid rgba(239, 195, 91, 0.18);
  border-radius: 8px;
}

.venue-fields dt {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.venue-fields dd {
  margin: 4px 0 0;
  color: #efe7d3;
  font-size: 0.94rem;
}

.venue-verdict {
  padding: 14px;
  background: rgba(239, 195, 91, 0.12);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  color: #f6ecd7;
}

.venue-watch {
  margin-bottom: 0;
}

.venue-card[hidden] {
  display: none;
}

.venue-source-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 195, 91, 0.38);
}

.venue-source-link:hover {
  color: var(--paper);
  border-bottom-color: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

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

.photo-card {
  margin: 0;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-card.featured {
  grid-column: span 2;
}

.photo-card a {
  display: block;
  color: var(--paper);
  text-decoration: none;
}

.photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-card.featured img {
  aspect-ratio: 2 / 1;
}

.photo-card a:hover img {
  transform: scale(1.025);
}

.photo-card figcaption {
  padding: 14px 16px 16px;
  color: #efe7d3;
  font-size: 0.94rem;
  line-height: 1.45;
}

.photo-card[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .photo-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .photo-gallery-grid { grid-template-columns: 1fr; }
  .photo-card.featured { grid-column: auto; }
  .photo-card.featured img { aspect-ratio: 4 / 3; }
}

.source-note {
  margin: 28px 0 0;
  color: rgba(255, 248, 231, 0.68);
  font-size: 0.95rem;
}

.match-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.match-list div {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.match-list strong {
  color: var(--gold);
}

.match-list span {
  color: var(--paper);
}

.cta-panel {
  max-width: 820px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(239, 195, 91, 0.18), rgba(216, 75, 62, 0.08)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.quick-links {
  position: fixed;
  right: clamp(12px, 2vw, 28px);
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(239, 195, 91, 0.45);
  border-radius: 999px;
  background: rgba(5, 23, 17, 0.86);
  color: var(--cream);
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.quick-links a:first-child {
  background: var(--gold);
  border-color: var(--gold);
  color: #11150f;
}

.quick-links a:hover {
  transform: translateX(-4px);
  border-color: var(--gold);
}

@media (max-width: 880px) {
  .site-header { align-items: flex-start; }
  .nav { display: none; }
  .hero-grid, .venue-hero .hero-grid, .grid, .grid.two, .grid.four, .venue-intro .grid.four, .venue-filter-panel, .mosaic, .photo-gallery-grid, .steps, .calculator, .footer, .footer-grid, .authority, .reference-grid, .case-grid, .case-anchor-grid, .case-study-layout, .case-story-grid, .case-gallery, .inquiry-layout, .form-grid, .catalog-grid, .catalog-detail, .catalog-points, .venue-grid, .venue-fields, .match-list, .decision-grid, .local-grid, .split-info, .budget-grid, .people-grid {
    grid-template-columns: 1fr;
  }
  .photo-gallery-grid figure:nth-child(1),
  .photo-gallery-grid figure:nth-child(8) {
    grid-column: auto;
  }
  .case-card, .case-card.featured, .case-card.compact {
    grid-column: auto;
    min-height: 330px;
  }
  .case-study-layout figure {
    min-height: 300px;
  }
  .case-gallery figure:first-child {
    grid-column: auto;
    min-height: 280px;
  }
  .case-gallery figure {
    min-height: 240px;
  }
  .footer-contact { text-align: left; }
  .footer-projects { display: grid; }
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions {
    flex-wrap: wrap;
  }
  .authority .section-head, .inquiry .section-head { position: static; }
  .logo-track {
    padding-left: 0;
    padding-right: 0;
  }
  .logo-arrow {
    display: none;
  }
  .logo-pill {
    flex-basis: 148px;
  }
  .quick-links {
    top: auto;
    right: 12px;
    bottom: 86px;
    transform: none;
  }
  .quick-links a {
    min-width: 44px;
    width: 44px;
    min-height: 44px;
    padding: 0;
  }
  .quick-links a span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .quick-links a::before {
    content: "↑";
    font-size: 1.2rem;
  }
  .quick-links a:last-child::before {
    content: "P";
    font-size: 0.95rem;
  }
  h1 { font-size: clamp(2.7rem, 15vw, 4.8rem); }
  .hero { min-height: 72vh; }
}
