:root {
  --black: #070606;
  --charcoal: #171514;
  --white: #fffaf0;
  --soft-white: #f8f3e8;
  --muted: #756f66;
  --gold: #c6a15a;
  --deep-gold: #8f6723;
  --line: rgba(198, 161, 90, 0.28);
  --shadow: 0 24px 80px rgba(7, 6, 6, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft-white);
  color: var(--black);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  width: min(58vw, 360px);
  animation: preloader-rise 1200ms ease both;
}

.preloader-inner img {
  width: 100%;
  background: transparent;
  animation: logo-breathe 1600ms ease-in-out infinite;
}

.preloader-inner span {
  position: relative;
  width: min(190px, 56vw);
  height: 1px;
  overflow: hidden;
  background: rgba(198, 161, 90, 0.22);
}

.preloader-inner span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  animation: loader-sweep 1300ms ease-in-out infinite;
}

@keyframes preloader-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

@keyframes loader-sweep {
  to {
    transform: translateX(100%);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px clamp(18px, 4vw, 64px);
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0.34), transparent);
  color: var(--white);
  transition: background 240ms ease, box-shadow 240ms ease, color 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 14px 38px rgba(7, 6, 6, 0.12);
  color: var(--black);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(120px, 16vw, 205px);
  height: auto;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.32));
  transition: width 240ms ease, filter 240ms ease;
}

.site-header.is-scrolled .brand img {
  width: clamp(108px, 13vw, 170px);
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin-left: auto;
  background: var(--white);
  transition: background 220ms ease;
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--black);
}

.site-header.nav-open .menu-toggle span {
  background: var(--white);
}

.menu-toggle span:nth-child(1) {
  width: 34px;
}

.menu-toggle span:nth-child(2) {
  width: 24px;
  margin-top: 8px;
}

.menu-toggle span:nth-child(3) {
  width: 40px;
  margin-top: 8px;
}

.hero,
.page-hero,
.contact-hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.home-hero {
  display: grid;
  align-items: end;
  padding: 170px clamp(20px, 6vw, 96px) 88px;
  color: var(--white);
}

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

.hero-media img {
    position: fixed;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -110;
}



.hero-content {
  position: relative;
  max-width: 760px;
  padding: clamp(26px, 4vw, 52px);
  color: var(--black);
  background: rgba(198, 161, 90, 0.74);
  border: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 8px;
  box-shadow: 0 28px 88px rgba(7, 6, 6, 0.28);
  backdrop-filter: blur(18px);
  filter: drop-shadow(0 18px 34px rgba(7, 6, 6, 0.26));
}

.hero-content p {
  color: rgba(7, 6, 6, 0.78);
}

.hero-content .btn-primary {
  background: var(--black);
  color: var(--white);
}

.hero-content .btn-secondary {
  border-color: rgba(7, 6, 6, 0.52);
  color: var(--black);
}


.eyebrow,
.section-kicker,
.service-count,
.role {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 11vw, 6rem);
  font-weight: 200;
}

h2 {
  margin-bottom: 24px;

  font-size: clamp(2.7rem, 6vw, 6.2rem);
  font-weight: 200;
}

h3 {
  margin-bottom: 16px;

  font-size: clamp(1.65rem, 3vw, 2.7rem);
  font-weight: 100;
  line-height: 1.06;
  color: var(--gold);
}

.hero-content p:not(.eyebrow),
.page-hero p,
.contact-copy p,
.split-copy p,
.intro-grid p,
.statement-band p,
.team-layout p,
.service-row p {
  max-width: 680px;
  color: inherit;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f0d184 48%, var(--deep-gold));
  color: var(--black);
}

