:root {
  --gold: #b08a3a;
  --gold-bright: #c9a24a;
  --gold-soft: #e4d2a8;
  --gold-deep: #8c6d2e;
  --gold-dark: #6b5220;
  --paper: #f4efe6;
  --paper-alt: #ebe4d6;
  --paper-deep: #e3d9c6;
  --surface: #fffdf8;
  --ink: #1f1b16;
  --ink-soft: #3a342c;
  --muted: #5f574c;
  --line: rgba(176, 138, 58, 0.28);
  --espresso: #3a3228;
  --espresso-deep: #2c261f;
  --shadow: 0 22px 50px rgba(47, 39, 28, 0.1);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100%;
}

html {
  overflow-x: clip;
}

body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 12pt;
}

section p,
article p,
footer p,
.info-card p.copy,
.card-hover p,
.site-footer p {
  font-size: 12pt;
  line-height: 1.7;
}

section p.text-sm,
article p.text-sm,
footer p.text-sm,
section p.text-lg,
article p.text-lg,
.info-card p.copy {
  font-size: 12pt !important;
  line-height: 1.7 !important;
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  width: 100%;
  background: #fff;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: inherit;
}

.gold-line {
  width: 4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
}

.gold-line-center {
  width: 4.5rem;
  height: 2px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.gold-border {
  border: 1px solid rgba(176, 138, 58, 0.4);
}

.utility-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-bar a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.utility-bar a:hover {
  color: var(--gold);
}

.utility-links {
  display: flex;
  gap: 1.25rem;
}

.site-header {
  position: relative;
  z-index: 100;
  overflow: visible;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding-top: env(safe-area-inset-top);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 10px 34px rgba(47, 39, 28, 0.12);
}

@media (min-width: 1100px) {
  .site-header.is-scrolled .utility-bar {
    display: none;
  }

  .site-header.is-scrolled .header-bar {
    min-height: 7.4rem;
  }

  .site-header.is-scrolled .header-logo img {
    height: 6.4rem;
    width: 6.8rem;
  }

  .site-header.is-scrolled .nav-link {
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 10.4rem;
  transition: min-height 0.25s ease;
}

.header-side {
  display: none;
  align-items: stretch;
  gap: 0.15rem;
}

.header-left {
  justify-content: flex-end;
}

.header-right {
  justify-content: flex-start;
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.4rem 1.6rem;
  position: relative;
}

.header-logo img {
  height: 8.6rem;
  width: 8.8rem;
  object-fit: cover;
  object-position: center 42%;
  transition: height 0.25s ease, width 0.25s ease;
}

@media (min-width: 640px) {
  .header-logo img {
    height: 9.5rem;
    width: 10.1rem;
  }
}

.header-logo::before,
.header-logo::after {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(176, 138, 58, 0.7), transparent);
}

.header-logo::before {
  left: 0;
}

.header-logo::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

@media (min-width: 1100px) {
  .utility-bar,
  .header-side {
    display: flex;
  }
}

.nav-link {
  position: relative;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.2rem 0.38rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link .nav-caret {
  font-size: 0.62rem;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.mega-wrap:hover .nav-caret,
.mega-wrap:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-deep);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #d4b36a 0%, #b08a3a 100%);
  color: #1a1408;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.25rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 8px 24px rgba(176, 138, 58, 0.22);
}

.cta-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  padding: 0.8rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.cta-btn-outline:hover {
  background: var(--gold);
  color: #1a1408;
}

.mega-wrap {
  position: static;
  display: flex;
  align-items: center;
}

.mega-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h, 8.6rem);
  z-index: 250;
  width: 100%;
  min-width: 0;
  max-width: none;
  background: #fff;
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 60px rgba(47, 39, 28, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mega-wrap:hover .mega-panel,
.mega-wrap:focus-within .mega-panel,
.mega-wrap.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  display: flex;
  flex-direction: column;
  width: min(1440px, calc(100% - 4rem));
  margin: 0 auto;
  padding: 1.85rem 0 1.45rem;
  background: #fff;
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.25rem 3rem;
}

.mega-cols--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 42rem;
}

.mega-cols--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mega-col-title {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 0.55rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}

