/* ════════════════════════════════════════
   RealEstate Pro — Main Stylesheet
   ════════════════════════════════════════ */

:root {
  --blue:        #1461f0;
  --blue-dark:   #0d47c4;
  --blue-light:  #e8f0fe;
  --navy:        #0a1628;
  --navy-mid:    #1a2744;
  --text:        #1a2744;
  --text-muted:  #6b7a99;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --orange:      #f07d2a;
  --green:       #22c55e;
  --red:         #ef4444;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --shadow:      0 4px 24px rgba(20,40,100,.08);
  --shadow-lg:   0 12px 48px rgba(20,40,100,.14);
  --transition:  0.25s ease;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

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

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 {
  font-family: 'Fraunces', serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

.highlight { color: var(--blue); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  border: 2px solid var(--blue); color: var(--blue);
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

/* ── SECTION COMMONS ── */
section { padding: 80px 0; }

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px; font-weight: 600;
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px; gap: 20px;
}
.section-header.centered {
  flex-direction: column; align-items: center; text-align: center;
}
.section-title { margin-top: 6px; }

/* ════════ HEADER ════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px; gap: 24px;
}

.site-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif; font-size: 20px; font-weight: 700;
  color: var(--navy); white-space: nowrap;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 8px; display: grid; place-items: center;
  font-size: 18px; flex-shrink: 0;
}

.nav-list { display: flex; gap: 4px; }
.nav-list a {
  padding: 8px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
}
.nav-list a:hover,
.nav-list .current-menu-item a { color: var(--blue); background: var(--blue-light); }

.header-cta { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.btn-phone {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: color var(--transition);
}
.btn-phone:hover { color: var(--blue); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ════════ HERO ════════ */
.hero-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f0fe 50%, #f8fafc 100%);
  padding: 80px 0 0;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute; border-radius: 50%;
  background: var(--blue); opacity: .05;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 0;  left: -80px; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 99px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  margin-bottom: 20px; box-shadow: var(--shadow);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

.hero-title { margin-bottom: 16px; }
.hero-subtitle {
  color: var(--text-muted); font-size: 17px; margin-bottom: 32px;
  max-width: 480px;
}

/* Search Box */
.hero-search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden; margin-bottom: 32px;
}

.search-tabs {
  display: flex; border-bottom: 1px solid var(--border);
}
.search-tab {
  flex: 1; padding: 14px; border: none; background: none;
  font-size: 15px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all var(--transition);
}
.search-tab.active {
  color: var(--blue); border-bottom: 3px solid var(--blue);
  background: var(--blue-light);
}

.search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0; padding: 16px;
  align-items: end; gap: 12px;
}

.search-field { display: flex; flex-direction: column; gap: 4px; }
.search-field label {
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .5px;
}
.search-field input,
.search-field select {
  padding: 10px 14px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 14px;
  font-family: inherit; color: var(--text);
  background: var(--off-white); outline: none;
  transition: border-color var(--transition);
}
.search-field input:focus,
.search-field select:focus { border-color: var(--blue); }

.btn-search {
  background: var(--blue); color: var(--white);
  padding: 12px 20px; border: none; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; cursor: pointer;
  white-space: nowrap; transition: background var(--transition);
}
.btn-search:hover { background: var(--blue-dark); }

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center; gap: 24px;
}
.stat-item { display: flex; flex-direction: column; }
.stat-item strong { font-size: 1.6rem; font-weight: 700; color: var(--navy); }
.stat-item span   { font-size: 13px; color: var(--text-muted); }
.stat-divider     { width: 1px; height: 40px; background: var(--border); }

/* Hero Image */
.hero-image-wrap { position: relative; }
.hero-image-card {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.hero-img { width: 100%; height: 460px; object-fit: cover; }

.hero-float-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; gap: 10px; align-items: center;
}
.card-price {
  bottom: 32px; left: -30px;
  flex-direction: column; align-items: flex-start;
}
.card-price .float-label { font-size: 12px; color: var(--text-muted); }
.card-price strong { font-size: 1.2rem; color: var(--navy); font-family: 'Fraunces',serif; }
.card-price span   { font-size: 13px; color: var(--text-muted); }