.btn-secondary {
  border-color: rgba(255, 250, 240, 0.55);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.reveal-section {
  position: relative;
}

.reveal-section > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-section.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.intro-section,
.services-showcase,
.page-hero,
.contact-hero,
.why-section,
.split-section,
.statement-band,
.values-section,
.team-section,
.service-list,
.cta-band,
.site-footer {
  overflow: hidden;
}

.intro-section::before,
.page-hero::before,
.contact-hero::before,
.services-showcase::before,
.why-section::before,
.values-section::before,
.split-section::before,
.statement-band::before,
.team-section::before,
.service-list::before,
.contact-split::before,
.site-footer::before {
  position: absolute;
  z-index: 0;
  width: clamp(72px, 10vw, 138px);
  height: clamp(72px, 10vw, 138px);
  content: "";
  border: 1px solid rgba(198, 161, 90, 0.34);
  opacity: 0;
  transform: translateY(34px) rotate(18deg) scale(0.82);
  transition: opacity 760ms ease, transform 760ms ease;
}

.intro-section::before {
  top: 18%;
  right: 7%;
}

.page-hero::before,
.contact-hero::before {
  right: 8%;
  bottom: 12%;
  border-color: rgba(255, 250, 240, 0.26);
}

.services-showcase::before {
  top: 9%;
  left: 7%;
  border-radius: 999px;
  border-color: rgba(198, 161, 90, 0.42);
}

.why-section::before {
  right: 8%;
  bottom: 9%;
  border-radius: 999px;
}

.values-section::before {
  top: 12%;
  right: 8%;
  border-radius: 999px;
}

.split-section::before,
.statement-band::before,
.team-section::before,
.service-list::before,
.contact-split::before {
  top: 11%;
  left: 5%;
}

.site-footer::before {
  right: 6%;
  bottom: 18%;
  border-color: rgba(198, 161, 90, 0.22);
}

.reveal-section.is-visible::before {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

.intro-section > *,
.page-hero > *,
.contact-hero > *,
.why-section > *,
.split-section > *,
.statement-band > *,
.values-section > *,
.team-section > *,
.service-list > *,
.cta-band > *,
.site-footer > *,
.services-showcase > * {
  position: relative;
  z-index: 1;
}

.hero.reveal-section .hero-media,
.hero.reveal-section .hero-overlay {
  opacity: 1;
  transform: none;
}

.hero.reveal-section .hero-content {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
}

.hero.reveal-section.is-visible .hero-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.service-row.reveal-section > *:nth-child(2),
.split-section.reveal-section > *:nth-child(2),
.services-showcase.reveal-section > *:nth-child(2),
.cta-band.reveal-section > *:nth-child(2) {
  transition-delay: 130ms;
}

.why-points > div,
.values-grid > div,
.statement-band > div,
.footer-column {
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-section:not(.is-visible) .why-points > div,
.reveal-section:not(.is-visible) .values-grid > div,
.reveal-section:not(.is-visible) .statement-band > div,
.reveal-section:not(.is-visible) .footer-column {
  opacity: 0;
  transform: translateY(26px);
}

.reveal-section.is-visible .why-points > div,
.reveal-section.is-visible .values-grid > div,
.reveal-section.is-visible .statement-band > div,
.reveal-section.is-visible .footer-column {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .why-points > div:nth-child(2),
.reveal-section.is-visible .values-grid > div:nth-child(2),
.reveal-section.is-visible .statement-band > div:nth-child(2),
.reveal-section.is-visible .footer-column:nth-child(2) {
  transition-delay: 120ms;
}

.reveal-section.is-visible .why-points > div:nth-child(3),
.reveal-section.is-visible .values-grid > div:nth-child(3),
.reveal-section.is-visible .footer-column:nth-child(3) {
  transition-delay: 220ms;
}

.reveal-section.is-visible .footer-column:nth-child(4) {
  transition-delay: 320ms;
}

.gradient-break {
  height: 12px;
  background: linear-gradient(90deg, var(--black), var(--deep-gold) 36%, #f2d88d 50%, var(--gold) 65%, var(--black));
}

.gradient-break.reverse {
  background: linear-gradient(90deg, #f2d88d, var(--deep-gold), var(--black) 54%, var(--gold));
}

.intro-section,
.services-showcase,
.split-section,
.statement-band,
.team-section,
.service-list,
.why-section,
.cta-band {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 6vw, 96px);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: end;
}

.intro-grid p {
  margin-bottom: 12px;
  color: var(--muted);
}

.services-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  min-height: 720px;
  background: var(--black);
  color: var(--white);
}

.carousel-copy {
  max-width: 620px;
}

.service-copy-panel {
  max-width: 520px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-copy-panel p:not(.service-count) {
  color: rgba(255, 250, 240, 0.76);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  font-size: 1.2rem;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.icon-btn {
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
  background: transparent;
  border: 1px solid rgba(255, 250, 240, 0.28);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.icon-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.image-stack {
  position: relative;
  height: clamp(390px, 50vw, 620px);
  perspective: 1400px;
}

.stack-image {
  position: absolute;
  top: calc(var(--stack-order) * 22px);
  right: calc(var(--stack-order) * 26px);
  z-index: calc(10 - var(--stack-order));
  width: min(76%, 520px);
  height: min(82%, 520px);
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(198, 161, 90, 0.5);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: rotate(calc((var(--stack-order) - 2) * -2deg)) translateY(calc(var(--stack-order) * 5px)) scale(calc(1 - (var(--stack-order) * 0.035)));
  transform-origin: center;
  transition: transform 520ms ease, top 520ms ease, right 520ms ease, opacity 520ms ease;
}

.stack-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-image:not(.is-active) {
  opacity: 0.72;
}

.stack-image.is-active {
  opacity: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  background: var(--soft-white);
}

.split-media {
  min-height: 470px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.split-copy {
  color: var(--black);
}

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

.page-hero,
.contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  min-height: 72vh;
  padding: 180px clamp(20px, 6vw, 96px) 86px;
  background:
    linear-gradient(135deg, rgba(7, 6, 6, 0.92), rgba(7, 6, 6, 0.58)),
    url("https://images.unsplash.com/photo-1518005020951-eccb494ad742?auto=format&fit=crop&w=1800&q=82") center/cover;
  color: var(--white);
}

.services-hero {
  background:
    linear-gradient(135deg, rgba(7, 6, 6, 0.9), rgba(7, 6, 6, 0.48)),
    url("assets/contructing.jpg") center/cover;
}

.page-hero p,
.contact-copy p {
  color: rgba(255, 250, 240, 0.8);
}

.about-split {
  background: var(--white);
}

.statement-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--black);
  color: var(--white);
}

.statement-band > div {
  padding: clamp(34px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.statement-band span,
.why-points span,
.service-row span,
.contact-panel span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.statement-band p {
  color: rgba(255, 250, 240, 0.72);
}

.values-section {
  display: grid;
  gap: clamp(34px, 6vw, 76px);
  justify-items: center;
  background: var(--white);
  border-top: 1px solid rgba(198, 161, 90, 0.34);
  border-bottom: 1px solid rgba(198, 161, 90, 0.34);
}

.values-heading {
  max-width: 820px;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 320px));
  gap: clamp(18px, 2vw, 26px);
  justify-content: center;
  width: 100%;
  max-width: 1080px;
  background: transparent;
}

.values-grid > div {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  align-items: start;
  min-height: 100%;
  padding: clamp(26px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(198, 161, 90, 0.42);
  box-shadow: 0 20px 58px rgba(7, 6, 6, 0.08);
}

.values-grid i {
  color: var(--gold);
  font-size: clamp(2.6rem, 4.8vw, 4.4rem);
  line-height: 1;
}

.values-grid h3 {
  margin-bottom: 12px;
}

.values-grid p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

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

.team-layout {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(280px, 640px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: 32px;
}

.team-layout img {
  width: 100%;
  background: var(--black);
}

.director-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow);
}

.team-layout p {
  color: var(--muted);
}

.service-list {
  background: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(280px, 760px);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding: clamp(34px, 5vw, 72px) 0;
  border-bottom: 1px solid rgba(7, 6, 6, 0.12);
}

.service-row:nth-child(even) {
  grid-template-columns: minmax(280px, 760px) minmax(260px, 420px);
}

.service-row:nth-child(even) img {
  order: 2;
}

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

.service-row p {
  color: var(--muted);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
  background: var(--white);
}

.why-heading {
  position: sticky;
  top: 130px;
}

.why-points {
  display: grid;
  gap: 1px;
  background: rgba(7, 6, 6, 0.13);
}

.why-points > div {
  display: grid;
  grid-template-columns: clamp(54px, 7vw, 88px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(28px, 4vw, 52px) clamp(20px, 4vw, 46px);
  background: var(--white);
}

.why-points i {
  color: var(--gold);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1;
}

.why-points h3 {
  margin-bottom: 12px;
}

.why-points p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  min-height: clamp(380px, 48vw, 560px);
  background: var(--black);
  color: var(--white);
}

.cta-copy {
  display: grid;
  justify-items: start;
  gap: 28px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  margin-bottom: 0;
}

.cta-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  border: 0;
}

.cta-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 6, 6, 0.92), rgba(7, 6, 6, 0.62) 48%, rgba(7, 6, 6, 0.2)),
    linear-gradient(135deg, rgba(198, 161, 90, 0.18), rgba(7, 6, 6, 0.18));
}

.cta-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.76;
  transition: transform 1000ms ease;
}