.mega-panel a.mega-link {
  display: block;
  padding: 0.46rem 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  border: 0;
  background: transparent;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.mega-panel a.mega-link:hover {
  color: var(--gold);
  padding-left: 0.35rem;
  background: transparent;
}

.mega-all {
  margin-top: 1.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  display: inline-flex;
  align-self: flex-start;
  color: var(--gold-deep);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mega-all:hover {
  color: var(--gold);
}

.hero-slider {
  position: relative;
  z-index: 1;
  height: calc(100vh - 2rem);
  min-height: 640px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.hero-slide .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: none;
}

.hero-slide.is-active img,
.hero-slide.is-active .hero-bg {
  animation: kenburns 8s ease-out forwards;
}

@keyframes kenburns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(44, 38, 31, 0.78) 0%, rgba(44, 38, 31, 0.38) 52%, rgba(44, 38, 31, 0.18) 100%),
    linear-gradient(180deg, rgba(44, 38, 31, 0.18) 0%, rgba(44, 38, 31, 0.5) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  color: #f6f0e4;
}

.hero-content h1,
.hero-content h2 {
  color: #fffaf3;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(228, 210, 168, 0.7);
  color: var(--gold-soft);
  background: rgba(44, 38, 31, 0.35);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-nav-btn:hover {
  background: var(--gold);
  color: #1a1408;
}

.hero-nav-btn.prev {
  left: 1.25rem;
}

.hero-nav-btn.next {
  right: 1.25rem;
}

.hero-dots {
  position: absolute;
  bottom: 7.5rem;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.hero-dot {
  width: 2.2rem;
  height: 3px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, width 0.2s ease;
}

.hero-dot.is-active {
  background: var(--gold);
  width: 3.2rem;
}

.stat-strip {
  position: relative;
  z-index: 6;
  margin-top: -5.5rem;
  padding: 0 1rem 0.5rem;
}

.stat-strip-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-item {
  padding: 1.35rem 1.4rem 1.45rem;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  color: var(--gold-deep);
  line-height: 1.1;
}

.stat-item span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}

.info-cards-band {
  position: relative;
  z-index: 5;
  padding: 4.5rem 0 0.5rem;
}

.info-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.85rem 1.75rem 1.7rem;
  min-height: 100%;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.info-card p.kicker,
.info-card .info-card-kicker {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 600;
}

.info-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.15;
  margin-top: 0.7rem;
  color: var(--ink);
}

.info-card p.copy {
  color: var(--muted);
  font-size: 12pt;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.info-card .info-card-link {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.card-hover {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(176, 138, 58, 0.7);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-card.card-hover:hover {
  background: #fffaf3;
  border-color: var(--gold);
}

.surface-band {
  background: var(--paper-alt);
}

.quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
  color: var(--gold);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fffaf3;
}

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.bento-card:hover img {
  transform: scale(1.06);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 38, 31, 0.1), rgba(44, 38, 31, 0.78));
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-wide {
  grid-row: span 2;
  min-height: 460px;
}

.sector-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: block;
}

.sector-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sector-tile:hover img {
  transform: scale(1.05);
}

.sector-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 38, 31, 0.05), rgba(44, 38, 31, 0.72));
}

.sector-tile p {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: #fffaf3;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-card .project-meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(44, 38, 31, 0.9));
  color: #f6f0e4;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.project-feature .project-card {
  min-height: 520px;
}

.logo-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--gold-deep);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.process-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.4rem 1.25rem 1.35rem;
}

.process-step .step-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(244, 239, 230, 0.92), rgba(244, 239, 230, 0.78)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1800&q=80") center/cover;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(44, 38, 31, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(100%, 400px);
  background: var(--surface);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow: auto;
  color: var(--ink);
}

.mobile-drawer.is-open .mobile-panel {
  transform: translateX(0);
}

.accordion-body {
  display: none;
  padding: 0.25rem 0 0.75rem 0.75rem;
}

.accordion-item.is-open .accordion-body {
  display: block;
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #f6f0e4;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 38, 31, 0.28), rgba(44, 38, 31, 0.78));
}

.page-hero h1,
.page-hero .font-display {
  color: #fffaf3;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(176, 138, 58, 0.45);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.form-field {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: none;
}

