/* ============================================================
   LEDGER & CO — Demo Website for Got Found
   Design: Navy + Gold, Cormorant Garamond + Inter
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* --- Custom Properties --- */
:root {
  --navy: #0f1f3d;
  --gold: #c9a84c;
  --gold-light: #fdf8ee;
  --dark: #0a1628;
  --muted: #64748b;
  --border: #e8e0d0;
  --white: #ffffff;
  --gold-hover: #b8962e;
  --navy-light: #1a3260;
  --text: #1e293b;
  --text-light: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section--sm {
  padding: 60px 0;
}

.section--navy {
  background: var(--navy);
}

.section--dark {
  background: var(--dark);
}

.section--gold-light {
  background: var(--gold-light);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ============================================================
   DEMO BANNER (injected inline but scoped here for reference)
   ============================================================ */
.demo-banner {
  position: relative;
  z-index: 999;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(15,31,61,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav__logo span {
  color: var(--gold);
}

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

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 6px;
  padding: 40px 36px;
  position: relative;
  z-index: 1;
}

.hero__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.hero__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__card ul li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero__card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero__founder {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}

.hero__founder strong {
  color: rgba(255,255,255,0.8);
  font-style: normal;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust-badge__icon {
  width: 36px;
  height: 36px;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(15,31,61,0.1);
  transform: translateY(-3px);
}

.service-card__icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.service-card__link:hover {
  gap: 10px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-item {
  display: flex;
  gap: 20px;
}

.why-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}

.why-item__body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-item__body p {
  font-size: 0.92rem;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--navy);
  padding: 70px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat {
  padding: 24px;
}

.stat__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.2s;
  text-decoration: none;
}

.area-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(15,31,61,0.08);
  transform: translateY(-2px);
}

.area-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.area-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.area-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.area-card__arrow {
  display: block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--dark);
  padding: 90px 0;
}

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

.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 36px 32px;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}

.testimonial__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial__role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--gold-light);
  padding: 90px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 72px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__logo span {
  color: var(--gold);
}

.footer__about {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__contact-item {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.footer__contact-item a {
  color: var(--gold);
  transition: opacity 0.2s;
}

.footer__contact-item a:hover {
  opacity: 0.8;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

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

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer__accreditations {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 72px 0 68px;
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--gold-light);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb__inner {
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb__inner a {
  color: var(--gold);
  font-weight: 500;
  transition: opacity 0.2s;
}

.breadcrumb__inner a:hover {
  opacity: 0.75;
}

/* ============================================================
   CONTENT BLOCKS
   ============================================================ */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.content-split--reversed .content-split__text {
  order: 2;
}

.content-split--reversed .content-split__visual {
  order: 1;
}

.content-split__text h2 {
  margin-bottom: 16px;
}

.content-split__text p {
  margin-bottom: 16px;
}

.content-split__text p:last-child {
  margin-bottom: 0;
}

.content-visual {
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}

.content-visual__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.content-visual ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-visual ul li {
  font-size: 0.92rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.content-visual ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 32px;
  background: var(--white);
}

.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 0.92rem;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.contact-detail__value {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.contact-detail__value a {
  color: var(--gold);
}

.form-card {
  background: var(--gold-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px 40px;
}

.form-card h3 {
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-card p {
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-hover);
}

/* ============================================================
   TEAM / ABOUT
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-card__avatar {
  width: 100px;
  height: 100px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.team-card h4 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.88rem;
}

/* ============================================================
   VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
}

.value-card__icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
}

/* ============================================================
   AREA PAGE SPECIFICS
   ============================================================ */
.area-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.area-service-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 20px 20px;
  border-radius: 3px;
  font-size: 0.92rem;
  color: var(--text-light);
}

.area-service-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ============================================================
   INTRO BAND
   ============================================================ */
.intro-band {
  background: var(--gold-light);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.intro-band__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-band p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav__links,
  .nav__cta .btn {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__phone {
    font-size: 0.82rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .area-services {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 32px 24px;
  }

  .trust-bar__inner {
    gap: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Area page improvements ───────────────────────── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.postcode-list { list-style: none; padding: 0; margin: 16px 0; }
.postcode-list li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.postcode-list li:last-child { border-bottom: none; }
@media (max-width: 768px) { .content-grid { grid-template-columns: 1fr; } }
