/* ============================================
   Summit Build Co.
   Global Stylesheet — Mobile-First
   ============================================ */

/* --- CSS Variables --- */
:root {
  /* REPLACE: Brand colours */
  --color-bg: #F5F5F0;
  --color-primary: #1B2A4A;
  --color-primary-light: #2A3F6B;
  --color-accent: #D4851F;
  --color-accent-dark: #B8711A;
  --color-accent-light: #E8A84C;
  --color-text: #1A1A1A;
  --color-text-mid: #4A4A4A;
  --color-text-light: #6B6B6B;
  --color-white: #FFFFFF;
  --color-border: #E0DDD6;
  --color-dark: #111827;
  --color-overlay: rgba(27, 42, 74, 0.7);

  /* REPLACE: Fonts */
  --font-heading: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 0.3s;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.375rem);
  font-weight: 600;
}

h4 {
  font-size: 1.0625rem;
  font-weight: 600;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

.section {
  padding: var(--space-xl) 0;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.text-center {
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.section__heading {
  margin-bottom: var(--space-md);
}

.section__subtext {
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text-mid);
  font-size: 1.0625rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 133, 31, 0.35);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

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

.btn--dark:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27, 42, 74, 0.3);
}

.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 0.9375rem;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--color-white);
  transition: box-shadow var(--duration) var(--ease);
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: var(--radius);
  line-height: 1;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-text-mid);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--duration) var(--ease);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
  transform-origin: center;
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-white);
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    transition: right var(--duration) var(--ease);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .nav__link {
    font-size: 1rem;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-sm);
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    text-align: center;
  }

  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease);
  }

  .nav__overlay--visible {
    opacity: 1;
    visibility: visible;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--color-primary);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27, 42, 74, 0.82) 0%, rgba(17, 24, 39, 0.75) 100%),
    url('../images/hero-construction.jpg') center / cover no-repeat;
  z-index: 1;
}

/* Grid pattern overlay for texture */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: var(--space-2xl) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: rgba(212, 133, 31, 0.15);
  border: 1px solid rgba(212, 133, 31, 0.3);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.hero__heading {
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.08;
}

.hero__heading em {
  font-style: normal;
  color: var(--color-accent);
}

.hero__subheading {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Accent stripe */
.hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--color-accent);
  z-index: 3;
}

/* --- Image Placeholders --- */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder--build {
  background: linear-gradient(135deg, #2A3F6B 0%, #3D5A80 40%, #4A6FA1 70%, #1B2A4A 100%);
}

.img-placeholder--warm {
  background: linear-gradient(135deg, #4A3B2A 0%, #6B5540 40%, #8B7355 70%, #3D2E1F 100%);
}

.img-placeholder--grey {
  background: linear-gradient(135deg, #3A3A3A 0%, #5A5A5A 40%, #7A7A7A 70%, #2A2A2A 100%);
}

.img-placeholder--green {
  background: linear-gradient(135deg, #2A4A3B 0%, #3D6B55 40%, #4A8A65 70%, #1B3A2A 100%);
}

.img-placeholder::after {
  content: attr(data-alt);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: var(--space-sm);
}

.img-placeholder--landscape {
  aspect-ratio: 16 / 10;
}

.img-placeholder--portrait {
  aspect-ratio: 3 / 4;
}

.img-placeholder--square {
  aspect-ratio: 1;
}

/* --- Service Cards (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--color-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__title {
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  color: var(--color-text-mid);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  flex: 1;
}

.service-card__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
}

.service-card__link:hover {
  color: var(--color-accent-dark);
  gap: 0.625rem;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform var(--duration) var(--ease);
}

/* --- Stats Bar --- */
.stats {
  background: var(--color-primary);
  padding: var(--space-lg) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  text-align: center;
}

@media (min-width: 640px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  padding: var(--space-sm);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stat__label {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}

/* Dividers between stats on larger screens */
@media (min-width: 640px) {
  .stat + .stat {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* --- Project Gallery --- */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.project-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}

.project-card:hover .project-card__bg {
  transform: scale(1.05);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
  z-index: 1;
}

.project-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  z-index: 2;
}

.project-card__category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.project-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
}

/* --- Trust Section --- */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.trust-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27, 42, 74, 0.06);
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-item__title {
  margin-bottom: 0.25rem;
}

.trust-item__desc {
  color: var(--color-text-mid);
  font-size: 0.875rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: rgba(212, 133, 31, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: rgba(212, 133, 31, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__heading {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.cta-banner__text {
  opacity: 0.75;
  margin-bottom: var(--space-lg);
  font-size: 1.0625rem;
  position: relative;
  z-index: 1;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* --- About Page --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content__text p {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
}

.about-content__text p + p {
  margin-top: var(--space-sm);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
}

.value-card__number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.value-card__title {
  margin-bottom: var(--space-xs);
}

.value-card__desc {
  color: var(--color-text-mid);
  font-size: 0.9375rem;
}

/* Licences / credentials */
.credentials {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 640px) {
  .credentials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.credential__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.credential__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
}

.credential__sub {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* --- Services Page (alternating rows) --- */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr 1fr;
  }

  .service-row--reverse .service-row__image {
    order: 2;
  }

  .service-row--reverse .service-row__content {
    order: 1;
  }
}

.service-row + .service-row {
  border-top: 1px solid var(--color-border);
}

.service-row__content {
  padding: var(--space-sm) 0;
}

.service-row__title {
  margin-bottom: var(--space-sm);
}

.service-row__desc {
  color: var(--color-text-mid);
  font-size: 1.0625rem;
  margin-bottom: var(--space-md);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form__label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-mid);
}

.form__input,
.form__select,
.form__textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  width: 100%;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.1);
}

.form__textarea {
  min-height: 140px;
  resize: vertical;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%234A4A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-info__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info__label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  margin-bottom: 0.125rem;
}

.contact-info__value {
  font-size: 1rem;
  color: var(--color-text);
}

.contact-info__value a:hover {
  color: var(--color-accent);
}

/* --- Map --- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 320px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius);
  line-height: 1;
}

.footer__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer__links li + li {
  margin-top: 0.5rem;
}

.footer__links a {
  font-size: 0.9375rem;
  transition: color var(--duration) var(--ease);
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.8125rem;
}

/* --- Page Header (inner pages) --- */
.page-header {
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-header .section__eyebrow {
  position: relative;
  z-index: 1;
}

.page-header__heading {
  color: var(--color-white);
  margin-bottom: var(--space-xs);
  position: relative;
  z-index: 1;
}

.page-header__sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.page-header--center {
  text-align: center;
}

.page-header--center .page-header__sub {
  margin: 0 auto;
}

/* Accent stripe on page headers */
.page-header__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-accent);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (min-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .section--lg {
    padding: calc(var(--space-2xl) * 1.25) 0;
  }
}

/* --- Print --- */
@media print {
  .header,
  .hamburger,
  .nav__overlay,
  .cta-banner,
  .map-container,
  .hero__stripe,
  .page-header__stripe {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
  }

  .hero__heading,
  .hero__subheading {
    color: #000;
  }
}