.form-field:focus {
  border-color: var(--gold);
}

.site-footer {
  background: var(--espresso);
  color: #efe8db;
  border-top: 1px solid rgba(196, 163, 90, 0.28);
}

.site-footer a {
  color: inherit;
}

.site-footer .cta-btn-outline {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.site-footer .cta-btn-outline:hover {
  color: #1a1408;
}

.service-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-jump a {
  border: 1px solid var(--line);
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--surface);
  transition: background 0.2s ease, color 0.2s ease;
}

.service-jump a:hover,
.service-jump a.is-current {
  background: var(--gold);
  color: #1a1408;
}

.crumb {
  color: #d9d1c3;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crumb a {
  color: var(--gold-soft);
}

.filter-btn {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.5rem 0.95rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface);
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--gold);
  color: #1a1408;
}

.meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-alt);
  min-height: 22rem;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 26rem;
  border: 0;
}

.parallax-band {
  position: relative;
  isolation: isolate;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #f6f0e4;
}

.parallax-media {
  position: absolute;
  inset: -18% 0;
  z-index: 0;
  will-change: transform;
}

.parallax-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(44, 38, 31, 0.78) 0%, rgba(44, 38, 31, 0.38) 55%, rgba(44, 38, 31, 0.22) 100%),
    linear-gradient(180deg, rgba(44, 38, 31, 0.12) 0%, rgba(44, 38, 31, 0.5) 100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
  padding: 6.5rem 0;
}

.parallax-content h2 {
  color: #fffaf3;
}

