:root {
  /* Logo-matched palette: saw-blade black, flag red, flag navy, off-white */
  --black: #111114;
  --black-2: #1a1a1f;
  --black-3: #24242b;
  --navy: #1a2747;          /* flag navy */
  --navy-deep: #0f1a36;
  --red: #c8262b;           /* flag red */
  --red-deep: #971b1f;
  --cream: #f3efe7;         /* off-white paper, like banner highlights */
  --paper: #faf7f1;
  --stone: #e2ddd2;
  --text: #14141a;
  --text-muted: #545862;
  --text-on-dark: #f3efe7;
  --text-on-dark-muted: rgba(243, 239, 231, 0.72);
  --border: rgba(17, 17, 20, 0.12);
  --border-on-dark: rgba(243, 239, 231, 0.14);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.14);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.28);

  --font-display: 'Anton', 'Oswald', 'Arial Narrow', sans-serif;
  --font-sub: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 14px;
  --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Saw-tooth pattern using conic gradient on a tile */
  --sawtooth-h: 14px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400; /* Anton has only one weight */
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
h3, h4 { font-family: var(--font-sub); font-weight: 600; letter-spacing: 0.02em; }

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

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--red);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.25rem;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 2px;
  background: var(--red);
}
.eyebrow.light { color: #ff6b6b; }
.eyebrow.light::before { background: #ff6b6b; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(13, 27, 42, 0.0);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(17, 17, 20, 0.97);
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 38, 43, 0.4);
}

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.brand img {
  height: 56px;
  width: auto;
  border-radius: var(--radius-sm);
}

.site-nav { display: flex; gap: 2rem; }
.nav-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-on-dark);
  position: relative;
  padding: 0.25rem 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.phone-link {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 0.95rem;
}
.phone-link:hover { color: #fff; }

/* ---------- Buttons ---------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.cta-button:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(193, 39, 45, 0.32);
}
.cta-button.large { padding: 1rem 2rem; font-size: 0.95rem; }
.cta-button.block { width: 100%; }

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.ghost-button.large { padding: 1rem 2rem; font-size: 0.95rem; }
.ghost-button.light { color: #fff; border-color: rgba(255,255,255,0.7); }
.ghost-button:hover {
  background: var(--black);
  color: #fff;
}
.ghost-button.light:hover { background: #fff; color: var(--black); border-color: #fff; }

.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: var(--transition); }

/* ---------- Hero ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
  padding: 9rem 1.5rem 6rem;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/hero-project.jpg') center/cover no-repeat;
  transform: scale(1.05);
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(17,17,20,0.94) 0%, rgba(17,17,20,0.78) 45%, rgba(17,17,20,0.45) 100%),
    linear-gradient(to bottom, rgba(17,17,20,0) 55%, rgba(17,17,20,0.92) 100%);
  z-index: -1;
}
/* Flag-stripe accent at the bottom of the hero */
.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: linear-gradient(to right,
    var(--red) 0 33.33%,
    #f3efe7 33.33% 66.66%,
    var(--navy) 66.66% 100%);
  z-index: 0;
}

.hero-content { max-width: 760px; margin-left: max(2rem, calc((100vw - 1320px) / 2 + 1.5rem)); }
.hero-tag {
  display: inline-block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  color: #fff;
  margin-bottom: 1.75rem;
}
.hero-section h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-section h1 .stripe {
  display: inline-block;
  position: relative;
  padding: 0 0.15em;
  color: #fff;
}
.hero-section h1 .stripe::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--red);
  z-index: -1;
}
.hero-sub {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: var(--text-on-dark-muted);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-actions .ghost-button { color: #fff; border-color: rgba(255,255,255,0.7); }
.hero-actions .ghost-button:hover { background: #fff; color: var(--black); border-color: #fff; }

.hero-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem 2.5rem;
  max-width: 640px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats li { display: flex; flex-direction: column; gap: 0.25rem; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Section header ---------- */
.section-header {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header h2 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  color: var(--black);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}
.services-section .section-header h2,
.services-section .section-header p,
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.services-section .section-header p { color: var(--text-on-dark-muted); }

/* ---------- Work section ---------- */
.work-section {
  padding: 7rem 1.5rem;
  max-width: 1320px;
  margin: 0 auto;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}
.work-card {
  grid-column: span 6;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.work-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(to right,
    var(--red) 0 33.33%,
    var(--cream) 33.33% 66.66%,
    var(--navy) 66.66% 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.work-card:hover::after { opacity: 1; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-card.feature { grid-column: span 12; }
.work-card.feature .work-img { aspect-ratio: 21 / 9; }

.work-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--stone); }
.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2,0.8,0.2,1);
}
.work-card:hover .work-img img { transform: scale(1.04); }

.work-body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.work-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 500;
}
.work-body h3 { font-size: 1.5rem; color: var(--black); }
.work-body p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Services ---------- */
.services-section {
  padding: 8rem 1.5rem;
  background:
    linear-gradient(180deg, rgba(17,17,20,0.95) 0%, rgba(17,17,20,0.98) 100%),
    url('/assets/projects/foundation-trench.jpg') center/cover no-repeat fixed;
  color: var(--text-on-dark);
  position: relative;
}
/* Saw-tooth top edge — echoes the logo's blade */
.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sawtooth-h);
  background:
    linear-gradient(-45deg, var(--black) 25%, transparent 25%) 0 0 / calc(var(--sawtooth-h) * 2) var(--sawtooth-h) repeat-x,
    linear-gradient(45deg, var(--black) 25%, transparent 25%) 0 0 / calc(var(--sawtooth-h) * 2) var(--sawtooth-h) repeat-x,
    var(--cream);
  transform: translateY(-100%);
  pointer-events: none;
}
.service-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--red);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-3px);
  border-color: rgba(244,241,236,0.28);
}
.service-card:hover::before { transform: scaleY(1); transform-origin: top; }

