@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,600&family=Inter+Tight:wght@400;450;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --primary:        #F1921D;
  --accent:         #FCC482;
  --canvas:         #FAF6EE;
  --surface:        #FFFFFF;
  --ink:            #1A1814;
  --muted:          #6B6660;
  --border:         rgba(26,24,20,0.12);
  --primary-dim:    rgba(241,146,29,0.15);
  --primary-dark:   #C97510;
  --shadow-card:    0 2px 16px -4px rgba(26,24,20,0.10);
  --shadow-float:   0 18px 40px -10px rgba(26,24,20,0.28);
  --radius:         8px;
  --radius-pill:    999px;
  --section-py:     clamp(72px, 9vh, 120px);
  --container:      1240px;
  --util-h:         44px;
  --nav-h:          68px;
}

/* ============================================================
   UNIVERSAL IMAGE CAP
   ============================================================ */
img { max-width: 100%; height: auto; display: block; }

section img:not(.hero-bg):not([class*="full-bleed"]):not([class*="fullbleed"]) {
  max-height: 640px;
  object-fit: cover;
}

.nav img, header img, .header img, .nav-logo img, .logo img {
  max-height: 64px !important;
  max-width: 220px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.footer img, footer img {
  max-height: 48px !important;
  max-width: 200px !important;
  width: auto !important;
  align-self: flex-start !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.hero { position: relative; overflow: hidden; }
.hero-bg, .hero > img:first-of-type {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-inner, .hero > :not(img):not(.hero-bg):not(.hero-overlay) {
  position: relative; z-index: 2;
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ============================================================
   HEADING ANCHOR RESET
   ============================================================ */
h1 a, h2 a, h3 a, .hero-title a, .hero-eyebrow a, .hero-sub a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 150ms;
}
a:hover { color: var(--primary); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

h1,h2,h3,h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
textarea { resize: vertical; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.wide-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.section-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

/* ============================================================
   SECTION EYEBROW  (brand-color square bullet)
   ============================================================ */
.section-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--primary);
  color: var(--surface);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  height: var(--util-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  z-index: 900;
}

.util-bar a { color: var(--surface); }
.util-bar a:hover { color: var(--canvas); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

.util-bar-left,
.util-bar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.util-divider {
  opacity: 0.35;
  font-size: 10px;
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 64px);
  position: sticky;
  top: var(--util-h);
  z-index: 800;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none !important;
}
.nav-logo:hover { text-decoration: none !important; color: inherit; }

#navLinks {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
#navLinks a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 150ms, background 150ms;
  text-decoration: none;
}
#navLinks a:hover {
  color: var(--primary);
  background: var(--primary-dim);
  text-decoration: none;
}

.nav-cta {
  background: var(--primary);
  color: var(--surface) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background 180ms, transform 150ms !important;
  text-decoration: none !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--surface) !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: background 150ms;
}
.nav-toggle:hover { background: var(--primary-dim); }
.nav-toggle svg { width: 22px; height: 22px; color: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background 180ms, color 180ms, border-color 180ms, transform 150ms, box-shadow 180ms;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: 0 4px 18px -6px rgba(241,146,29,0.45);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--surface);
  box-shadow: 0 8px 28px -6px rgba(241,146,29,0.55);
}

.btn-phone {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255,255,255,0.55);
}
.btn-phone:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  color: var(--surface);
}
.btn-phone svg { width: 18px; height: 18px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: clamp(520px, 82vh, 900px);
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(26,24,20,0.18) 0%,
    rgba(26,24,20,0.62) 55%,
    rgba(26,24,20,0.82) 100%
  );
}

.hero-inner {
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 64px) clamp(64px, 10vh, 112px);
  max-width: 680px;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--surface);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 450;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--surface);
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: rgba(241,146,29,0.12);
  backdrop-filter: blur(4px);
  white-space: nowrap;
}

