/* ============================================================
   GA Paving & Masonry Inc, Atlanta, GA
   Two trades, one crew: hardscape masonry + asphalt paving.
   Type:  Anton (display) · Oswald (UI labels) · Barlow (body)
   Color: heritage gold + warm charcoal + cut-stone gray
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg);
  overflow-x: clip;
}

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 0; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-bright); text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: rgba(203, 165, 74, 0.4); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


/* ---- Custom Properties ---- */
:root {
  --gold: #cba54a;
  --gold-bright: #e6c266;
  --gold-deep: #9c7c2c;
  --gold-soft: rgba(203, 165, 74, 0.16);
  --gold-glow: rgba(230, 194, 102, 0.45);
  --gold-grad: linear-gradient(135deg, #e6c266 0%, #cba54a 48%, #9c7c2c 100%);

  --stone: #a8a096;
  --stone-deep: #6d655b;
  --stone-soft: rgba(168, 160, 150, 0.16);

  --cream: #f3eee3;

  --bg: #100f0d;
  --bg-2: #17150f;
  --bg-card: #1d1a13;
  --bg-3: #26221a;

  --text: #f3eee3;
  --text-soft: #d9d3c6;
  --text-faint: rgba(243, 238, 227, 0.6);

  --border: rgba(243, 238, 227, 0.1);
  --border-gold: rgba(203, 165, 74, 0.42);
  --border-stone: rgba(168, 160, 150, 0.22);

  --radius: 3px;
  --radius-lg: 6px;
  --max-w: 1220px;

  --shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);

  --font-display: 'Anton', 'Oswald', Impact, sans-serif;
  --font-ui: 'Oswald', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
}


/* Faint grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}


/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.15rem;
  padding: 0.4rem 0.95rem 0.4rem 0.7rem;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
}

.section-label::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--gold);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  flex-shrink: 0;
}

.section-header--center .section-label { align-self: center; margin-inline: auto; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.section-intro {
  font-family: var(--font-body);
  color: var(--text-soft);
  max-width: 66ch;
  line-height: 1.72;
  font-size: 1.06rem;
  margin-bottom: 2rem;
}

.text-accent {
  color: var(--gold-bright);
  text-shadow: 0 0 26px rgba(230, 194, 102, 0.35);
}


/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section {
  padding: clamp(4rem, 8vw, 6.75rem) 0;
  position: relative;
}

.section--dark { background: var(--bg); }

/* cut-stone diagonal texture on dark sections */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0, transparent 42px, rgba(203, 165, 74, 0.022) 42px, rgba(203, 165, 74, 0.022) 43px);
  pointer-events: none;
  z-index: 0;
}
.section--dark > * { position: relative; z-index: 1; }

.section--elevated { background: var(--bg-2); position: relative; }
.section--elevated::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 5%, rgba(203, 165, 74, 0.1), transparent 55%),
    radial-gradient(circle at 12% 92%, rgba(168, 160, 150, 0.05), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.section--elevated > * { position: relative; z-index: 1; }

.section-header { margin-bottom: 2.75rem; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin-left: auto; margin-right: auto; }


/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: #14110a;
  font-weight: 700;
  font-family: var(--font-ui);
  letter-spacing: 0.06em;
  border-radius: var(--radius);
}
.skip-link:focus { left: 0.5rem; }


/* ---- Scroll progress ---- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  box-shadow: 0 0 10px var(--gold-glow);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}


/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.header--scrolled {
  background: rgba(16, 15, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid var(--gold-soft);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
  gap: 1rem;
  transition: height 0.4s var(--ease);
}
.header--scrolled .header-inner { height: 80px; }

.header-brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s var(--ease);
}
.header-brand:hover { transform: translateY(-1px) scale(1.02); }
/* The logo shrinks on scroll via a GPU-composited transform (not height) so the
   filtered PNG isn't re-rasterized every frame, keeps the shrink/grow smooth. */
