/* Prime Estate Group — Modern Luxury Editorial */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --gold: #C9A962;
  --gold-light: #D4BC7D;
  --charcoal: #1A1A1A;
  --ivory: #FAF7F2;
  --slate: #2D3748;
  --slate-light: #4A5568;
  --white: #FFFFFF;
  --border: rgba(201, 169, 98, 0.25);
  --shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
  --shadow-hover: 0 16px 48px rgba(26, 26, 26, 0.14);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1280px;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250, 247, 242, 0.98);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.logo span { color: var(--gold); }

.nav-main { display: flex; gap: 2rem; list-style: none; }

.nav-main a {
  color: var(--charcoal);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-main a:hover,
.nav-main a.active { color: var(--gold); }
.nav-main a:hover::after,
.nav-main a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero:hover .hero-bg img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.35) 60%, rgba(26,26,26,0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 4rem) 1.5rem 6rem;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 800px; }

.hero-sub {
  font-size: 1.125rem;
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--slate);
  color: var(--white);
  transform: translateY(-2px);
}

/* Sections */
section { padding: 5rem 0; }

.section-label {
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Callout */
.callout {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 2.5rem 0;
}

.callout-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.callout-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
}

.callout p { margin: 0; font-size: 0.9375rem; opacity: 0.9; }
.callout strong { color: var(--gold); }

/* Trust bar */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  list-style: none;
}

.trust-items li {
  font-size: 0.8125rem;
  color: var(--slate-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-items li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card h3 { font-size: 1.125rem; }
.card p { font-size: 0.9375rem; color: var(--slate-light); margin-bottom: 0; }

/* Property cards — asymmetric masonry */
.listings-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.listing-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.listing-card:nth-child(1) { grid-column: span 7; }
.listing-card:nth-child(2) { grid-column: span 5; }
.listing-card:nth-child(3) { grid-column: span 5; }
.listing-card:nth-child(4) { grid-column: span 7; }
.listing-card:nth-child(5) { grid-column: span 6; }
.listing-card:nth-child(6) { grid-column: span 6; }

.listing-card.featured:nth-child(1) { grid-column: span 8; }
.listing-card.featured:nth-child(2) { grid-column: span 4; }
.listing-card.featured:nth-child(3) { grid-column: span 4; }

.listing-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.listing-card:nth-child(2) .listing-img,
.listing-card:nth-child(3) .listing-img { aspect-ratio: 4/5; }

.listing-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.listing-card:hover .listing-img img { transform: scale(1.05); }

.listing-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
}

.listing-body { padding: 1.5rem; }

.listing-district {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.listing-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-top: 0.75rem;
}

/* Split sections */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.split-block.reverse { direction: rtl; }
.split-block.reverse > * { direction: ltr; }

.split-image { overflow: hidden; }
.split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
  background: var(--white);
}

.split-content.dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.split-content.dark h2,
.split-content.dark h3 { color: var(--ivory); }

/* Method steps */
.method-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.method-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.method-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.method-step h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.method-step p { font-size: 0.8125rem; color: var(--slate-light); margin: 0; }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.why-item {
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.why-item h3 { font-size: 1.25rem; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border);
  font-style: italic;
}

.testimonial-text { margin-bottom: 1.5rem; color: var(--slate); }

.testimonial-author {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--slate-light);
}

/* FAQ */
.faq-list { max-width: 800px; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  cursor: pointer;
}

.faq-item p { color: var(--slate-light); margin: 0; }

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-height) + 4rem) 0 3rem;
  background: var(--charcoal);
  color: var(--ivory);
}

.page-hero h1 { color: var(--ivory); margin-bottom: 1rem; }
.page-hero p { max-width: 600px; opacity: 0.85; margin: 0; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { padding: 2rem 0; }

.contact-detail {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-map img {
  width: 100%;
  border-radius: 2px;
  margin-top: 1rem;
}

.form-panel {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--slate);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--slate-light);
}

.form-check input { margin-top: 4px; flex-shrink: 0; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.form-status.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-status.error { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* Timeline */
.timeline { position: relative; padding-left: 2rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 0.5rem;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-5px);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-member {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.team-member h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 0.25rem; }
.team-member .role { font-size: 0.8125rem; color: var(--gold); margin-bottom: 1rem; }
.team-member p { font-size: 0.875rem; color: var(--slate-light); margin: 0; }

/* Services detail */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }

.service-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-meta {
  font-size: 0.8125rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.service-fee {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
  font-size: 0.9375rem;
}

/* Legal / prose pages */
.prose { max-width: 800px; }
.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.5rem; }
.prose h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; }
.prose ul, .prose ol { margin: 1rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.5rem; }

/* Disclaimer */
.disclaimer {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  font-size: 0.8125rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-top: 3rem;
}

.disclaimer strong {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

/* CTA band */
.cta-band {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding: 4rem 1.5rem;
}

.cta-band h2 { color: var(--ivory); margin-bottom: 1rem; }
.cta-band p { opacity: 0.85; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(250, 247, 242, 0.7);
  padding: 4rem 0 2rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { color: var(--ivory); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.8125rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: rgba(250,247,242,0.7); font-size: 0.8125rem; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201,169,98,0.2);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
}

.footer-legal a { color: rgba(250,247,242,0.5); margin-right: 1.5rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text { flex: 1; min-width: 280px; font-size: 0.8125rem; line-height: 1.6; }
.cookie-text a { color: var(--gold); }

.cookie-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.cookie-buttons .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
}

.btn-cookie-accept { background: var(--gold); color: var(--charcoal); }
.btn-cookie-reject { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: var(--ivory); }
.btn-cookie-custom { background: transparent; border: 1px solid var(--gold); color: var(--gold); }

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,26,26,0.6);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.cookie-modal.visible { display: flex; }

.cookie-modal-content {
  background: var(--white);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
}

.cookie-modal-content h3 { margin-bottom: 1rem; }

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

/* 404 */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 4rem) 1.5rem 4rem;
}

.error-page h1 { margin-bottom: 1rem; }
.error-page p { color: var(--slate-light); margin-bottom: 2rem; }

.error-code {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .listings-masonry .listing-card { grid-column: span 6 !important; }
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-main {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--ivory);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .nav-main.open { display: flex; }
  .nav-main li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }

  .cards-grid,
  .testimonials-grid,
  .team-grid,
  .why-grid { grid-template-columns: 1fr; }

  .split-block { grid-template-columns: 1fr; }
  .split-content { padding: 2rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .listings-masonry .listing-card { grid-column: span 12 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .callout-inner { flex-direction: column; text-align: center; }
}
