/* ============================================================
   GUNILLA DE SANTO — REALTOR®
   Brand Design System
   ============================================================ */

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

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --blue-primary:    #1F4F8F;
  --blue-accent:     #4A7AB5;
  --blue-light:      #B8CCE8;
  --blue-pale:       #D0E1F5;
  --warm-white:      #F8F7F4;
  --charcoal:        #2C2C2C;
  --silver:          #A8B0BB;
  --white:           #FFFFFF;

  --font-display:    'Nunito', sans-serif;
  --font-heading:    'Lato', sans-serif;
  --font-body:       'Roboto', sans-serif;

  --nav-height:      80px;
  --max-width:       1200px;
  --section-pad:     100px 40px;
  --section-pad-sm:  60px 24px;

  --transition:      0.3s ease;
  --shadow-soft:     0 4px 24px rgba(31,79,143,0.08);
  --shadow-med:      0 8px 40px rgba(31,79,143,0.12);
}

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); color: var(--blue-primary); line-height: 1.2; }
h4, h5, h6, nav, label { font-family: var(--font-heading); }

h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 600; }
h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; }
h3 { font-size: clamp(22px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--blue-accent); }

p { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.75; color: var(--charcoal); margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT UTILITIES ──────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--section-pad); }
.section--white { background: var(--white); }
.section--blue-pale { background: var(--blue-pale); }
.section--charcoal { background: var(--charcoal); }
.text-center { text-align: center; }
.divider { width: 60px; height: 3px; background: var(--blue-accent); margin: 24px auto; }
.divider--left { margin: 24px 0; }

/* ── HEADER / NAVIGATION ───────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(248,247,244,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,176,187,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-primary);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.site-logo span {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.site-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--blue-primary);
  transition: width var(--transition);
}

.site-nav a:hover { color: var(--blue-primary); }
.site-nav a:hover::after { width: 100%; }
.site-nav a.active { color: var(--blue-primary); }
.site-nav a.active::after { width: 100%; }

.header-phone {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.header-phone:hover { color: var(--blue-accent); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 35, 65, 0.45) 0%,
    rgba(15, 35, 65, 0.55) 50%,
    rgba(15, 35, 65, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-content p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 44px;
  line-height: 1.5;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-scroll svg { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  border: 2px solid var(--blue-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--blue-primary);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue-primary);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue-primary);
  border: 2px solid var(--blue-primary);
}

.btn-outline-dark:hover {
  background: var(--blue-primary);
  color: var(--white);
}

/* ── ANCHOR LINE SECTION ───────────────────────────────────── */
.anchor-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--white);
}

.anchor-section p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--blue-primary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ── PILLARS SECTION ───────────────────────────────────────── */
.pillars-section {
  padding: 80px 40px;
  background: var(--warm-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.pillar-card {
  border: 1px solid var(--blue-light);
  border-top: 4px solid var(--blue-primary);
  padding: 40px 36px;
  background: var(--white);
  border-radius: 2px;
  transition: box-shadow var(--transition);
}

.pillar-card:hover { box-shadow: var(--shadow-med); }

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.pillar-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

/* ── PAIN POINT / COPY SECTIONS ────────────────────────────── */
.copy-section {
  padding: 80px 40px;
  background: var(--white);
}

.copy-section .container { max-width: 800px; }

.copy-section p {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 1.5em;
}

/* ── PHOTO BREAK ───────────────────────────────────────────── */
.photo-break {
  height: 480px;
  overflow: hidden;
  position: relative;
}

.photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31,79,143,0.15);
}

/* ── DUAL CTA SECTION ──────────────────────────────────────── */
.dual-cta-section {
  padding: 80px 40px;
  background: var(--warm-white);
}

.dual-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-card {
  border: 1px solid var(--blue-light);
  padding: 56px 48px;
  background: var(--white);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
  text-decoration: none;
  display: block;
}

.cta-card:hover {
  box-shadow: var(--shadow-med);
  border-color: var(--blue-accent);
  transform: translateY(-2px);
}

.cta-card h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.cta-card p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--blue-primary);
  margin-bottom: 32px;
  line-height: 1.4;
}

/* ── MEET GUNILLA SECTION ──────────────────────────────────── */
.meet-section {
  padding: 80px 40px;
  text-align: center;
  background: var(--white);
}

.meet-section p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--charcoal);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  padding: 160px 40px 80px;
  background: var(--white);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.about-photo-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: var(--shadow-med);
}

.about-photo-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--blue-accent);
  border-radius: 2px;
  z-index: -1;
}

.about-copy h1 {
  margin-bottom: 8px;
}

.about-copy .tagline {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 40px;
}

.about-body { padding: 80px 40px; background: var(--warm-white); }
.about-body .container { max-width: 800px; }