.header-logo {
  height: 108px;
  width: auto;
  transform-origin: left center;
  will-change: transform;
  transition: transform 0.4s var(--ease), filter 0.3s ease;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 1px rgba(243, 238, 227, 0.35));
}
.header--scrolled .header-logo { transform: scale(0.574); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 2px;
  background: var(--gold-grad);
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a:hover::after { transform-origin: bottom left; transform: scaleX(1); }

.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.header--scrolled .header-cta { padding: 0.5rem 1.1rem; font-size: 0.82rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px; height: 38px;
  z-index: 50;
}
.nav-toggle-bar {
  display: block;
  width: 23px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.nav-toggle--active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle--active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle--active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(330px, 90vw);
  height: 100vh; height: 100dvh;
  background: linear-gradient(180deg, #1d1a13 0%, #100f0d 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 51;
  padding: 5.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-left: 3px solid var(--gold);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s var(--ease), visibility 0.35s ease;
  overflow-y: auto;
}
.mobile-menu--open { transform: translateX(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-ui);
  font-size: 1.08rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-menu a:hover { color: var(--gold-bright); padding-left: 0.5rem; }
.mobile-menu-close {
  position: absolute;
  top: 1.3rem; right: 1.5rem;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
  background: var(--gold);
  color: #14110a;
  font-size: 1.5rem;
  transition: background 0.2s ease;
}
.mobile-menu-close:hover { background: var(--gold-bright); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(0, 0, 0, 0.72);
  display: none;
}
.nav-backdrop:not([hidden]) { display: block; }


/* ---- Buttons ---- */
.btn-primary, .btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold);
  color: #14110a;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.95rem 2rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover, .btn-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(203, 165, 74, 0.32);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: #14110a;
}
.btn-primary:active, .btn-phone:active { transform: scale(0.98) translateY(0); }
.btn-primary:visited, .btn-phone:visited { color: #14110a; }

.btn-phone::before {
  content: '';
  width: 1.05em; height: 1.05em;
  background-color: #14110a;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V21c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V21c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.95rem 2rem;
  border: 2px solid rgba(243, 238, 227, 0.6);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.35s var(--ease-spring), color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--bg);
  transform: translateY(-3px);
  border-color: var(--cream);
}
.btn-ghost:active { transform: scale(0.98) translateY(0); }


/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding-top: clamp(9rem, 17vh, 12rem);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.42;
  z-index: 0;
  filter: saturate(0.9) contrast(1.08);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 78% 15%, rgba(203, 165, 74, 0.16) 0%, transparent 55%),
    linear-gradient(180deg, rgba(16, 15, 13, 0.72) 0%, rgba(16, 15, 13, 0.6) 42%, rgba(16, 15, 13, 0.97) 100%);
  z-index: 1;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 84px, rgba(243, 238, 227, 0.035) 84px, rgba(243, 238, 227, 0.035) 86px);
  z-index: 2;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: 12%; left: clamp(1rem, 3vw, 2.5rem);
  width: 2px; height: 58%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: 5.5rem;
}
.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  width: 100%;
}
.hero-inner { max-width: 60rem; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) 0.15s both;
}
.hero-eyebrow-rule { width: 2.6rem; height: 1px; background: var(--gold-bright); opacity: 0.85; }
.hero-eyebrow-text {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--cream);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  color: var(--text);
  margin-bottom: 1.4rem;
  letter-spacing: 0.005em;
}
.hero-title-line { display: block; overflow: hidden; padding: 0 0.06em; margin: 0 -0.06em; }
.hero-title-line span { display: inline-block; animation: titleReveal 0.9s var(--ease) both; }
.hero-title-line:nth-child(1) span { animation-delay: 0.35s; }
.hero-title-line:nth-child(2) span { animation-delay: 0.55s; }
.hero-title-line--accent span {
  color: var(--gold-bright);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.55), 0 0 26px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: var(--text-soft);
  max-width: 56ch;
  line-height: 1.72;
  margin: 0 0 2rem;
  animation: fadeUp 0.8s var(--ease) 1s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s var(--ease) 1.2s both;
}

.hero-trust {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(20, 18, 14, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-soft);
  z-index: 10;
  padding: 1rem 0;
}
.hero-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  white-space: nowrap;
}
.hero-trust-item svg { color: var(--gold-bright); width: 20px; height: 20px; flex-shrink: 0; }


/* ---- Trades split (two domains) ---- */
.trades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.trade-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 2.5rem 2.25rem;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.45s var(--ease-spring);
}
.trade-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.trade-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.trade-card:hover::before { transform: scaleX(1); }
.trade-card-icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-bottom: 1.4rem;
}
.trade-card-icon svg { width: 30px; height: 30px; }
.trade-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}
.trade-card p { color: var(--text-soft); font-size: 0.98rem; line-height: 1.68; margin-bottom: 1.25rem; }
.trade-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.trade-tags span {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(203, 165, 74, 0.1);
  padding: 0.34rem 0.78rem;
  border: 1px solid var(--border-gold);
  border-radius: 2px;
}