/* Remap former dark-theme utility colors across inner pages */
.bg-\[\#0b0b0b\],
.bg-ink {
  background-color: var(--paper) !important;
}

.bg-\[\#101010\] {
  background-color: var(--paper-alt) !important;
}

.text-\[\#f3eee6\] {
  color: var(--ink) !important;
}

.text-\[\#cfc6b6\],
.text-\[\#ddd4c4\],
.text-\[\#d9d1c3\],
.text-\[\#b8b0a2\],
.text-\[\#8d867b\] {
  color: var(--muted) !important;
}

.text-\[\#e8d5b0\],
.text-\[\#f6f0e4\] {
  color: var(--ink) !important;
}

.page-hero .text-\[\#ddd4c4\],
.page-hero .text-\[\#cfc6b6\],
.hero-content .text-\[\#ddd4c4\],
.hero-content .text-\[\#cfc6b6\],
.parallax-content .text-\[\#ddd4c4\],
.parallax-content .text-\[\#cfc6b6\] {
  color: #e6dcc8 !important;
}

.page-hero .text-\[\#e8d5b0\],
.page-hero .text-\[\#f6f0e4\],
.hero-content .text-\[\#e8d5b0\],
.hero-content .text-\[\#f6f0e4\],
.parallax-content .text-\[\#e8d5b0\],
.parallax-content .text-\[\#f6f0e4\] {
  color: #f6f0e4 !important;
}

.site-footer .text-\[\#e8d5b0\],
.site-footer .text-\[\#d9d1c3\],
.site-footer .text-\[\#b8b0a2\],
.site-footer .text-\[\#8d867b\] {
  color: #d9d1c3 !important;
}

.site-footer .font-display,
.project-meta h3,
.project-meta p,
.bento-card h3,
.sector-tile p {
  color: inherit;
}

@media (min-width: 768px) {
  .meta-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .map-frame iframe {
    height: 32rem;
  }
}

@media (max-width: 1099px) {
  .header-bar {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 8.1rem;
  }

  .header-logo {
    padding: 0.25rem 0.4rem;
    justify-content: flex-start;
    text-align: left;
  }

  .header-logo::before,
  .header-logo::after {
    display: none;
  }

  .header-logo img {
    height: 7.2rem;
    width: 7.5rem;
  }

  .mega-panel {
    display: none;
  }

  .stat-strip-inner,
  .bento-grid,
  .project-feature,
  .mega-inner,
  .mega-cols {
    grid-template-columns: 1fr;
  }

  .bento-wide {
    grid-row: auto;
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-nav-btn {
    display: none;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 8.5rem;
  }

  .hero-dots {
    bottom: 9.5rem;
  }

  .stat-strip {
    margin-top: -3.5rem;
  }

  .stat-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-item:nth-child(2) {
    border-right: 0;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .page-hero {
    min-height: 62vh;
  }

  .page-hero .font-display.text-5xl,
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    line-height: 0.98;
  }

  .cta-btn,
  .cta-btn-outline {
    min-height: 2.75rem;
  }

  .project-card,
  .project-feature .project-card {
    min-height: 260px;
  }

  .parallax-content {
    padding: 4.5rem 0;
  }

  .parallax-band {
    min-height: 64vh;
  }

  .parallax-media {
    inset: -8% 0;
  }

  section img.w-full {
    height: 14rem;
  }

  .hero-slide img,
  .parallax-media img,
  .project-card img {
    height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-media {
    inset: 0;
    transform: none !important;
  }
}

/* Antra-inspired homepage */
.home-antra {
  background: #f4f2ee;
}

.home-antra h1,
.home-antra h2,
.home-antra h3 {
  font-family: "Plus Jakarta Sans", Outfit, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #161616;
}

.home-antra .antra-hero h1,
.home-antra .antra-about h2,
.home-antra .antra-cta-photo h2 {
  color: #fff;
}

.home-antra h2 em {
  font-style: normal;
  color: var(--gold);
}

.antra-wrap {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.antra-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem 0.42rem 0.7rem;
  border: 1px solid rgba(22, 22, 22, 0.12);
  border-radius: 999px;
  background: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #4a453c;
  white-space: nowrap;
}

.antra-pill::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.antra-pill--light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #f6f0e4;
}

.antra-pill--dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #efe8db;
}

.antra-pill--onimg {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.antra-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: #1c1c1c;
  color: #fff;
  border-radius: 999px;
  padding: 0.2rem 0.2rem 0.2rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.antra-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.antra-btn-arrow {
  width: 2.55rem;
  height: 2.55rem;
  margin-left: 0.65rem;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.antra-btn--light {
  background: #fff;
  color: #1c1c1c;
}

.antra-head {
  display: grid;
  grid-template-columns: minmax(8rem, 0.7fr) 1.6fr;
  gap: 1.5rem;
  align-items: start;
  padding: 5.5rem 0 2.5rem;
}

.antra-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  margin: 0;
}

.antra-head p {
  max-width: 34rem;
  margin-top: 1rem;
  color: var(--muted);
}

.antra-hero {
  position: relative;
  min-height: calc(100vh - 6.5rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.antra-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.antra-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.55) 0%, rgba(18, 16, 14, 0.18) 52%, rgba(18, 16, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(18, 16, 14, 0.12) 0%, rgba(18, 16, 14, 0.42) 100%);
}

.antra-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 8rem 0 7rem;
}

.antra-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7.2vw, 6.4rem);
  line-height: 0.92;
  margin: 1.1rem 0 1.25rem;
  max-width: 14ch;
}

.antra-hero p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.antra-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  z-index: 3;
  transform: translateX(-50%);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fff;
  color: #1c1c1c;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.antra-intro,
.antra-services,
.antra-stats,
.antra-process,
.antra-projects,
.antra-clients {
  position: relative;
  overflow: hidden;
}

.antra-intro {
  min-height: 22rem;
  background:
    radial-gradient(circle at 18% 80%, rgba(176, 138, 58, 0.06), transparent 40%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(22, 22, 22, 0.025) 22px 23px);
}

.antra-mark {
  position: absolute;
  left: -2%;
  bottom: -12%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(6rem, 22vw, 16rem);
  line-height: 0.8;
  color: rgba(22, 22, 22, 0.045);
  pointer-events: none;
  text-transform: lowercase;
}

.antra-mark--dark {
  color: rgba(255, 255, 255, 0.06);
  bottom: -18%;
  left: 8%;
}

.antra-about {
  position: relative;
  background: #241f1a;
  color: #f4efe6;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.antra-about h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 1.1rem 0 1.4rem;
  max-width: 14ch;
}

.antra-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.antra-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.4rem;
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.antra-checks li {
  position: relative;
  padding-left: 1.4rem;
  color: #e8dfd0;
  font-size: 0.95rem;
}

.antra-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.antra-about p {
  max-width: 34rem;
  color: #cfc6b6;
  margin-bottom: 1.6rem;
}

.antra-about-media img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  border-radius: 1.6rem;
}

.antra-services-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  padding-bottom: 3rem;
}

.antra-service-stage {
  position: relative;
  min-height: 28rem;
  border-radius: 1.5rem;
  overflow: hidden;
}

.antra-service-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.antra-service-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  background: rgba(28, 24, 20, 0.78);
  color: #f3eee6;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.antra-service-item {
  width: 100%;
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  text-align: left;
  padding: 1.15rem 0.2rem;
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  background: transparent;
  color: #161616;
}

.antra-service-item span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.antra-service-item strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.antra-service-item em {
  font-style: normal;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0ece4;
}

.antra-service-item.is-open strong,
.antra-service-item:hover strong {
  color: var(--gold-deep);
}

.antra-service-item.is-open em {
  background: var(--gold);
  color: #1a1408;
}

.antra-stats {
  padding: 1rem 0 5rem;
}

.antra-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.antra-stats-grid strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(22, 22, 22, 0.12);
  margin-bottom: 0.7rem;
}

.antra-stats-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.antra-process {
  padding-bottom: 4rem;
}

.antra-process-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  padding-top: 2rem;
}

.antra-process-head h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.08;
  margin-top: 1rem;
}

.antra-process-head p {
  color: var(--muted);
  max-width: 26rem;
}

.antra-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.antra-process-grid article {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.3rem 3.2rem;
  min-height: 13.5rem;
  box-shadow: 0 16px 40px rgba(40, 32, 22, 0.05);
  overflow: hidden;
}

.antra-process-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.antra-process-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.antra-process-grid b {
  position: absolute;
  right: 0.7rem;
  bottom: -0.35rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 4.2rem;
  color: rgba(22, 22, 22, 0.06);
  line-height: 1;
}

.antra-process-note {
  text-align: center;
  margin-top: 1.8rem;
  color: var(--muted);
}

.antra-process-note a {
  color: var(--gold);
  font-weight: 600;
}

.antra-projects {
  padding-bottom: 2rem;
}

.antra-project-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 0 6vw 4rem;
}

.antra-project-row::-webkit-scrollbar {
  display: none;
}

.antra-project {
  color: inherit;
}

.antra-project img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
}

.antra-project {
  position: relative;
}

.antra-project h3 {
  font-size: 1.35rem;
}

.antra-project p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.25rem;
}

.antra-clients-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  padding-bottom: 2.5rem;
}

.antra-clients-grid img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
  border-radius: 1.4rem;
}

.antra-clients blockquote p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.45;
  font-weight: 600;
}

.antra-clients footer {
  display: flex;
  flex-direction: column;
  margin-top: 1.2rem;
  gap: 0.15rem;
}

.antra-clients footer span {
  color: var(--muted);
  font-size: 0.85rem;
}

.antra-why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.antra-why-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.78rem;
  background: #fff;
}

.antra-logos {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 4rem;
  text-align: center;
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  padding-top: 1.5rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.antra-logos p {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.7rem;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
}

.antra-cta-photo {
  position: relative;
  min-height: 28rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.antra-cta-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.antra-cta-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 16, 14, 0.45) 0%, rgba(18, 16, 14, 0.18) 100%);
}

.antra-cta-photo-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0;
}

.antra-cta-photo h2 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 1rem;
}

.antra-cta-photo p {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.5rem;
}

@media (max-width: 980px) {
  .antra-head,
  .antra-about-grid,
  .antra-services-grid,
  .antra-process-head,
  .antra-clients-grid,
  .antra-stats-grid,
  .antra-process-grid {
    grid-template-columns: 1fr;
  }

  .antra-hero {
    min-height: 100svh;
    align-items: flex-end;
  }

  .antra-hero-inner {
    padding: 6rem 0 6.5rem;
  }

  .antra-about-media img,
  .antra-service-stage,
  .antra-clients-grid img {
    height: 18rem;
  }

  .antra-project-row {
    grid-template-columns: 1fr;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