.service-num {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: 0.75rem; color: #fff; }
.service-card p { color: var(--text-on-dark-muted); font-size: 0.98rem; }

/* ---------- About ---------- */
.about-section {
  padding: 7rem 1.5rem;
  background: var(--cream);
}
.about-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--red);
  border-right: 3px solid var(--navy);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}
.about-badge strong { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.04em; }
.about-badge strong { display: block; font-size: 1.1rem; }
.about-badge span { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-on-dark-muted); margin-top: 0.2rem; }

.about-content h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--black); margin-bottom: 1.25rem; }
.about-lead { font-size: 1.1rem; color: var(--text); margin-bottom: 2rem; line-height: 1.65; }
.about-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.about-points li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-muted);
  line-height: 1.55;
}
.about-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.85rem;
  height: 2px;
  background: var(--red);
}
.about-points strong { display: block; color: var(--black); margin-bottom: 0.15rem; font-weight: 600; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 5rem 1.5rem;
  background: var(--red);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 24px, rgba(0,0,0,0.05) 24px 26px);
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
  position: relative;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-banner-actions .cta-button {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.cta-banner-actions .cta-button:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 7rem 1.5rem;
  background: var(--black);
  color: var(--text-on-dark);
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--red) 0 33.33%,
    #f3efe7 33.33% 66.66%,
    var(--navy) 66.66% 100%);
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info {
  padding: 3.5rem;
  background: var(--black);
  color: var(--text-on-dark);
  position: relative;
}
.contact-info::after {
  content: '';
  position: absolute;
  left: 0;
  top: 3.5rem;
  bottom: 3.5rem;
  width: 3px;
  background: var(--red);
}
.contact-info h2 { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-on-dark-muted); margin-bottom: 2.5rem; }
.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-details li { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-details .label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: #ff6b6b;
}
.contact-details .value { font-size: 1.05rem; color: #fff; }
.contact-details a.value:hover { color: #ff6b6b; }

.contact-form {
  padding: 3.5rem;
  background: #fff;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form h3 { font-size: 1.75rem; color: var(--black); margin-bottom: 0.5rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.85rem; }
.contact-form label > span {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--black);
  font-size: 0.72rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: #fafaf8;
  color: var(--text);
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(193, 39, 45, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-fine { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.25rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: var(--text-on-dark); padding: 5rem 1.5rem 0; position: relative; }
.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(to right,
    var(--red) 0 33.33%,
    #f3efe7 33.33% 66.66%,
    var(--navy) 66.66% 100%);
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-on-dark);
}
.footer-brand img { height: 56px; border-radius: var(--radius-sm); margin-bottom: 1.25rem; }
.footer-brand p { color: var(--text-on-dark-muted); max-width: 380px; font-size: 0.95rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  color: #ff6b6b;
  font-family: var(--font-display);
  font-weight: 500;
}
.footer-col a, .footer-col span { color: var(--text-on-dark); font-size: 0.95rem; }
.footer-col a:hover { color: #ff6b6b; }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-on-dark-muted);
  font-size: 0.85rem;
}
.footer-stripe {
  flex: 1;
  max-width: 200px;
  height: 4px;
  background: linear-gradient(to right, var(--red) 0 33%, #f3efe7 33% 66%, var(--navy) 66% 100%);
  border-radius: 2px;
}

/* ---------- Scroll to top ---------- */
#scrollToTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 8px 18px rgba(193, 39, 45, 0.4);
}
#scrollToTop.visible { opacity: 1; visibility: visible; }
#scrollToTop:hover { background: var(--red-deep); transform: translateY(-3px); }
#scrollToTop svg { width: 22px; height: 22px; }

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.2,0.8,0.2,1), transform 700ms cubic-bezier(0.2,0.8,0.2,1);
  will-change: opacity, transform;
}
[data-reveal="fade-up"] { transform: translateY(28px); }
[data-reveal="fade-left"] { transform: translateX(28px); }
[data-reveal="fade-right"] { transform: translateX(-28px); }
[data-reveal].revealed { opacity: 1; transform: translate(0,0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .work-card, .work-card.feature { grid-column: span 12; }
  .about-container { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { aspect-ratio: 16/10; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-info::after { display: none; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .hero-content { margin-left: 1.5rem; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1rem;
    border-top: 1px solid var(--border-on-dark);
  }
  .phone-link { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-section { padding: 7rem 1.25rem 4rem; min-height: auto; }
  .hero-section h1 { font-size: 2.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .cta-button, .hero-actions .ghost-button { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form { padding: 2rem; }
  .work-body { padding: 1.25rem; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-section, .work-section, .about-section, .contact-section { padding: 5rem 1.25rem; }
  .section-header { margin-bottom: 3rem; }
}