.card-stats { top: 32px; right: -20px; }
.float-avatars { display: flex; }
.float-avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-light); display: grid; place-items: center;
  font-size: 14px; border: 2px solid var(--white);
  margin-left: -8px;
}
.float-avatars span:first-child { margin-left: 0; }
.card-stats strong { display: block; font-size: 1.1rem; color: var(--navy); }
.card-stats span   { font-size: 12px; color: var(--text-muted); }

/* ════════ PROPERTY TYPES ════════ */
.section-property-types { background: var(--off-white); padding: 60px 0; }

.property-types-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.type-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 24px 16px;
  background: var(--white); border-radius: var(--radius-lg);
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
}
.type-card:hover {
  border-color: var(--blue); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.type-icon { font-size: 32px; }
.type-label { font-weight: 700; font-size: 14px; color: var(--navy); }
.type-count { font-size: 12px; color: var(--text-muted); }

/* ════════ PROPERTIES GRID ════════ */
.section-properties { padding: 80px 0; }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.property-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 4px 12px; border-radius: 99px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.badge-featured { background: var(--blue);   color: var(--white); }
.badge-new      { background: var(--green);  color: var(--white); }
.badge-hot      { background: var(--orange); color: var(--white); }

.property-thumb {
  position: relative; height: 200px; overflow: hidden;
}
.property-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.property-card:hover .property-thumb img { transform: scale(1.06); }

.btn-wishlist {
  position: absolute; top: 12px; right: 12px;
  background: var(--white); border: none;
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 16px; cursor: pointer; box-shadow: var(--shadow);
  transition: all var(--transition);
}
.btn-wishlist:hover { background: var(--red); color: var(--white); }

.property-body { padding: 20px; }
.property-price {
  font-family: 'Fraunces', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--blue); margin-bottom: 6px;
}
.property-title {
  font-size: 1rem; margin-bottom: 6px;
}
.property-title a:hover { color: var(--blue); }
.property-location { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

.property-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.property-meta span { font-size: 13px; color: var(--text-muted); }

/* ════════ WORK PROCESS ════════ */
.section-process { background: var(--off-white); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; position: relative;
}

.process-step {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); position: relative;
}
.step-num {
  font-family: 'Fraunces', serif; font-size: 3rem;
  font-weight: 900; color: var(--blue-light);
  line-height: 1; margin-bottom: 8px;
}
.step-icon { font-size: 32px; margin-bottom: 12px; }
.process-step h4 { margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: var(--text-muted); }
.step-arrow {
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px; color: var(--blue); z-index: 1;
}

/* ════════ BENEFITS ════════ */
.section-benefits { background: var(--navy); color: var(--white); }
.section-benefits .section-tag { background: rgba(255,255,255,.1); color: var(--white); }
.section-benefits .section-title { color: var(--white); }

.benefits-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.benefits-image { position: relative; }
.benefits-image img {
  width: 100%; border-radius: var(--radius-xl);
  height: 480px; object-fit: cover;
}

.benefits-float-stats {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--blue); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-lg);
}
.bstat strong { display: block; font-size: 1.4rem; color: var(--white); font-family: 'Fraunces',serif; }
.bstat span   { font-size: 13px; color: rgba(255,255,255,.7); }

.benefits-desc { color: rgba(255,255,255,.8); margin-bottom: 24px; }

.benefits-list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { color: rgba(255,255,255,.85); font-size: 15px; }

/* ════════ LOCATIONS ════════ */
.section-locations { }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.locations-grid .location-card:first-child {
  grid-column: span 2;
}

.location-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; display: block; aspect-ratio: 4/3;
}
.locations-grid .location-card:first-child { aspect-ratio: 16/9; }

