﻿/* ===================================================
   Hearthrow Properties — Shared Stylesheet
   Colours: Navy #1B2A3A · Terra #BD6B4D · Sage #8AA399 · Cream #F6F1E7
   Fonts: Fraunces (serif) · Inter (sans)
=================================================== */

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

/* ===== VARIABLES ===== */
:root {
  --navy:       #1B2A3A;
  --terra:      #BD6B4D;
  --sage:       #8AA399;
  --cream:      #F6F1E7;
  --cream-edge: #E4DDCE;
  --ink:        #2A2A28;
  --muted:      #7A7468;
  --serif: 'Fraunces', Georgia, serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1100px;
  --radius: 12px;
  --radius-sm: 6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== UTILITIES ===== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; color: var(--terra); margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 4vw, 42px); line-height: 1.2; }
.section-lead { font-size: 17px; color: var(--muted); max-width: 640px; margin-top: 12px; line-height: 1.65; }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--terra); color: #fff;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: opacity 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.87; color: #fff; }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600;
  border: 2px solid rgba(246,241,231,0.35); cursor: pointer;
  transition: border-color 0.2s; display: inline-block;
}
.btn-outline:hover { border-color: var(--cream); color: var(--cream); }
.btn-white {
  background: #fff; color: var(--terra);
  padding: 14px 32px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 700; display: inline-block;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.9; color: var(--terra); }

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--navy); position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 68px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  color: rgba(246,241,231,0.7); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { color: var(--sage); font-size: 14px; font-weight: 600; }
.nav-phone:hover { color: var(--cream); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }
.nav-mobile {
  display: none; background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px 24px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; color: rgba(246,241,231,0.75); font-size: 16px; font-weight: 500;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a.btn-primary { margin-top: 16px; text-align: center; border-bottom: none; }

/* ===== HERO (homepage) ===== */
.hero {
  background: var(--navy);
  background-image: linear-gradient(rgba(27,42,58,0.80), rgba(27,42,58,0.80)), url('https://images.unsplash.com/photo-1675309828956-adc943392bdc?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  padding: 96px 24px 108px;
  text-align: center;
}
.hero h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 5.5vw, 64px); color: var(--cream);
  line-height: 1.13; max-width: 840px; margin: 0 auto 20px;
}
.hero h1 em { font-style: normal; color: var(--terra); }
.hero > .wrap > p {
  font-size: 18px; color: rgba(246,241,231,0.68);
  max-width: 560px; margin: 0 auto 48px; line-height: 1.65;
}

/* ===== LEAD FORM ===== */
.lead-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius); padding: 32px;
  max-width: 600px; margin: 0 auto; text-align: left;
}
.lead-form h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: var(--cream); margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700;
  color: rgba(246,241,231,0.5); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  color: var(--cream); font-size: 15px; font-family: var(--sans);
  outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(246,241,231,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23F6F1E7' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-group select option { background: var(--navy); color: var(--cream); }
.form-submit { width: 100%; padding: 15px; font-size: 16px; margin-top: 4px; border-radius: var(--radius-sm); }
.form-note { font-size: 12.5px; color: rgba(246,241,231,0.38); text-align: center; margin-top: 12px; }
.form-success { text-align: center; padding: 28px 16px; display: none; }
.form-success p { color: var(--sage); font-size: 17px; font-weight: 500; line-height: 1.55; }

/* Light form variant (cream/white background pages) */
.lead-form.light {
  background: #fff; border-color: var(--cream-edge);
}
.lead-form.light h3 { color: var(--navy); }
.lead-form.light .form-group label { color: var(--muted); }
.lead-form.light .form-group input,
.lead-form.light .form-group select,
.lead-form.light .form-group textarea {
  background: var(--cream); border-color: var(--cream-edge);
  color: var(--ink);
}
.lead-form.light .form-group input::placeholder { color: var(--muted); }
.lead-form.light .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7468' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.lead-form.light .form-group select option { background: #fff; color: var(--ink); }
.lead-form.light .form-note { color: var(--muted); }
.lead-form.light .form-success p { color: var(--terra); }

/* Checkbox options (buyers form) */
.checkbox-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.checkbox-option { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-option input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--terra); cursor: pointer; flex-shrink: 0; }
.checkbox-option span { font-size: 14px; font-weight: 500; color: var(--ink); }

