/* ==========================================
   Ant's Home Services — Main Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --teal:        #3D8585;
  --teal-dark:   #2A5E5E;
  --teal-light:  #EBF4F4;
  --gold:        #B8925A;
  --white:       #FFFFFF;
  --cream:       #F6F9F8;
  --text-dark:   #1A2E2E;
  --text-mid:    #4A6363;
  --text-light:  #7A9898;
  --border:      #D8E8E8;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 6px 24px rgba(0,0,0,.12);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  .25s ease;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a  { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1.25rem; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-color: var(--teal-light);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: .6rem 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.logo-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  transition: filter var(--transition);
}
.navbar-transparent .logo-img { filter: brightness(0) invert(1); }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}
.logo-text span { display: block; font-size: .65rem; font-family: 'Lato', sans-serif; font-weight: 400; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; margin-top: 1px; }

.navbar-transparent .logo-text,
.navbar-transparent .nav-links a { color: var(--white); }
.navbar-transparent .logo-text span { color: rgba(255,255,255,.7); }
.navbar.scrolled .logo-text { color: var(--text-dark); }
.navbar.scrolled .logo-text span { color: var(--text-light); }
.navbar.scrolled .nav-links a { color: var(--text-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .03em;
  color: inherit;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { border-color: var(--teal); color: var(--teal); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }
.nav-links .btn-nav {
  border: 2px solid;
  padding: .5rem 1.2rem;
  border-radius: var(--radius);
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.navbar-transparent .nav-links .btn-nav { border-color: rgba(255,255,255,.8); color: var(--white); }
.navbar.scrolled .nav-links .btn-nav { border-color: var(--teal); color: var(--teal); }
.nav-links .btn-nav:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Hamburger */
.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(--white);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}
.navbar.scrolled .menu-toggle span { background: var(--text-dark); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO — Homepage
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/van.webp');
  background-size: cover;
  background-position: center 60%;
  filter: brightness(.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  max-width: 680px;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,.9);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
}
.hero-trust-item svg { flex-shrink: 0; }

/* ==========================================
   PAGE HERO (inner pages)
   ========================================== */
.page-hero {
  position: relative;
  padding: 9rem 0 5rem;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; }

/* ==========================================
   SERVICES OVERVIEW — Homepage
   ========================================== */
.services-overview { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1.75rem; }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-card h3 { margin-bottom: .5rem; }
.service-card p { font-size: .95rem; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--teal);
  margin-top: 1.25rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 1px;
  transition: border-color var(--transition), gap var(--transition);
}
.service-card .learn-more:hover { border-color: var(--teal); gap: .55rem; }

/* ==========================================
   ABOUT STRIP — Homepage
   ========================================== */
.about-strip {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-label { margin-bottom: 1rem; }
.about-highlights {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-mid);
}
.about-highlights .check {
  width: 22px;
  height: 22px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlights .check svg { width: 12px; height: 12px; }

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials { background: var(--teal-dark); }
.testimonials .section-label { color: rgba(255,255,255,.6); }
.testimonials .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-author-initials {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-author-name {
  font-weight: 700;
  color: var(--white);
  font-size: .95rem;
}
.testimonial-author-loc {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ==========================================
   CTA STRIP
   ========================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 4rem 0;
}
.cta-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-strip h2 { color: var(--white); margin-bottom: .5rem; }
.cta-strip p { color: rgba(255,255,255,.85); margin: 0; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ==========================================
   CONTACT INFO STRIP — Homepage
   ========================================== */
.contact-strip { background: var(--cream); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-card h4 {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .5rem;
}
.contact-card a, .contact-card p {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: rgba(255,255,255,.5); }
.footer-brand .logo-img { filter: brightness(0) invert(1); width: 36px; height: 36px; }
.footer-brand p {
  margin-top: 1rem;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  max-width: 300px;
}
.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================
   SERVICES DETAIL PAGE
   ========================================== */
.services-list { background: var(--white); }
.services-intro { margin-bottom: 4rem; }
.services-intro .section-subtitle { margin-top: .5rem; }
.property-types {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.5rem 0;
}
.property-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: .85rem;
  padding: .4rem 1rem;
  border-radius: 2rem;
}
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.feature-card-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .9rem; }

.trust-strip { background: var(--cream); padding: 3.5rem 0; }
.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}
.trust-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: .2rem;
}
.trust-item span {
  font-size: .85rem;
  color: var(--text-light);
}

/* ==========================================
   PROPERTY MANAGEMENT PAGE
   ========================================== */
.pm-section { background: var(--white); }
.pm-blocks { display: flex; flex-direction: column; gap: 4rem; margin-top: 3rem; }
.pm-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
}
.pm-block-number {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .2rem;
}
.pm-block h3 { margin-bottom: .75rem; }
.pm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .5rem;
}
.pm-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  color: var(--text-mid);
  font-size: .95rem;
}
.pm-list .dot {
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-page { background: var(--white); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3rem;
}
.contact-info-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-method-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method h4 {
  font-family: 'Lato', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: .25rem;
}
.contact-method a, .contact-method p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0;
}
.contact-area {
  background: var(--teal-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-area h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--teal-dark);
}
.contact-area p { font-size: .95rem; color: var(--teal-dark); }

.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 { margin-bottom: .5rem; }
.contact-form-wrap > p { margin-bottom: 2rem; font-size: .95rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,133,133,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

/* ==========================================
   SERVICE AREA MAP STRIP
   ========================================== */
.area-strip { background: var(--cream); padding: 4rem 0; }
.area-strip .section-title { margin-bottom: 1rem; }
.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.area-town {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: .4rem 1rem;
  font-size: .9rem;
  color: var(--text-mid);
  font-weight: 700;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { color: var(--text-dark) !important; font-size: 1.1rem; }
  .nav-links .btn-nav { border-color: var(--teal) !important; color: var(--teal) !important; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-strip .container { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .pm-block { grid-template-columns: 1fr; }
  .pm-block-number { display: none; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  h1 { font-size: 2rem; }
}