/* ---- Service cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  position: relative;
  min-height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.4s ease, transform 0.45s var(--ease-spring), box-shadow 0.4s var(--ease);
  display: block;
  text-decoration: none;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-grad);
  z-index: 20;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-media { position: absolute; inset: 0; z-index: 0; }
.service-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 15, 13, 0.32) 0%, rgba(16, 15, 13, 0.74) 52%, rgba(16, 15, 13, 0.97) 100%);
  z-index: 1;
}
.service-card-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem 1.6rem 1.6rem;
  height: 100%;
}
.service-card-badge {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.7rem;
  padding: 0.24rem 0.6rem;
  background: rgba(203, 165, 74, 0.16);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  align-self: flex-start;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.06;
  letter-spacing: 0.01em;
}
.service-card-desc {
  color: var(--text-soft);
  margin-top: 0.6rem;
  line-height: 1.5;
  font-size: 0.86rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.4s ease, margin-top 0.4s ease;
}
.service-card:hover .service-card-desc,
.service-card:focus-visible .service-card-desc { max-height: 8rem; opacity: 1; }
.service-card-link {
  color: var(--gold-bright);
  font-family: var(--font-ui);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.service-card:hover .service-card-link { gap: 0.75rem; }
.service-card-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card-link svg { transform: translateX(3px); }
.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(203, 165, 74, 0.22);
  transform: translateY(-5px);
}


/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 3.25rem;
  align-items: center;
}
.about-media { position: relative; }
.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  position: relative;
}
.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(203, 165, 74, 0.28), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.about-image-wrapper img {
  width: 100%; height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-badge {
  position: absolute;
  bottom: -1.3rem; right: 1.4rem;
  width: 132px; height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.6));
}
.about-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  z-index: 0;
}
.about-badge::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--bg-card);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 12%);
  z-index: 1;
}
.about-badge > * { position: relative; z-index: 2; }
.about-badge-value {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  text-shadow: 0 0 18px rgba(230, 194, 102, 0.4);
}
.about-badge-label {
  color: var(--cream);
  font-size: 0.66rem;
  margin-top: 0.35rem;
  font-family: var(--font-ui);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
}
.about-content { display: flex; flex-direction: column; justify-content: center; }
.about-divider { width: 62px; height: 3px; background: var(--gold-grad); margin-bottom: 1.4rem; }
.about-check-list {
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}
.about-check-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.35rem 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}
.about-check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 19px; height: 19px;
  background-color: var(--gold-bright);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.about-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }


/* ---- Process ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.process-line {
  position: absolute;
  top: 46px; left: 12%;
  width: 76%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), var(--gold-bright), var(--gold), var(--gold-soft), transparent);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-circle {
  width: 92px; height: 92px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), filter 0.3s ease;
}
.process-step-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
  z-index: 0;
}
.process-step-circle::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--bg-card);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
  z-index: 1;
  transition: background 0.3s ease;
}
.process-step:hover .process-step-circle { transform: scale(1.06); filter: drop-shadow(0 0 22px var(--gold-glow)); }
.process-step:hover .process-step-circle::after { background: var(--bg-3); }
.process-step-icon { color: var(--gold-bright); position: relative; z-index: 2; line-height: 0; }
.process-step-icon svg { width: 36px; height: 36px; display: block; }
.process-step-number {
  position: absolute;
  top: -8px; right: calc(50% - 54px);
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #14110a;
  font-family: var(--font-display);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  z-index: 3;
  border: 2px solid var(--bg);
}
.process-step-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
  margin-top: 1.4rem;
  color: var(--text);
  line-height: 1.12;
}
.process-step-desc { color: var(--text-soft); font-size: 0.9rem; margin-top: 0.5rem; max-width: 220px; margin-inline: auto; line-height: 1.55; }


/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 218px;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 15, 13, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--full { grid-column: 1 / -1; }
.gallery-item--tall { grid-row: span 2; }


/* ---- Areas ---- */
.areas-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  color: var(--gold-bright);
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 3px;
  margin-bottom: 1.4rem;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.area-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.05rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease-spring);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.area-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 50%, var(--gold-soft) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.area-tile:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.area-tile:hover::before { opacity: 1; }
