/* ============================================
   Dycon Industries — Shared Stylesheet
   ============================================ */

:root {
  --navy: #1B2E5C;
  --navy-dark: #131F40;
  --red: #C8242C;
  --red-dark: #A41D24;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-50: #F8F9FB;
  --gray-100: #F1F3F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --max-width: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo img { height: 72px; width: auto; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--gray-800);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--navy-dark); color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  margin: 5px 0;
}

/* ---------- Hero (home page) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,31,64,0.92) 0%, rgba(27,46,92,0.75) 50%, rgba(19,31,64,0.65) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 24px;
}
.hero h1 span { color: #FF8B91; }
.hero p {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 680px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Page Header (smaller hero for inner pages) ---------- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(200,36,44,0.18), transparent 55%);
}
.page-header .container { position: relative; z-index: 1; }
.page-header .section-eyebrow { color: #FF8B91; }
.page-header h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--white);
}
.page-header p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-dark); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ---------- Phone strip ---------- */
.phone-strip {
  background: var(--navy-dark);
  color: var(--white);
  padding: 18px 24px;
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}
.phone-strip a {
  color: var(--white);
  font-weight: 700;
  border-bottom: 2px solid var(--red);
  padding-bottom: 2px;
}

/* ---------- Section base ---------- */
section { padding: 96px 0; }
.section-eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 740px;
  margin-bottom: 20px;
}
.section-lead {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 720px;
  margin-bottom: 56px;
  line-height: 1.6;
}
.section-content p {
  margin-bottom: 16px;
  color: var(--gray-700);
  font-size: 17px;
  line-height: 1.7;
}
.section-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}

/* ---------- Two-column split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.split-image-tall {
  aspect-ratio: 3/4;
}

/* ---------- Products ---------- */
.products { background: var(--off-white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 4px 8px rgba(0,0,0,0.05);
}
.product-image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--gray-100);
}
.product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.product-card p { color: var(--gray-600); font-size: 15px; margin-bottom: 20px; flex: 1; }
.product-card ul { list-style: none; margin-bottom: 24px; }
.product-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--gray-800);
  padding-left: 22px;
  position: relative;
}
.product-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--red);
}
.product-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}
.product-link::after { content: '→'; transition: transform 0.15s; }
.product-card:hover .product-link::after { transform: translateX(4px); }

/* ---------- Custom Trim CTA ---------- */
.custom-trim { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.custom-trim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(200,36,44,0.15), transparent 50%);
}
.custom-trim .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.custom-trim .section-title { color: var(--white); margin-bottom: 16px; }
.custom-trim .section-eyebrow { color: #FF8B91; }
.custom-trim p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.custom-trim .tagline {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  font-style: italic;
  border-left: 4px solid var(--red);
  padding-left: 20px;
  margin-bottom: 32px;
  line-height: 1.3;
}
.trim-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
  margin-bottom: 36px;
  list-style: none;
}
.trim-list li {
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  padding-left: 22px;
  position: relative;
}
.trim-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.custom-trim-image {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* ---------- Why Us / Feature Cards ---------- */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.why-card:hover { border-color: var(--navy); box-shadow: 0 8px 24px rgba(27,46,92,0.08); }
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(200,36,44,0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 800;
}
.why-card h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { color: var(--gray-600); font-size: 15px; line-height: 1.6; }

/* ---------- Service area ---------- */
.service-area { background: var(--gray-50); text-align: center; }
.service-area .section-title,
.service-area .section-lead { margin-left: auto; margin-right: auto; }
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.city-pill {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  transition: all 0.15s;
}
.city-pill:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
}
.final-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Accordion (FAQ / Learning Hub) ---------- */
.accordion-section { background: var(--white); }
.accordion-group { max-width: 880px; margin: 0 auto; }
.accordion-category {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 48px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-200);
}
.accordion-category:first-child { margin-top: 0; }
.accordion {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.accordion[open] {
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(27,46,92,0.06);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gray-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.accordion[open] summary::after { transform: rotate(45deg); color: var(--red); }
.accordion-content {
  padding: 0 24px 22px;
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.7;
}
.accordion-content p { margin-bottom: 12px; }
.accordion-content ul {
  margin: 12px 0 12px 22px;
}
.accordion-content li { margin-bottom: 6px; }

/* ---------- Contact Layout ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
}
.info-row:last-child { border-bottom: none; }
.info-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
  width: 90px;
  flex-shrink: 0;
  padding-top: 4px;
}
.info-value {
  font-size: 16px;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.5;
}
.info-value a { color: var(--navy); border-bottom: 1px solid var(--navy); }
.info-value a:hover { color: var(--red); border-color: var(--red); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,46,92,0.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--red-dark); }
.form-required { color: var(--red); margin-left: 2px; }

/* ---------- Map embed ---------- */
.map-embed {
  margin-top: 32px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  aspect-ratio: 16/10;
  background: var(--gray-100);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Color Chart ---------- */
.color-chart-section { background: var(--white); }

.color-tier-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin: 32px 0 28px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
  position: relative;
}
.color-tier-title:first-of-type { margin-top: 0; }
.color-tier-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--red);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.swatch {
  width: 100%;
  height: 80px;
  border-radius: 60px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.swatch-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.color-disclaimer {
  text-align: center;
  font-size: 16px;
  color: var(--gray-700);
  margin-top: 32px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: 8px;
}
.color-disclaimer a {
  color: var(--red);
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}

@media (max-width: 1100px) {
  .color-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
  .color-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 540px) {
  .color-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .swatch { height: 64px; }
}

/* ---------- Gauge cards ---------- */
.gauge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gauge-card {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 32px 28px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gauge-card:hover { border-color: var(--navy); box-shadow: 0 12px 32px rgba(27,46,92,0.08); }
.gauge-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}
.gauge-number small {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-400);
  margin-left: 2px;
}
.gauge-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 8px 0 12px;
}
.gauge-card p { color: var(--gray-600); font-size: 14px; margin-bottom: 12px; line-height: 1.6; }
.gauge-card ul { list-style: none; margin-top: 14px; }
.gauge-card li {
  padding: 4px 0;
  font-size: 13px;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
}
.gauge-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 2px;
  background: var(--red);
}
.gauge-card-special {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.gauge-card-special .gauge-number,
.gauge-card-special h3 { color: var(--white); }
.gauge-card-special .gauge-number small { color: rgba(255,255,255,0.5); }
.gauge-card-special p { color: rgba(255,255,255,0.85); }
.gauge-card-special li { color: rgba(255,255,255,0.85); }

/* ---------- Gallery grid ---------- */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  justify-content: center;
}
.gallery-filter {
  background: var(--white);
  border: 1px solid var(--gray-300);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s;
}
.gallery-filter:hover { border-color: var(--navy); color: var(--navy); }
.gallery-filter.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.2s;
}
.gallery-item:hover::after { opacity: 1; }

/* ---------- Footer ---------- */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand img {
  height: 56px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 6px;
}
.footer-brand p { max-width: 320px; line-height: 1.6; }
footer h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { transition: color 0.15s; }
footer ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
  }
  .why-grid { grid-template-columns: 1fr; }
  .custom-trim .container { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .gauge-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { min-height: 70vh; }
  .page-header { padding: 64px 0 56px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trim-list { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .info-row { flex-direction: column; gap: 4px; }
  .info-label { width: auto; }
}
