/* ============================================================
   DECK RESTORATION GOLD COAST — DESIGN SYSTEM
   Warm, natural, trustworthy — timber tones + cream + charcoal
   ============================================================ */

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

:root {
  /* Palette — warm & earthy, high trust */
  --cream: #F7F2EA;
  --cream-warm: #F0E8DA;
  --timber: #8B5E34;
  --timber-dark: #6B4423;
  --timber-light: #A67B4E;
  --charcoal: #2B2620;
  --charcoal-soft: #4A4238;
  --text: #3A322B;
  --text-mute: #6B6259;
  --white: #FFFFFF;
  --off-white: #FDFBF7;
  --border: #E5DDD0;
  --success: #4A7C4E;
  --gold: #C8A464;

  /* Typography */
  --serif: 'Lora', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 2rem;
  --gap-lg: 3rem;
  --gap-xl: 5rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(43, 38, 32, 0.06);
  --shadow-md: 0 4px 16px rgba(43, 38, 32, 0.10);
  --shadow-lg: 0 8px 32px rgba(43, 38, 32, 0.14);
}

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

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--timber-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--timber); }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--charcoal); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.3px; margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--charcoal); }

/* ============================================================
   SKIP LINK (Accessibility)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 100;
  text-decoration: none;
}
.skip-link:focus { top: 0; color: var(--white); }

/* ============================================================
   HEADER + NAVIGATION
   ============================================================ */
header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--timber);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.header-nav a:hover, .header-nav a.active {
  color: var(--timber-dark);
  border-bottom-color: var(--timber);
}

.header-phone {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--timber-dark);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-cta {
  background: var(--timber);
  color: var(--white) !important;
  padding: 0.65rem 1.25rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.875rem;
  border: none !important;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--timber-dark); color: var(--white) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--charcoal);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 48px;
}

.btn-primary {
  background: var(--timber);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--timber-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal) !important;
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-large {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 100%);
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--timber-dark);
  font-weight: 500;
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-mute);
}

.hero-trust-item strong {
  color: var(--charcoal);
  font-weight: 600;
}

.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent, rgba(43, 38, 32, 0.85));
  color: var(--white);
  padding: 2rem 1.5rem 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}

/* ============================================================
   TRUST STRIP (below hero)
   ============================================================ */
.trust-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: 2rem 1.5rem;
}

.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.trust-item span {
  color: rgba(247, 242, 234, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-mute);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-alt { background: var(--cream); }
.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(247, 242, 234, 0.85); }
.section-dark .section-eyebrow { color: var(--gold); }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  border-color: var(--timber-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--timber);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card .price-tag {
  display: inline-block;
  background: var(--cream-warm);
  color: var(--timber-dark);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 1.5rem;
  background: var(--timber);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.process-step h3 {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.process-step p {
  color: var(--text-mute);
  font-size: 0.95rem;
}

/* ============================================================
   BEFORE/AFTER GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

.gallery-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.03);
}

.gallery-body {
  padding: 1.5rem;
}

.gallery-suburb {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 0.5rem;
}

.gallery-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.gallery-body p {
  font-size: 0.9rem;
  color: var(--text-mute);
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--off-white);
  border-left: 3px solid var(--timber);
  padding: 2rem 1.75rem;
  border-radius: 4px;
}

.testimonial-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 2px;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote-section {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.quote-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.quote-info h2 {
  margin-bottom: 1rem;
}

.quote-info-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.quote-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.quote-info-list li:last-child { border-bottom: none; }

.quote-info-list li::before {
  content: '✓';
  color: var(--timber);
  font-weight: 700;
  flex-shrink: 0;
  width: 20px;
}

.quote-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.quote-form h3 {
  margin-bottom: 0.5rem;
}

.quote-form-sub {
  color: var(--text-mute);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-group input, .form-group select, .form-group textarea {
  padding: 0.875rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  min-height: 48px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--timber);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 96px;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--timber);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
  min-height: 52px;
}

.form-submit:hover {
  background: var(--timber-dark);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-success {
  display: none;
  background: #EAF4EB;
  border-left: 3px solid var(--success);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  margin-top: 1rem;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--timber-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--timber);
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-band h2 {
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(247, 242, 234, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

.cta-band .btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream) !important;
}

.cta-band .btn-secondary:hover {
  background: var(--cream);
  color: var(--charcoal);
}

/* ============================================================
   SUBURB GRID
   ============================================================ */
.suburb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.suburb-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.95rem;
  font-weight: 500;
}

.suburb-item:hover {
  border-color: var(--timber);
  background: var(--cream);
  color: var(--timber-dark);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-mute);
}

.breadcrumbs a { color: var(--text-mute); }
.breadcrumbs a:hover { color: var(--timber-dark); }
.breadcrumbs .sep { margin: 0 0.5rem; color: var(--border); }
.breadcrumbs .current { color: var(--charcoal); font-weight: 500; }

/* ============================================================
   ARTICLE (Blog / Suburb Pages)
   ============================================================ */
.article-hero {
  background: var(--cream);
  padding: 3rem 1.5rem 2rem;
}

.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--text-mute);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.article-hero h1 {
  margin-bottom: 1rem;
}

.article-lede {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.article h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.article h2:first-child { margin-top: 0; }

.article h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article p, .article ul, .article ol { margin-bottom: 1.25rem; }

.article ul, .article ol {
  padding-left: 1.5rem;
}

.article li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article blockquote {
  border-left: 3px solid var(--timber);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--charcoal);
}

.article-toc {
  background: var(--cream);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}

.article-toc h4 {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.article-toc ol {
  padding-left: 1.25rem;
  margin: 0;
  columns: 2;
}

.article-toc li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.article-toc a {
  color: var(--charcoal);
}

.article-toc a:hover { color: var(--timber-dark); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.pricing-table th, .pricing-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table th {
  background: var(--cream);
  font-weight: 600;
  color: var(--charcoal);
  font-family: var(--sans);
}

.pricing-table tr:nth-child(even) td {
  background: var(--off-white);
}

/* ============================================================
   AUTHOR BIO
   ============================================================ */
.author-bio {
  background: var(--cream);
  border-radius: 6px;
  padding: 2rem;
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-bio-content {
  flex: 1;
}

.author-bio-content h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.author-bio-content .author-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.author-bio-content p {
  color: var(--text-mute);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col p {
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  color: rgba(247, 242, 234, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-mark {
  background: var(--timber);
}

.footer-brand-text {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact p { margin-bottom: 0.5rem; }

.footer-contact a {
  color: var(--gold);
  font-weight: 600;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.5);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image { max-height: 400px; }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .quote-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .article-toc ol { columns: 1; }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
  }

  .header-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
  }

  .header-nav.open { display: flex; }

  .header-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .header-nav a:last-child { border-bottom: none; }

  .header-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .mobile-toggle { display: block; }

  .brand-name { font-size: 0.95rem; }
  .brand-tag { font-size: 0.65rem; }

  .header-phone { font-size: 0.85rem; }

  .hero { padding: 2.5rem 1rem; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .quote-form { padding: 1.75rem 1.5rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-band .hero-actions { flex-direction: column; }
  .cta-band .hero-actions .btn { width: 100%; }

  section { padding: 2.5rem 1rem; }
  .quote-section { padding: 2.5rem 1rem; }
}

@media (max-width: 480px) {
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-item strong { font-size: 1.5rem; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.6rem; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  header, footer, .hero-actions, .quote-section, .cta-band { display: none; }
  body { color: #000; background: #fff; }
}
