/* ============================================================
   Marietta Garage Door Pros — Global Stylesheet
   Primary: #1e2832 | Accent: #c0392b
   Fonts: DM Serif Display (headings) | Inter (body)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --primary:   #1e2832;
  --accent:    #c0392b;
  --accent-dk: #a93226;
  --light:     #f5f6f7;
  --mid:       #e8eaec;
  --text:      #2d3748;
  --muted:     #6b7280;
  --white:     #ffffff;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(0,0,0,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  line-height: 1.25;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dk); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ---------- Utility ---------- */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--accent);
}
.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}
.section-title { margin-bottom: 1rem; }
.section-intro { color: var(--muted); max-width: 640px; margin-bottom: 2.5rem; }

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

section { padding: 5rem 0; }
.bg-light { background: var(--light); }
.bg-dark  { background: var(--primary); color: var(--white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p, .bg-dark li { color: rgba(255,255,255,.82); }
.bg-dark .section-label { color: #e87b6f; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  padding: .45rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--white); }
.top-bar .icon { margin-right: .3rem; }

/* ---------- Navigation ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text { font-family: 'DM Serif Display', serif; font-size: 1.2rem; color: var(--primary); line-height: 1.2; }
.logo-text span { display: block; font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 500; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-links a {
  padding: .5rem .85rem;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: .92rem;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--light);
  color: var(--accent);
}
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--white);
  margin-left: .5rem;
  padding: .55rem 1.15rem;
}
.nav-links .nav-cta:hover {
  background: var(--accent-dk);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,40,50,.88) 0%,
    rgba(30,40,50,.72) 55%,
    rgba(30,40,50,.45) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  color: var(--white);
  padding: 2rem 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(192,57,43,.25);
  border: 1px solid rgba(192,57,43,.5);
  color: #f1a9a0;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero h1 em {
  color: #e87b6f;
  font-style: normal;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-phone {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.hero-phone:hover { color: #e87b6f; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* Hero variants (inner pages) */
.hero-inner {
  height: 420px;
  min-height: unset;
}
.hero-inner .hero-content { max-width: 760px; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--primary);
  padding: 1.4rem 0;
}
.trust-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}
.trust-item svg { width: 22px; height: 22px; fill: var(--accent); flex-shrink: 0; }

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 10px;
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card .icon {
  width: 52px;
  height: 52px;
  background: rgba(192,57,43,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card .icon svg { width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.2rem; }
.service-card p { color: var(--muted); font-size: .93rem; margin-bottom: 1rem; }
.service-card a { font-weight: 600; font-size: .9rem; }

/* ---------- Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}
.why-item { text-align: center; }
.why-item .icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(192,57,43,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.why-item svg { width: 30px; height: 30px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.why-item h4 { margin-bottom: .4rem; }
.why-item p { color: var(--muted); font-size: .9rem; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #922b21 100%);
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.88); margin-bottom: 2rem; font-size: 1.05rem; }
.cta-band .btn-outline { border-color: var(--white); color: var(--white); }
.cta-band .btn-outline:hover { background: var(--white); color: var(--accent); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Service Area ---------- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.area-tag {
  background: var(--light);
  border: 1px solid var(--mid);
  padding: .4rem 1rem;
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}
.bg-dark .area-tag {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--mid);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); stroke: var(--accent); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- Cost Guide ---------- */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: .95rem;
}
.cost-table th {
  background: var(--primary);
  color: var(--white);
  padding: .85rem 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .04em;
}
.cost-table td {
  padding: .85rem 1.2rem;
  border-bottom: 1px solid var(--mid);
  color: var(--text);
}
.cost-table tr:nth-child(even) td { background: var(--light); }
.cost-table tr:hover td { background: rgba(192,57,43,.05); }
.cost-note {
  font-size: .85rem;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin-bottom: 1.5rem;
}

/* ---------- Gallery Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(30,40,50,.85) 0%, transparent 100%);
  color: var(--white);
  padding: 1.5rem 1rem .85rem;
  font-size: .88rem;
  font-weight: 500;
  transform: translateY(0);
}

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(192,57,43,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail .icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-detail h4 { font-size: .95rem; margin-bottom: .2rem; }
.contact-detail p, .contact-detail a { font-size: .93rem; color: var(--muted); }

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-card h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  margin-bottom: .4rem;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--mid);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: .9rem; font-size: 1rem; margin-top: .5rem; }

/* ---------- Thank You Page ---------- */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.thankyou-box {
  max-width: 560px;
  padding: 3rem 2rem;
}
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(192,57,43,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thankyou-icon svg { width: 40px; height: 40px; stroke: var(--accent); fill: none; stroke-width: 2; }
.thankyou-box h1 { margin-bottom: 1rem; }
.thankyou-box p { color: var(--muted); margin-bottom: .75rem; }
.thankyou-box .phone-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin: 1rem 0 2rem;
}

/* ---------- Footer ---------- */
footer {
  background: var(--primary);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.55); }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-top: 1rem; color: rgba(255,255,255,.65); }
.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: 'Inter', sans-serif;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #e87b6f; }
.footer-contact-item {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  margin-bottom: .85rem;
  font-size: .88rem;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--accent); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: var(--light);
  padding: .75rem 0;
  font-size: .85rem;
  color: var(--muted);
}
.breadcrumb .container { display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ---------- Info Box / Tip ---------- */
.info-box {
  background: rgba(192,57,43,.06);
  border: 1px solid rgba(192,57,43,.2);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box p { margin-bottom: 0; font-size: .93rem; }

/* ---------- Checklist ---------- */
.checklist { margin: 1rem 0 1.5rem; }
.checklist li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .65rem;
  font-size: .95rem;
  color: var(--text);
}
.checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2 2 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ---------- Process Steps ---------- */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 1.5rem; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  counter-increment: step;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: .25rem; }
.step-content p { color: var(--muted); font-size: .93rem; margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 20px rgba(0,0,0,.12); padding: 1rem; gap: .25rem; z-index: 800; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1rem; border-radius: var(--radius); }
  .hamburger { display: flex; }
  header { position: relative; }
  nav { position: relative; }

  .hero { height: 220px !important; min-height: unset !important; overflow: hidden !important; }
  .hero-inner { height: 280px !important; }
  .hero-content { padding: 1rem 0; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: .92rem; margin-bottom: 1.25rem; }
  .hero-actions { gap: .65rem; }
  .btn-lg { padding: .75rem 1.5rem; font-size: .95rem; }
  .hero-scroll { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar .container { justify-content: center; gap: 1.25rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cost-table { font-size: .82rem; }
  .cost-table th, .cost-table td { padding: .65rem .75rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  section { padding: 3.5rem 0; }
}