.cta-band.is-visible .cta-image img {
  transform: scale(1.045);
}

.cta-band::before {
  position: absolute;
  top: 12%;
  right: 4%;
  z-index: 1;
  width: clamp(96px, 12vw, 170px);
  height: clamp(96px, 12vw, 170px);
  content: "";
  border: 1px solid rgba(255, 250, 240, 0.22);
  opacity: 0;
  transform: translateY(34px) rotate(28deg) scale(0.8);
  transition: opacity 760ms ease, transform 760ms ease;
}

.cta-band.is-visible::before {
  opacity: 1;
  transform: translateY(0) rotate(0deg) scale(1);
}

.cta-band.reveal-section .cta-image {
  opacity: 0;
  transform: scale(1.04);
}

.cta-band.reveal-section.is-visible .cta-image {
  opacity: 1;
  transform: scale(1);
}

.home-cta {
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.contact-hero {
  align-items: center;
  min-height: 86vh;
  background:
    linear-gradient(135deg, rgba(7, 6, 6, 0.88), rgba(7, 6, 6, 0.58)),
    url("assets/who-we-are.png") center/cover;
}

.contact-panel {
  padding: clamp(24px, 3.4vw, 38px);
  background: rgba(255, 250, 240, 0.94);
  color: var(--black);
  box-shadow: var(--shadow);
}

.contact-panel > div + div {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 6, 6, 0.13);
}