/* ── BUYERS / SELLERS PAGE HERO ────────────────────────────── */
.page-hero {
  padding: 160px 40px 80px;
  background: var(--white);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero-inner .eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 20px;
  display: block;
}

.page-hero-inner h1 { margin-bottom: 32px; }

.page-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.page-copy {
  padding: 80px 40px;
  background: var(--warm-white);
}

.page-copy .container { max-width: 800px; }

/* ── EXPLORE NORTH COUNTY ──────────────────────────────────── */
.explore-hero {
  padding: 160px 40px 60px;
  text-align: center;
  background: var(--white);
}

.explore-hero h1 { margin-bottom: 16px; }

.explore-hero .intro {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 300;
  color: var(--blue-accent);
  font-style: italic;
  margin: 0 auto;
  max-width: 600px;
}

.explore-towns { padding: 60px 40px 100px; background: var(--warm-white); }

.town-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto 80px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.town-block:last-child { margin-bottom: 0; }

.town-block.reverse { direction: rtl; }
.town-block.reverse > * { direction: ltr; }

.town-photo {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.town-copy {
  background: var(--white);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.town-copy h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 8px;
}

.town-copy .town-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 28px;
  display: block;
}

.town-copy p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-hero {
  padding: 160px 40px 80px;
  text-align: center;
  background: var(--white);
}

.contact-hero h1 { margin-bottom: 0; max-width: 700px; margin: 0 auto; }

.contact-body {
  padding: 80px 40px 100px;
  background: var(--warm-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.contact-info h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-info .phone {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-primary);
  display: block;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.contact-info .phone:hover { color: var(--blue-accent); }

.contact-info .brokerage {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--silver);
  line-height: 1.6;
  margin-top: 32px;
}

/* ── CONTACT FORM ──────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid var(--blue-light);
  border-radius: 2px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(31,79,143,0.08);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-required { color: var(--blue-accent); margin-left: 2px; }

.form-submit { margin-top: 8px; }

.form-submit .btn { width: 100%; text-align: center; }

.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(31,79,143,0.06);
  border: 1px solid var(--blue-light);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--blue-primary);
  text-align: center;
}

/* ── LEGAL PAGES ───────────────────────────────────────────── */
.legal-page {
  padding: 140px 40px 100px;
  background: var(--white);
}

.legal-page .container { max-width: 800px; }

.legal-page h1 { margin-bottom: 8px; }

.legal-page .effective-date {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 48px;
  display: block;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-page p { font-size: 17px; line-height: 1.8; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: 60px 40px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}

.footer-brand .realtor {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}

.footer-nav h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--white); }

.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.footer-contact a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-contact a:hover { color: var(--blue-light); }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-dre {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--silver);
  line-height: 1.6;
}

.footer-dre strong { color: rgba(255,255,255,0.7); }

.footer-legal {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--silver);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--white); }

.footer-legal span { color: rgba(255,255,255,0.2); }

/* ── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 3px solid var(--blue-primary);
  padding: 20px 40px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-family: var(--font-heading);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--blue-light);
  text-decoration: underline;
}

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-accept, .cookie-reject {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--blue-primary);
  color: var(--white);
}

.cookie-accept:hover { background: var(--blue-accent); }

.cookie-reject {
  background: transparent;
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-reject:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

/* ── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--warm-white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--blue-primary);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--blue-accent); }

.mobile-phone {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 16px;
}

/* ── PAGE TRANSITION ───────────────────────────────────────── */
.page-content { animation: pageFadeIn 0.5s ease forwards; }

@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1023px) {
  :root { --section-pad: 60px 24px; }

  .header-inner { padding: 0 24px; }
  .site-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .about-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-photo { aspect-ratio: 4/3; }

  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .dual-cta-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }

  .town-block { grid-template-columns: 1fr; }
  .town-block.reverse { direction: ltr; }
  .town-photo { min-height: 280px; }
}

@media (max-width: 767px) {
  body { font-size: 17px; }

  .container { padding: 0 24px; }
  .section { padding: var(--section-pad-sm); }

  .hero-content h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-content p { font-size: 18px; }

  .anchor-section { padding: 60px 24px; }
  .pillars-section { padding: 60px 24px; }
  .pillar-card { padding: 32px 28px; }

  .dual-cta-section { padding: 60px 24px; }
  .cta-card { padding: 40px 32px; }

  .town-copy { padding: 40px 32px; }

  .contact-info .phone { font-size: 26px; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }

  .footer-bottom { flex-direction: column; gap: 16px; }
}

@media (max-width: 567px) {
  .hero-content h1 { font-size: clamp(26px, 7vw, 36px); }
  .btn { padding: 14px 28px; font-size: 13px; }
  .photo-break { height: 300px; }
}
