:root {
  color-scheme: light;
  --ink: #101412;
  --ink-soft: #202923;
  --steel: #65726d;
  --muted: #e9eee8;
  --surface: #f4f7f3;
  --paper: #ffffff;
  --line: #dbe4dd;
  --gold: #ffc400;
  --gold-deep: #b97916;
  --pine: #164d45;
  --copper: #ad6b35;
  --sky: #d8e8ea;
  --shadow: 0 26px 80px rgba(13, 18, 15, 0.18);
  --shadow-soft: 0 16px 42px rgba(13, 18, 15, 0.1);
  --radius: 8px;
  --container: 1180px;
  --gutter: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
  background: transparent;
  transition: transform 180ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-6px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: rgba(12, 16, 14, 0.74);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 214px;
  color: #fff;
}

.brand-image {
  min-width: 180px;
}

.brand-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(245, 191, 0, 0.42);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(245, 191, 0, 0.18), rgba(255, 255, 255, 0.06));
  color: var(--gold);
}

.brand-mark svg {
  width: 31px;
  height: 31px;
  stroke-width: 2.4;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.nav-menu > a:not(.nav-phone) {
  position: relative;
  padding: 18px 0;
}

.nav-menu > a:not(.nav-phone)::after {
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 191, 0, 0.45);
  border-radius: var(--radius);
  padding: 10px 13px;
  color: #fff;
  background: rgba(245, 191, 0, 0.1);
  white-space: nowrap;
}

.nav-phone svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 158px 0 104px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.hero-video {
  z-index: 1;
}

.hero-fallback {
  z-index: 0;
}

.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.85), transparent 72%);
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 196, 0, 0.18), transparent 25%),
    linear-gradient(90deg, rgba(7, 10, 9, 0.96) 0%, rgba(7, 10, 9, 0.82) 38%, rgba(7, 10, 9, 0.2) 72%, rgba(7, 10, 9, 0.5) 100%),
    linear-gradient(0deg, rgba(7, 10, 9, 0.88) 0%, rgba(7, 10, 9, 0.05) 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  align-items: center;
  min-height: 558px;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 4.65rem;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  font-weight: 920;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.hero-badges strong {
  color: #fff;
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn svg {
  width: 19px;
  height: 19px;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(245, 191, 0, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #ffd234;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(245, 191, 0, 0.65);
  background: rgba(245, 191, 0, 0.12);
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(10, 14, 12, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 22px;
}

.hero-panel div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel span {
  display: block;
  margin-bottom: 11px;
  color: var(--gold);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.02rem;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.93rem;
}

.service-detail-section {
  background: #fff;
}

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

.service-detail-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.service-detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-card > div {
  padding: 26px;
}

.service-detail-card span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 950;
}

.service-detail-card p {
  margin-bottom: 0;
  color: var(--steel);
}

.service-detail-featured {
  background: var(--ink);
  color: #fff;
}

.service-detail-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-section {
  background: #fff;
}

.gallery-wow-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 196, 0, 0.12), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(22, 77, 69, 0.11), transparent 30%),
    #f8faf6;
}

.gallery-wow-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 30px;
}

.gallery-wow-copy p {
  color: var(--steel);
  font-size: 1.04rem;
}

.gallery-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.gallery-stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.72);
}

.gallery-stats strong {
  color: var(--ink);
}

.gallery-filter-bar {
  position: sticky;
  top: 96px;
  z-index: 8;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 20, 18, 0.1);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 10px 13px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 900;
}

.gallery-filter span {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 24px;
  border-radius: 999px;
  color: var(--steel);
  background: var(--surface);
  font-size: 0.78rem;
}

.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
  border-color: rgba(255, 196, 0, 0.45);
  background: var(--ink);
  color: #fff;
}

.gallery-filter.is-active span {
  color: var(--ink);
  background: var(--gold);
}

.wow-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 92px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-card {
  grid-column: span 3;
  grid-row: span 3;
  min-height: 0;
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-card-feature {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-card-wide {
  grid-column: span 6;
}

.gallery-card-tall {
  grid-row: span 5;
}

.gallery-card-logo {
  grid-row: span 2;
}

.gallery-open {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 0;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.gallery-open img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-card-logo .gallery-open {
  background: #fff;
}

.gallery-card-logo img {
  object-fit: contain;
  padding: 28px;
}

.gallery-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 20, 18, 0) 35%, rgba(16, 20, 18, 0.86)),
    linear-gradient(135deg, rgba(255, 196, 0, 0.22), transparent 42%);
  opacity: 0.82;
  transition: opacity 220ms ease;
}

.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  gap: 4px;
  color: #fff;
  text-align: left;
}

.gallery-caption span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-caption strong {
  font-size: 1rem;
  line-height: 1.12;
}