.location-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.location-card:hover img { transform: scale(1.06); }

.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.8) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  color: var(--white);
}
.location-overlay h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--white); }
.location-overlay span { font-size: 13px; opacity: .8; }

/* ════════ INQUIRY ════════ */
.section-inquiry { background: var(--off-white); }

.inquiry-inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.inquiry-content p { color: var(--text-muted); margin: 12px 0 24px; }
.inquiry-img { width: 100%; border-radius: var(--radius-lg); margin-top: 24px; max-height: 280px; object-fit: cover; }

.inquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 14px; font-family: inherit;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; }
.inquiry-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-lg); }

/* ════════ TESTIMONIALS ════════ */
.section-testimonials { }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}

.testimonial-card {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); }
.testimonial-stars { font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: grid; place-items: center;
  font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; }
.testimonial-author span  { font-size: 13px; color: var(--text-muted); }

/* ════════ TEAM ════════ */
.section-team { background: var(--off-white); }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-photo { height: 280px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding: 20px; }
.team-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info span { font-size: 13px; color: var(--text-muted); }
.team-socials { display: flex; gap: 10px; margin-top: 12px; }
.team-socials a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  transition: all var(--transition);
}
.team-socials a:hover { background: var(--blue); color: var(--white); }

/* ════════ BLOG ════════ */
.section-blog { }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-thumb { display: block; height: 200px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }

.blog-body { padding: 20px; }
.blog-date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; display: block; }
.blog-body h4 { margin-bottom: 8px; }
.blog-body h4 a:hover { color: var(--blue); }
.blog-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ════════ FAQ ════════ */
.section-faq { background: var(--off-white); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--navy); cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-icon { font-size: 20px; color: var(--blue); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ════════ FOOTER ════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); }

.footer-top { padding: 60px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  display: grid; place-items: center; font-size: 13px; font-weight: 700;
  transition: background var(--transition);
}
.footer-socials a:hover { background: var(--blue); }

.footer-col h4 {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 20px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a { font-size: 14px; transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
}
.footer-bottom p { font-size: 14px; }
.footer-bottom a { color: var(--blue); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1024px) {
  .hero-inner              { grid-template-columns: 1fr; }
  .hero-image-wrap         { display: none; }
  .property-types-grid     { grid-template-columns: repeat(3,1fr); }
  .properties-grid         { grid-template-columns: repeat(2,1fr); }
  .process-steps           { grid-template-columns: repeat(2,1fr); }
  .step-arrow              { display: none; }
  .benefits-inner          { grid-template-columns: 1fr; }
  .benefits-float-stats    { position: static; margin-top: 16px; flex-direction: row; }
  .locations-grid          { grid-template-columns: repeat(2,1fr); }
  .locations-grid .location-card:first-child { grid-column: span 2; }
  .inquiry-inner           { grid-template-columns: 1fr; }
  .testimonials-grid,
  .team-grid,
  .blog-grid               { grid-template-columns: repeat(2,1fr); }
  .footer-grid             { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: block; position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white); box-shadow: var(--shadow-lg);
    padding: 16px 24px; z-index: 99;
  }
  .main-nav.open .nav-list { flex-direction: column; gap: 4px; }
  .search-fields           { grid-template-columns: 1fr; }
  .btn-phone               { display: none; }
  .property-types-grid     { grid-template-columns: repeat(2,1fr); }
  .properties-grid         { grid-template-columns: 1fr; }
  .process-steps           { grid-template-columns: 1fr; }
  .locations-grid          { grid-template-columns: 1fr; }
  .locations-grid .location-card:first-child { grid-column: span 1; }
  .testimonials-grid,
  .team-grid,
  .blog-grid               { grid-template-columns: 1fr; }
  .footer-grid             { grid-template-columns: 1fr; }
  .form-row                { grid-template-columns: 1fr; }
  .form-group.full         { grid-column: span 1; }
  .hero-stats              { flex-wrap: wrap; gap: 16px; }
}