/* ===== TRUST BAND ===== */
.trust-band { background: var(--terra); padding: 14px 24px; }
.trust-band-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; align-items: center;
  gap: 36px; flex-wrap: wrap;
}
.trust-band-inner span { color: #fff; font-size: 14px; font-weight: 600; white-space: nowrap; }
.trust-check { color: rgba(255,255,255,0.6); margin-right: 6px; }

/* ===== PHOTO STRIP ===== */
.photo-strip { background: #0d1822; line-height: 0; }
.photo-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.photo-strip figure { position: relative; overflow: hidden; height: 290px; margin: 0; }
.photo-strip figure img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.photo-strip figure:hover img { transform: scale(1.04); }
.photo-strip figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 16px 14px;
  background: linear-gradient(transparent, rgba(13,24,34,0.8));
  color: rgba(246,241,231,0.82); font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; line-height: 1;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--cream); padding: 92px 24px; }

/* Deal / handshake image inside how-it-works section (homepage) */
.deal-image-wrap { margin-top: 48px; border-radius: var(--radius); overflow: hidden; }
.deal-image-wrap img { width: 100%; height: 340px; object-fit: cover; object-position: center 30%; display: block; }

/* Deal photo section (full-bleed, how-it-works page) */
.deal-photo-section { position: relative; line-height: 0; }
.deal-photo-section img { width: 100%; height: 400px; object-fit: cover; object-position: center 25%; display: block; }
.deal-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(27,42,58,0.74));
  padding: 52px 24px 28px; text-align: center;
}
.deal-caption p {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--cream); max-width: 560px; margin: 0 auto; line-height: 1.5;
}
.how-section .section-title { color: var(--navy); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.step-card {
  background: #fff; border: 1px solid var(--cream-edge);
  border-radius: var(--radius); padding: 36px 28px;
}
.step-num {
  font-family: var(--serif); font-size: 60px; font-weight: 700;
  color: var(--terra); line-height: 1; margin-bottom: 16px; opacity: 0.85;
}
.step-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.step-desc { font-size: 15.5px; color: var(--muted); line-height: 1.68; }

/* ===== COMPARISON TABLE ===== */
.comparison-section { background: #fff; padding: 92px 24px; }
.comparison-section .section-title { color: var(--navy); }
.comparison-table {
  width: 100%; border-collapse: collapse; margin-top: 44px;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--cream-edge);
}
.comparison-table th { padding: 18px 22px; text-align: left; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.comparison-table th:first-child { background: var(--cream); color: var(--muted); width: 36%; }
.comparison-table th:nth-child(2) { background: #efefef; color: var(--muted); }
.comparison-table th:last-child { background: var(--navy); color: var(--cream); }
.comparison-table td { padding: 16px 22px; font-size: 15px; border-bottom: 1px solid var(--cream-edge); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table td:first-child { color: var(--ink); font-weight: 500; }
.comparison-table td:nth-child(2) { color: var(--muted); background: #fafafa; }
.comparison-table td:last-child { color: var(--navy); font-weight: 600; background: rgba(138,163,153,0.07); }
.badge-good { color: #2D7A4F; font-weight: 700; }
.badge-bad { color: #A33A2A; }

/* ===== SITUATIONS ===== */
.situations-section { background: var(--sage); padding: 92px 24px; }
.situations-section .eyebrow,
.situations-section .section-title { color: #fff; }
.situations-section .section-lead { color: rgba(255,255,255,0.82); }
.situations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.situation-card {
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
  border-top: 3px solid rgba(189,107,77,0.65);
  border-radius: var(--radius); padding: 26px 24px;
}
.situation-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.situation-desc { font-size: 14px; color: rgba(255,255,255,0.83); line-height: 1.6; }

/* ===== COVERAGE ===== */
.coverage-section { background: var(--navy); padding: 88px 24px; }
.coverage-section .eyebrow { color: var(--sage); }
.coverage-section .section-title { color: var(--cream); }
.coverage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.coverage-col h4 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--terra); margin-bottom: 16px; }
.coverage-col ul { list-style: none; }
.coverage-col li { color: rgba(246,241,231,0.68); font-size: 15px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.coverage-col li:last-child { border-bottom: none; }
.coverage-note { text-align: center; color: rgba(246,241,231,0.38); font-size: 13.5px; margin-top: 36px; font-style: italic; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); padding: 92px 24px; }
.contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.contact-left .section-title { color: var(--navy); }
.contact-left > p { font-size: 16px; color: var(--muted); margin-top: 16px; line-height: 1.7; }
.contact-details { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 46px; height: 46px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-text p { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.contact-text a { font-size: 16px; font-weight: 600; color: var(--navy); transition: color 0.2s; }
.contact-text a:hover { color: var(--terra); }

/* ===== CTA BANNER ===== */
.cta-banner { background: var(--terra); padding: 80px 24px; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 600; color: #fff; margin-bottom: 14px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); padding: 60px 24px 32px; }
.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 68px; margin-bottom: 16px; }
.footer-tagline { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--sage); margin-bottom: 12px; }
.footer-brand > p { font-size: 13.5px; color: rgba(246,241,231,0.45); line-height: 1.68; max-width: 270px; }
.footer-col h4 { font-size: 10.5px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: var(--terra); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: rgba(246,241,231,0.58); transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-col span { font-size: 14px; color: rgba(246,241,231,0.45); }
.footer-bottom {
  max-width: var(--max-w); margin: 24px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; color: rgba(246,241,231,0.28);
}
.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: rgba(246,241,231,0.35); transition: color 0.2s; text-decoration: none; display: flex; align-items: center; }
.footer-social a:hover { color: var(--sage); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: var(--navy); padding: 72px 24px 80px; text-align: center; }
.page-hero .eyebrow { color: var(--sage); margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(30px, 5vw, 54px); font-weight: 600;
  color: var(--cream); line-height: 1.17; max-width: 720px; margin: 0 auto 16px;
}
.page-hero h1 em { font-style: normal; color: var(--terra); }
.page-hero p { font-size: 17px; color: rgba(246,241,231,0.65); max-width: 560px; margin: 0 auto; line-height: 1.65; }

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 80px 24px; }
.content-section.bg-cream { background: var(--cream); }
.content-section.bg-white { background: #fff; }
.content-section.bg-navy { background: var(--navy); color: var(--cream); }
.content-section.bg-sage { background: var(--sage); }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 760px; margin: 44px auto 0; }
.faq-item {
  background: #fff; border: 1px solid var(--cream-edge);
  border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 22px 24px; font-family: var(--serif); font-size: 18px;
  font-weight: 600; color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { font-size: 22px; color: var(--terra); transition: transform 0.3s; flex-shrink: 0; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 22px; font-size: 15.5px; color: var(--muted); line-height: 1.72; }
.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { max-height: 500px; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.blog-card {
  background: #fff; border: 1px solid var(--cream-edge);
  border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow 0.2s;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(27,42,58,0.1); }
.blog-card-body { padding: 26px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag-pill {
  display: inline-block; font-size: 10.5px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700; color: var(--terra); margin-bottom: 12px;
}
.blog-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 12px; }
.blog-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; flex: 1; }
.blog-card-footer {
  padding: 14px 24px; border-top: 1px solid var(--cream-edge);
  display: flex; justify-content: space-between; align-items: center;
}
.blog-date { font-size: 12px; color: var(--muted); }
.blog-read { font-size: 13px; font-weight: 700; color: var(--terra); }

/* Blog article layout */
.article-header { background: var(--navy); padding: 70px 24px; text-align: center; }
.article-header .blog-tag-pill { color: var(--sage); }
.article-header h1 {
  font-family: var(--serif); font-size: clamp(26px, 4.5vw, 48px); font-weight: 600;
  color: var(--cream); max-width: 800px; margin: 12px auto 16px; line-height: 1.2;
}
.article-meta { font-size: 13px; color: rgba(246,241,231,0.4); }
.article-body { max-width: 720px; margin: 0 auto; padding: 64px 24px 88px; }
.article-body h2 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--navy); margin: 44px 0 14px; line-height: 1.25; }
.article-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--navy); margin: 32px 0 10px; }
.article-body p { font-size: 17px; color: var(--ink); line-height: 1.78; margin-bottom: 22px; }
.article-body ul, .article-body ol { padding-left: 22px; margin-bottom: 22px; }
.article-body li { font-size: 16.5px; color: var(--ink); line-height: 1.72; margin-bottom: 8px; }
.article-cta {
  background: var(--cream); border: 1px solid var(--cream-edge);
  border-radius: var(--radius); padding: 36px; margin-top: 52px; text-align: center;
}
.article-cta h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.article-cta p { font-size: 15.5px; color: var(--muted); margin-bottom: 22px; }
.article-cta .btn-primary { padding: 14px 28px; font-size: 15px; }

/* ===== ABOUT PAGE ===== */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 44px; }
.value-card { background: #fff; border: 1px solid var(--cream-edge); border-left: 3px solid var(--terra); border-radius: var(--radius); padding: 28px 26px; }
.value-title { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.value-desc { font-size: 15px; color: var(--muted); line-height: 1.68; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .situations-grid { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .values-grid { grid-template-columns: 1fr; }
  .photo-strip figure { height: 230px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .trust-band-inner { gap: 16px; }
  .trust-band-inner span { font-size: 13px; }
  .photo-strip-inner { grid-template-columns: 1fr 1fr; }
  .photo-strip figure { height: 180px; }
  .photo-strip figure:last-child { display: none; }
  .situations-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 520px) {
  .photo-strip-inner { grid-template-columns: 1fr; }
  .photo-strip figure { height: 200px; display: block; }
  .photo-strip figure:last-child { display: block; }
  .coverage-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .steps-grid { max-width: 100%; }
}