.gallery-open:hover img,
.gallery-open:focus-visible img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.07);
}

.gallery-open:hover .gallery-shade,
.gallery-open:focus-visible .gallery-shade {
  opacity: 0.96;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(4, 7, 6, 0.9);
  backdrop-filter: blur(18px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox figure {
  width: min(1180px, calc(100vw - 140px));
  max-height: calc(100vh - 90px);
  display: grid;
  gap: 14px;
  margin: 0;
}

.gallery-lightbox img {
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox figcaption {
  color: #fff;
  font-weight: 900;
  text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 2rem;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.gallery-lightbox-close {
  top: 24px;
  right: 24px;
}

.gallery-lightbox-prev {
  top: 50%;
  left: 24px;
}

.gallery-lightbox-next {
  top: 50%;
  right: 24px;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover,
.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  color: var(--ink);
  background: var(--gold);
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: end;
  margin-bottom: 38px;
}

.gallery-intro p {
  color: var(--steel);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: #fff;
  background: rgba(18, 20, 22, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.contact-page-section {
  background: #fff;
  color: var(--ink);
}

.contact-page-section .contact-copy p {
  color: var(--steel);
}

.contact-page-section .contact-list a,
.contact-page-section .contact-list div {
  border-color: var(--line);
  background: var(--surface);
}

.contact-page-section .contact-list strong {
  color: var(--ink);
}

.contact-page-section .contact-list span {
  color: var(--steel);
}

.subpage-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px 0 72px;
  color: #fff;
  background: var(--ink);
}

.subpage-hero-media,
.subpage-hero-overlay {
  position: absolute;
  inset: 0;
}

.subpage-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
}

.subpage-hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 20, 22, 0.92), rgba(18, 20, 22, 0.72) 48%, rgba(18, 20, 22, 0.46)),
    linear-gradient(0deg, rgba(18, 20, 22, 0.9), rgba(18, 20, 22, 0.14));
}

.subpage-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}

.subpage-hero h1 {
  margin-bottom: 18px;
  font-size: 4.2rem;
}

.subpage-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold);
}

.about-lead-section {
  background: #fff;
}

.about-lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 78px;
  align-items: start;
}

.quote-card {
  max-width: 680px;
}

.quote-card svg {
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  color: var(--gold);
  fill: currentColor;
  stroke: none;
}

.quote-card h2 span {
  color: var(--gold-deep);
}

.quote-card p {
  max-width: 560px;
  color: var(--gold-deep);
  font-size: 1.06rem;
  font-weight: 850;
}

.team-card {
  display: grid;
  gap: 16px;
}

.team-card article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

.team-card h3 {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.team-card p {
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-weight: 850;
}

.team-card a {
  display: block;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 750;
}

.team-card a:hover,
.team-card a:focus-visible {
  color: var(--gold-deep);
}

.element-section {
  background: var(--surface);
}

.element-grid {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 68px;
  align-items: center;
}

.element-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 150px 140px;
  gap: 8px;
  min-height: 494px;
}

.element-mosaic div {
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.02), rgba(18, 20, 22, 0.38)),
    linear-gradient(135deg, #d7d4c6, #8f775d 45%, #22292d);
  box-shadow: var(--shadow-soft);
}

.element-mosaic div:nth-child(1) {
  grid-row: span 2;
}

.element-mosaic div:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.02), rgba(18, 20, 22, 0.32)),
    linear-gradient(135deg, #b9d5e4, #577276 50%, #111315);
}

.element-mosaic div:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.02), rgba(18, 20, 22, 0.38)),
    linear-gradient(135deg, #e0d5bf, #b36d34 50%, #202528);
}

.element-mosaic div:nth-child(4) {
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.02), rgba(18, 20, 22, 0.34)),
    linear-gradient(135deg, #e8e6dd, #9b6a3c 42%, #24575b);
}

.element-copy {
  max-width: 720px;
}

.element-copy .lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  font-weight: 760;
}

.element-copy p {
  color: var(--steel);
}

.element-copy h3 {
  margin-top: 30px;
  font-size: 1.55rem;
}

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

.stats-grid div {
  border-top: 3px solid var(--gold);
  padding-top: 18px;
}

.stats-grid dt {
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
}

.stats-grid dd {
  margin: 8px 0 0;
  color: var(--steel);
  font-size: 0.94rem;
  font-weight: 800;
}

.approvals-section {
  background: #fff;
}

.approvals-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.approvals-layout p {
  color: var(--steel);
}

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

.approval-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.approval-card.dark {
  border-color: #050607;
  background: #050607;
  color: #fff;
}

.approval-card img {
  width: 100%;
  max-width: 190px;
  height: 86px;
  object-fit: contain;
  object-position: left center;
}