.contact-panel a,
.contact-panel p {
  display: block;
  margin: 0;
  color: var(--black);
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.45;
}

.contact-split {
  background: var(--white);
}

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

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  margin-top: 34px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--deep-gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 0;
  color: var(--black);
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(7, 6, 6, 0.24);
  border-radius: 0;
  outline: 0;
  transition: border-color 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--gold);
}

.contact-form .form-message,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
  margin-top: 10px;
  cursor: pointer;
}

.site-footer {
  padding: clamp(48px, 7vw, 82px) clamp(20px, 6vw, 96px) 28px;
  background: var(--black);
  color: rgba(255, 250, 240, 0.72);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
}

.footer-brand img {
  width: min(220px, 70vw);
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
}

.footer-brand p:first-of-type {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 1;
}

.footer-brand p:last-of-type {
  max-width: 430px;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Bodoni Moda", Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  color: rgba(255, 250, 240, 0.56);
  border-top: 1px solid rgba(198, 161, 90, 0.22);
  font-size: 0.82rem;
}

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

@media (max-width: 860px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-header.nav-open {
    inset: 0;
    align-items: flex-start;
    height: 100dvh;
    background: rgba(7, 6, 6, 0.96);
    color: var(--white);
    backdrop-filter: none;
    box-shadow: none;
  }

  .site-header.nav-open .brand {
    position: relative;
    z-index: 23;
  }

  .menu-toggle {
    position: relative;
    z-index: 24;
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 0;
    z-index: 21;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(7, 6, 6, 0.95);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

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

  .site-header.nav-open .site-nav {
    color: var(--white);
  }

  .home-hero {
    min-height: 88vh;
    padding: 132px 20px 56px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

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

  .intro-grid,
  .services-showcase,
  .split-section,
  .page-hero,
  .contact-hero,
  .statement-band,
  .why-section,
  .values-section,
  .team-layout,
  .service-row,
  .service-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .services-showcase {
    min-height: auto;
  }

  .image-stack {
    height: 460px;
    order: -1;
  }

  .stack-image {
    top: calc(var(--stack-order) * 16px);
    right: auto;
    left: calc(var(--stack-order) * 12px);
    width: min(86%, 420px);
    height: 78%;
  }

  .split-media,
  .split-media img {
    min-height: 340px;
  }

  .page-hero,
  .contact-hero {
    min-height: 66vh;
    padding: 132px 20px 56px;
  }

  .service-row:nth-child(even) img {
    order: 0;
  }

  .service-row img {
    aspect-ratio: 16 / 12;
  }

  .why-heading {
    position: static;
  }

  .values-heading {
    position: static;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(240px, 320px));
  }

  .cta-band {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 520px) {
  .brand img {
    width: 126px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .image-stack {
    height: 350px;
  }

  .contact-panel {
    padding: 24px;
  }

  .site-footer img {
    width: 140px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  .why-points > div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .why-points i {
    font-size: 2.4rem;
  }

  .values-grid i {
    font-size: 2.4rem;
  }
}

@media (max-width: 640px) {
  .values-grid {
    grid-template-columns: minmax(0, 360px);
  }
}