/* ============================================================
   TRUST STRIP / MARQUEE
   ============================================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: none;
  border-bottom: none;
  max-height: 80px !important;
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.4vw, 18px) !important;
  line-height: 1.2 !important;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee-item::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.marquee-item.accent { color: var(--primary); }

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding-block: var(--section-py);
  background: var(--canvas);
}

.services-header {
  margin-bottom: 48px;
}
.services-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(26,24,20,0.18);
  text-decoration: none;
  color: var(--ink);
}

.service-card > img,
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  max-height: 180px !important;
}

/* Override section cap specifically for service card photos */
.services-grid .service-card img {
  max-height: 180px !important;
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.service-card-desc {
  font-size: 14px;
  font-weight: 450;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  margin-top: 10px;
  transition: transform 200ms;
}
.service-card-arrow svg { width: 20px; height: 20px; }
.service-card:hover .service-card-arrow { transform: translateX(4px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: var(--section-py);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.about-grid > div:first-child img {
  width: 100%;
  height: clamp(280px, 45vw, 520px);
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 520px !important;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.05;
  margin-bottom: 20px;
}

.about-divider {
  width: 48px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 20px;
  border-radius: 2px;
}

.about-content > p {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.72;
  color: var(--ink);
  max-width: 56ch;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.about-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  background: var(--primary-dim);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding-block: var(--section-py);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

.gallery-header {
  margin-bottom: 36px;
}
.gallery-header h2 {
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-feature {
  grid-column: 1 / -1;
}
.gallery-feature img {
  width: 100%;
  height: clamp(220px, 36vw, 480px);
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 480px !important;
}

.gallery-grid > div:not(.gallery-feature) img {
  width: 100%;
  height: clamp(150px, 22vw, 280px);
  object-fit: cover;
  border-radius: var(--radius);
  max-height: 280px !important;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.service-areas {
  padding-block: var(--section-py);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.service-areas .section-eyebrow { color: var(--accent); }
.service-areas .section-eyebrow::before { background: var(--primary); }

.service-areas-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.service-areas-inner > div:first-child h2 {
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--surface);
  margin-bottom: 12px;
}
.service-areas-inner > div:first-child > p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface);
  border: 1px solid rgba(241,146,29,0.55);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  background: rgba(241,146,29,0.08);
  transition: background 180ms, border-color 180ms;
}
.area-chip:hover {
  background: rgba(241,146,29,0.18);
  border-color: var(--primary);
  color: var(--surface);
  text-decoration: none;
}

.area-stat-col {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
}

.area-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.area-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.area-stat-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: var(--section-py);
  background: var(--canvas);
  border-top: 1px solid var(--border);
}

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

.contact-grid > div:first-child h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 28px;
  line-height: 1.08;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 450;
  transition: border-color 180ms, box-shadow 180ms;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(241,146,29,0.12);
}
.form-field textarea { min-height: 120px; }

.form-submit {
  background: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 180ms, transform 150ms, box-shadow 180ms;
  box-shadow: 0 4px 18px -6px rgba(241,146,29,0.45);
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px -6px rgba(241,146,29,0.55);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.contact-info-block {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.contact-info-block:last-child { border-bottom: none; }

.contact-info-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
}

.contact-phone-link {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--primary) !important;
  letter-spacing: -0.01em;
  text-decoration: none !important;
}
.contact-phone-link:hover {
  color: var(--primary-dark) !important;
  text-decoration: underline !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding-top: clamp(56px, 7vh, 96px);
}

.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 64px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-grid > div:first-child { grid-column: 1 / -1; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-top: 12px;
  max-width: 36ch;
}

.footer-col-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.footer-col ul:last-child { margin-bottom: 0; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 150ms;
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   ANIMATION UTILITIES
   ============================================================ */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-up    { transform: translateY(28px); }
.fade-left  { transform: translateX(-28px); }
.fade-right { transform: translateX(28px); }
.scale-in   { transform: scale(0.95); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.stagger.visible > *:nth-child(1)  { transition-delay: 0.04s; }
.stagger.visible > *:nth-child(2)  { transition-delay: 0.10s; }
.stagger.visible > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4)  { transition-delay: 0.22s; }
.stagger.visible > *:nth-child(5)  { transition-delay: 0.28s; }
.stagger.visible > *:nth-child(6)  { transition-delay: 0.34s; }
.stagger.visible > *:nth-child(7)  { transition-delay: 0.40s; }
.stagger.visible > *:nth-child(8)  { transition-delay: 0.46s; }
.stagger.visible > * {
  opacity: 1;
  transform: none;
}

/* ============================================================
   MOBILE CALL PILL
   ============================================================ */
.mobile-call-pill {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 999;
  background: var(--primary);
  color: var(--surface);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.45);
  text-decoration: none !important;
  transition: background 180ms, transform 150ms;
}
.mobile-call-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-call-pill:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--surface);
  text-decoration: none !important;
}

/* ============================================================
   ACCENT UTILITY
   ============================================================ */
.accent { color: var(--primary); }

/* ============================================================
   FAQ (if needed)
   ============================================================ */
details.faq { border-bottom: 1px solid var(--border); padding: 18px 0; }
details.faq > summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after { content: "+"; font-weight: 300; transition: transform 200ms; }
details.faq[open] > summary::after { transform: rotate(45deg); color: var(--primary); }
details.faq p { margin-top: 12px; line-height: 1.6; }

/* ============================================================
   TABLET — 640px+
   ============================================================ */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-feature {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* ============================================================
   MEDIUM — 900px+
   ============================================================ */
@media (min-width: 900px) {
  .nav-toggle { display: none; }

  #navLinks {
    display: flex !important;
  }

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

  .about-grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: center;
  }

  .service-areas-inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
  .footer-grid > div:first-child { grid-column: auto; }

  .mobile-call-pill { display: none; }
}

/* ============================================================
   LARGE — 1200px+
   ============================================================ */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .gallery-feature { grid-column: 1 / 3; }
  .gallery-feature img {
    height: clamp(300px, 30vw, 460px);
  }
}


/* === Validator patches (auto-applied) === */
/* validator patch: grid children without placement → span full row */
.fade-up { grid-column: 1 / -1; }
.form-field { grid-column: 1 / -1; }
.footer-col { grid-column: 1 / -1; }