.approval-card span {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.approval-card strong {
  display: block;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1.05;
  font-weight: 950;
}

.approval-card small {
  color: var(--steel);
  font-weight: 760;
}

.approval-card.dark small {
  color: rgba(255, 255, 255, 0.68);
}

.about-cta {
  padding: 64px 0;
  background: var(--ink);
  color: #fff;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-cta h2 {
  margin-bottom: 10px;
}

.about-cta p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.proof-band {
  position: relative;
  z-index: 4;
  margin-top: -48px;
  background: transparent;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 118px;
  padding: 28px;
  background: var(--paper);
}

.proof-item svg {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  color: var(--gold-deep);
  stroke-width: 1.8;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.proof-item span {
  margin-top: 3px;
  color: var(--steel);
  font-size: 0.92rem;
}

.intro-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 243, 0.96)),
    var(--surface);
}

.intro-section .split {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), transparent 32%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.intro-section .content-stack {
  border-left: 3px solid var(--gold);
  padding-left: 30px;
}

.section {
  padding: 108px 0;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.content-stack p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.content-stack p:last-child,
.section-heading p:last-child,
.project-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

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

.section-heading p {
  color: var(--steel);
  font-size: 1.04rem;
}

.services-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(22, 77, 69, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 48%, #eef4ef 48%, #eef4ef 100%);
}

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

.service-card {
  position: relative;
  min-height: 272px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--pine));
  content: "";
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 191, 0, 0.42);
  box-shadow: var(--shadow);
}

.service-card-featured {
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.1), transparent 38%),
    var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: rgba(245, 191, 0, 0.16);
  color: var(--gold-deep);
}

.service-card-featured .card-icon {
  background: var(--gold);
  color: var(--ink);
}

.service-card p {
  margin-bottom: 0;
  color: var(--steel);
}

.process-section {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 196, 0, 0.14), transparent 26%),
    radial-gradient(circle at 20% 82%, rgba(22, 77, 69, 0.4), transparent 30%),
    #0a0f0d;
  color: #fff;
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.process-step {
  min-height: 264px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(18px);
}

.process-step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.projects-section {
  background:
    linear-gradient(135deg, rgba(216, 232, 234, 0.7), transparent 36%),
    var(--surface);
}

.projects-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: center;
}

.project-copy p {
  color: var(--steel);
  font-size: 1.04rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--pine);
  font-weight: 900;
}

.text-link svg {
  width: 19px;
  height: 19px;
}

.project-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 208px;
  gap: 18px;
}

.project-showcase article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.08), rgba(18, 20, 22, 0.9)),
    url("assets/project-choice.jpg") center / cover;
  box-shadow: var(--shadow-soft);
}

.project-showcase article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.08), rgba(18, 20, 22, 0.88)),
    url("assets/project-rawbygg.jpg") center / cover;
}

.project-showcase article:nth-child(3) {
  grid-column: 1 / -1;
  background:
    linear-gradient(180deg, rgba(18, 20, 22, 0.04), rgba(18, 20, 22, 0.88)),
    url("assets/project-partner.jpg") center / cover;
}

.project-showcase span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.project-showcase strong {
  max-width: 360px;
  margin-top: 7px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 20, 22, 0.98), rgba(30, 38, 42, 0.96)),
    var(--ink);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-list a,
.contact-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.contact-list svg {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  color: #fff;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.form-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 4px;
}

.form-heading span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.form-heading strong {
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.18;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
}

.field-label {
  color: inherit;
  line-height: 1.2;
}