.area-tile-icon { color: var(--gold-bright); width: 16px; height: 16px; flex-shrink: 0; position: relative; z-index: 1; }
.area-tile-name {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.area-tile:hover .area-tile-name { color: var(--gold-bright); }


/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 2rem;
  align-items: start;
}
.contact-form-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-form-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-grad);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.1;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-label {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--text-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.form-input, .form-textarea, .form-select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.25s ease;
  width: 100%;
}
.form-select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23cba54a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 18px; padding-right: 2.6rem;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: var(--gold); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-faint); }
.form-error { color: #ef6a5f; font-size: 0.85rem; margin-top: 0.25rem; }
.form-submit { width: 100%; margin-top: 1rem; position: relative; }

.form-notice {
  font-family: var(--font-body);
  color: var(--text-faint);
  font-size: 0.78rem;
  text-align: center;
  margin: 1rem 0 0;
  line-height: 1.55;
}
.form-notice strong { color: var(--gold-bright); font-weight: 700; }
.form-notice .form-fineprint { display: inline-block; opacity: 0.78; font-size: 0.72rem; margin-top: 0.35rem; }
.form-notice a { color: var(--text-faint); text-decoration: underline; }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ALTCHA proof-of-work widget, themed to the dark form */
.form-altcha {
  display: block;
  margin: 0 0 1rem;
  --altcha-max-width: 100%;
  --altcha-border-width: 1px;
  --altcha-border-radius: var(--radius);
  --altcha-color-base: var(--bg-3);
  --altcha-color-border: var(--border);
  --altcha-color-border-focus: var(--gold);
  --altcha-color-text: var(--text-soft);
  --altcha-color-error-text: #ef6a5f;
}

.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success.is-visible { display: block; }
.form-success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.form-success-text { color: var(--text-soft); font-size: 0.95rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(203, 165, 74, 0.2), transparent 70%);
  pointer-events: none;
}
.offer-badge {
  display: inline-block;
  background: var(--gold);
  color: #14110a;
  padding: 0.5rem 1.1rem;
  border-radius: 3px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 1rem;
}
.contact-cta-title { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; margin: 1rem 0 0.5rem; letter-spacing: 0.01em; line-height: 1.12; }
.contact-cta-text { color: var(--text-soft); font-size: 0.92rem; line-height: 1.55; }
.contact-phone-btn { width: 100%; margin-top: 1.25rem; }
.contact-reasons-title { font-family: var(--font-ui); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; margin-bottom: 1rem; color: var(--gold-bright); letter-spacing: 0.16em; }
.contact-reasons { text-align: left; }
.contact-reasons li { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0; color: var(--text-soft); font-size: 0.92rem; }
.contact-reasons li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background-color: var(--gold-bright);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: contain; mask-size: contain;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.contact-detail svg { color: var(--gold-bright); flex-shrink: 0; width: 18px; height: 18px; }
.contact-detail:hover { color: var(--gold-bright); }

.form-input.is-invalid, .form-textarea.is-invalid, .form-select.is-invalid { border-color: #ef6a5f; }
.field-error { color: #ef6a5f; font-size: 0.8rem; margin-top: 0.25rem; }
.form-submit.is-loading .submit-text { visibility: hidden; }
.form-submit.is-loading .submit-spinner { display: block; }
.submit-spinner {
  display: none;
  position: absolute;
  top: 50%; left: 50%;
  margin-top: -10px; margin-left: -10px;
  width: 20px; height: 20px;
  border: 2px solid rgba(20, 17, 10, 0.3);
  border-top-color: #14110a;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* ---- Footer ---- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 3rem 0 2.5rem; position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), var(--gold), var(--gold-bright), var(--gold), var(--gold-deep), transparent);
  opacity: 0.85;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { height: 96px; width: auto; filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 1px rgba(243, 238, 227, 0.3)); }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-link {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gold-bright); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--text-soft); transition: color 0.2s ease, transform 0.2s ease; display: inline-flex; }
.footer-social a:hover { color: var(--gold-bright); transform: translateY(-2px); }
.footer-social svg { width: 22px; height: 22px; }
.footer-bottom { width: 100%; text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.footer-bottom p { color: var(--text-faint); font-size: 0.82rem; font-family: var(--font-body); letter-spacing: 0.02em; }


/* ---- Floating CTA (mobile) ---- */
.floating-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: rgba(16, 15, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-gold);
  z-index: 50;
  display: none;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--gold);
  color: #14110a;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 0.95rem;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  gap: 0.5rem;
}
.floating-cta--hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }


/* ---- Animations ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes titleReveal { from { transform: translateY(110%) skewY(3deg); opacity: 0; } to { transform: translateY(0) skewY(0); opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }

.animate-on-scroll { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.animate-on-scroll.revealed { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.4s; }
[data-delay="6"] { transition-delay: 0.48s; }
[data-delay="7"] { transition-delay: 0.56s; }
[data-delay="8"] { transition-delay: 0.64s; }


/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process-line { display: none; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trades-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-inner > .header-cta { display: none; }
  .mobile-menu .header-cta { display: inline-flex; margin-top: 1rem; }
  .nav-toggle { display: flex; }
  .header-inner { height: 100px; }
  .header--scrolled .header-inner { height: 68px; }
  .header-logo { height: 78px; }
  .header--scrolled .header-logo { transform: scale(0.667); }

  .hero { padding-top: clamp(7.5rem, 17vh, 10rem); padding-bottom: 96px; }
  .hero-trust-inner { gap: 0.7rem 1.2rem; }
  .hero-trust-item { font-size: 0.72rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-card-desc { max-height: 8rem; opacity: 1; margin-top: 0.6rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .floating-cta { display: block; }
  body { padding-bottom: 72px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .contact-form-panel { padding: 1.75rem 1.4rem; }
  .section-header { margin-bottom: 2rem; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery-item--tall { grid-row: span 1; }
  .trade-card { padding: 2rem 1.6rem; }
}

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