.required-note,
.optional-note {
  margin-left: 6px;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

.optional-note {
  color: rgba(255, 255, 255, 0.5);
}

.field-help {
  margin-top: -3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: #fff;
  background: rgba(18, 20, 22, 0.8);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select {
  color: #fff;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 191, 0, 0.78);
  box-shadow: 0 0 0 4px rgba(245, 191, 0, 0.14);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.contact-form-light {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  border-color: rgba(16, 20, 18, 0.1);
  background:
    linear-gradient(135deg, rgba(255, 196, 0, 0.08), transparent 34%),
    #fff;
}

.contact-form-light .form-heading,
.contact-form-light .form-full {
  grid-column: 1 / -1;
}

.contact-form-light .form-heading {
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.contact-form-light .form-heading strong {
  color: var(--ink);
}

.contact-form-light label {
  color: var(--ink);
}

.contact-form-light .required-note {
  color: var(--gold-deep);
}

.contact-form-light .optional-note {
  color: var(--steel);
}

.contact-form-light .field-help {
  color: var(--steel);
}

.contact-form-light input,
.contact-form-light select,
.contact-form-light textarea {
  border-color: #cfd8d0;
  color: var(--ink);
  background: #f7faf6;
}

.contact-form-light input:hover,
.contact-form-light select:hover,
.contact-form-light textarea:hover {
  border-color: #aebcaf;
}

.contact-form-light input:focus,
.contact-form-light select:focus,
.contact-form-light textarea:focus {
  border-color: var(--gold-deep);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 196, 0, 0.18);
}

.contact-form-light ::placeholder {
  color: #7a8580;
}

.contact-form-light .form-note {
  color: var(--steel);
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #0d0f10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 52px;
  padding-bottom: 38px;
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 430px;
  margin-bottom: 0;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  font-size: 0.88rem;
}

:focus-visible {
  outline: 3px solid rgba(245, 191, 0, 0.72);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .nav-menu {
    gap: 18px;
  }

  .nav-phone {
    display: none;
  }

  .hero-grid,
  .split,
  .projects-layout,
  .contact-layout,
  .about-lead-grid,
  .element-grid,
  .approvals-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .hero-panel div + div {
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

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

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

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

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

  .wow-gallery {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: 86px;
  }

  .gallery-card {
    grid-column: span 4;
    grid-row: span 3;
  }

  .gallery-card-feature,
  .gallery-card-wide {
    grid-column: span 8;
  }

  .gallery-card-tall {
    grid-row: span 4;
  }

  .element-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 170px 150px;
    min-height: 0;
  }

  .element-mosaic div:nth-child(1),
  .element-mosaic div:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .approval-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .about-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 780px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .site-header {
    inset: 8px 0 auto;
    background: transparent;
  }

  .nav {
    min-height: 64px;
    padding: 8px 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand-image {
    min-width: 148px;
  }

  .brand-logo {
    width: 156px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    background: rgba(18, 20, 22, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu > a:not(.nav-phone) {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu > a:not(.nav-phone)::after {
    display: none;
  }

  .nav-phone {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 58px;
  }

  .subpage-hero {
    min-height: 360px;
    padding: 112px 0 54px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 20, 22, 0.98) 0%, rgba(18, 20, 22, 0.86) 58%, rgba(18, 20, 22, 0.5) 100%),
      linear-gradient(0deg, rgba(18, 20, 22, 0.95) 0%, rgba(18, 20, 22, 0.08) 54%);
  }

  .hero-grid {
    min-height: 0;
  }

  h1 {
    font-size: 2.7rem;
  }

  .subpage-hero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-lede {
    font-size: 1.04rem;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .proof-grid,
  .services-grid,
  .service-detail-grid,
  .process-grid,
  .team-card,
  .stats-grid,
  .approval-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .proof-grid {
    gap: 0;
  }

  .proof-item {
    min-height: 104px;
    padding: 22px 18px;
  }

  .section {
    padding: 72px 0;
  }

  .intro-section .split {
    padding: 28px;
  }

  .intro-section .content-stack {
    border-left: 0;
    border-top: 3px solid var(--gold);
    padding-top: 24px;
    padding-left: 0;
  }

  .split,
  .projects-layout,
  .contact-layout,
  .about-lead-grid,
  .element-grid,
  .approvals-layout {
    gap: 34px;
  }

  .quote-card svg {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }

  .element-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 120px 130px;
  }

  .element-mosaic div:nth-child(1) {
    grid-column: auto;
    grid-row: span 2;
  }

  .element-mosaic div:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .approval-grid {
    overflow: visible;
    padding-bottom: 0;
  }

  .approval-card {
    min-height: 170px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .service-card {
    min-height: 0;
  }

  .project-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 188px;
  }

  .gallery-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-wow-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-filter-bar {
    top: 86px;
    width: min(var(--container), calc(100% - var(--gutter) * 2));
  }

  .wow-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 12px;
  }

  .gallery-card,
  .gallery-card-feature,
  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-logo {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-card-feature {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox figure {
    width: min(100%, calc(100vw - 36px));
  }

  .gallery-lightbox-nav {
    top: auto;
    bottom: 18px;
  }

  .gallery-lightbox-prev {
    left: 18px;
  }

  .gallery-lightbox-next {
    right: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item.large,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: span 1;
  }

  .project-showcase article:nth-child(3) {
    grid-column: auto;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-form-light {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .brand small {
    display: none;
  }

  .brand-logo {
    width: 138px;
  }

  h1 {
    font-size: 2.28rem;
  }

  .subpage-hero h1 {
    font-size: 2.48rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero-panel div,
  .service-card,
  .process-step,
  .team-card article,
  .approval-card {
    padding: 22px;
  }

  .intro-section .split {
    padding: 22px;
  }

  .stats-grid dt {
    font-size: 2.5rem;
  }

  .contact-list a,
  .contact-list div {
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-stats {
    display: grid;
  }

  .wow-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .gallery-card,
  .gallery-card-feature {
    grid-column: 1;
    grid-row: span 1;
  }

  .gallery-card-logo .gallery-open img {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
