/* ===========================================
   EasyAppliances Repair — Main Stylesheet
   Apple-inspired minimal design, mobile-first
   =========================================== */

/* 1. CUSTOM PROPERTIES */
:root {
  /* Colors */
  --clr-bg:           #ffffff;
  --clr-surface:      #f5f5f7;
  --clr-surface-dark: #e8e8ed;
  --clr-text:         #1d1d1f;
  --clr-text-2:       #6e6e73;
  --clr-text-3:       #86868b;
  --clr-accent:       #0071e3;
  --clr-accent-hover: #0077ed;
  --clr-accent-light: #e8f0fb;
  --clr-border:       #d2d2d7;
  --clr-border-light: #e8e8ed;
  --clr-white:        #ffffff;

  /* Typography */
  --ff-base: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Font Size Scale */
  --fs-xs:   0.75rem;      /* 12px */
  --fs-sm:   0.8125rem;    /* 13px */
  --fs-base: 1.0625rem;    /* 17px */
  --fs-md:   1.1875rem;    /* 19px */
  --fs-lg:   1.5rem;       /* 24px */
  --fs-xl:   2rem;         /* 32px */
  --fs-2xl:  2.5rem;       /* 40px */
  --fs-3xl:  3.5rem;       /* 56px */
  --fs-4xl:  4.5rem;       /* 72px */

  /* Spacing (8pt grid) */
  --sp-1: 0.5rem;   /* 8px  */
  --sp-2: 1rem;     /* 16px */
  --sp-3: 1.5rem;   /* 24px */
  --sp-4: 2rem;     /* 32px */
  --sp-5: 2.5rem;   /* 40px */
  --sp-6: 3rem;     /* 48px */
  --sp-7: 4rem;     /* 64px */
  --sp-8: 5rem;     /* 80px */
  --sp-9: 6rem;     /* 96px */
  --sp-10: 8rem;    /* 128px */

  /* Border Radius */
  --r-sm:   0.5rem;
  --r-md:   0.75rem;
  --r-lg:   1.125rem;
  --r-xl:   1.5rem;
  --r-full: 9999px;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.08);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.1);

  /* Transitions */
  --tr-fast: 0.15s ease;
  --tr-base: 0.25s ease;
  --tr-slow: 0.4s ease;

  /* Layout */
  --container-max: 1200px;
  --container-px:  1.25rem;
  --nav-height:    3.5rem;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

/* 3. REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* 4. BASE */
body {
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  line-height: 1.588;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* 5. SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--clr-accent);
  color: white;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top var(--tr-fast);
}
.skip-link:focus { top: 1rem; }

/* 6. LAYOUT */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

@media (min-width: 768px)  { :root { --container-px: 2rem; } }
@media (min-width: 1024px) { :root { --container-px: 2.5rem; } }

/* 7. TYPOGRAPHY UTILITIES */
.section-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-1);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, var(--fs-3xl));
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--clr-text);
}
.section-subtitle {
  font-size: clamp(var(--fs-base), 1.8vw, var(--fs-md));
  color: var(--clr-text-2);
  line-height: 1.6;
  max-width: 600px;
  margin-top: var(--sp-2);
}

/* 8. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  font-weight: 500;
  line-height: 1;
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast), border-color var(--tr-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--clr-accent);
  color: white;
}
.btn--primary:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,113,227,0.3);
}
.btn--secondary {
  background: var(--clr-surface);
  color: var(--clr-text);
}
.btn--secondary:hover { background: var(--clr-surface-dark); }
.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 1.5px solid var(--clr-accent);
}
.btn--outline:hover { background: var(--clr-accent-light); }
.btn--large { padding: 1rem 2rem; font-size: var(--fs-md); }
.btn--small  { padding: 0.5rem 1rem; font-size: var(--fs-sm); }

/* 9. NAVIGATION */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--clr-border-light);
  height: var(--nav-height);
}
.nav {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: var(--sp-3);
}
.nav__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--clr-text);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__logo span { color: var(--clr-accent); }
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-3);
}
.nav__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  transition: color var(--tr-fast);
}
.nav__link:hover,
.nav__link[aria-current="page"] { color: var(--clr-text); }
.nav__phone {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text);
  white-space: nowrap;
}
.nav__cta { display: none; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--tr-base), opacity var(--tr-base);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100vh - var(--nav-height));
  background: #ffffff;
  backdrop-filter: blur(20px);
  padding: var(--sp-3);
  flex-direction: column;
  gap: 0;
  z-index: 200;
  overflow-y: auto;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  padding: var(--sp-2) 0;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border-light);
}
.nav__mobile-cta { margin-top: var(--sp-3); }

@media (min-width: 768px) {
  .nav__links  { display: flex; }
  .nav__cta    { display: inline-flex; }
  .nav__hamburger { display: none; }
  .nav__phone  { display: none; }
}

/* 10. SECTIONS */
.section { padding-block: var(--sp-8); }
.section--surface { background: var(--clr-surface); }
.section__header { margin-bottom: var(--sp-6); }
.section__header--center { text-align: center; }
.section__header--center .section-subtitle { margin-inline: auto; }

/* 11. HERO */
.hero {
  padding-block: var(--sp-9) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,113,227,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Split layout: text left, photo right */
.hero__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .hero__split { grid-template-columns: 1fr 1fr; }
}

.hero__content {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
/* When inside split layout, left-align on desktop */
.hero__split .hero__content {
  max-width: none;
  margin-inline: 0;
}
@media (min-width: 900px) {
  .hero__split .hero__content { text-align: left; }
  .hero__split .hero__actions  { justify-content: flex-start; }
  .hero__split .hero__trust    { justify-content: flex-start; }
  .hero__split .hero__subtitle { margin-inline: 0; }
}

/* Photo column */
.hero__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--clr-surface);
  box-shadow: var(--sh-lg);
  display: none; /* hidden until image exists */
}
.hero__photo--visible { display: block; }
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (min-width: 900px) {
  .hero__photo { display: block; }
}

.hero__eyebrow,
.eyebrow {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-2);
}
.hero__title {
  font-size: clamp(2.25rem, 7vw, var(--fs-4xl));
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
}
.hero__subtitle {
  font-size: clamp(var(--fs-base), 2vw, var(--fs-md));
  color: var(--clr-text-2);
  line-height: 1.6;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--sp-5);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
  margin-bottom: var(--sp-6);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--clr-border-light);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.trust-item__number {
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}
.trust-item__label {
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
}

/* Service page photo banner */
.service-photo-banner {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: var(--r-xl);
  margin-block: var(--sp-6);
}
.service-photo-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* 12. SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2);
}
.service-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-3);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-lg);
  text-decoration: none;
  color: inherit;
  transition: transform var(--tr-base), box-shadow var(--tr-base), border-color var(--tr-base);
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--clr-accent);
}
.service-card:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
}
.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  background: var(--clr-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.service-card__body { flex: 1; }
.service-card__title { font-size: var(--fs-base); font-weight: 600; margin-bottom: 4px; }
.service-card__desc  { font-size: var(--fs-sm); color: var(--clr-text-2); line-height: 1.5; }
.service-card__arrow {
  color: var(--clr-text-3);
  font-size: var(--fs-lg);
  align-self: center;
  transition: transform var(--tr-fast);
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }

@media (min-width: 600px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* 13. WHY US */
.why-grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
.why-item { display: flex; flex-direction: column; gap: var(--sp-1); }
.why-item__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-md);
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-1);
}
.why-item__title { font-size: var(--fs-md); font-weight: 600; letter-spacing: -0.01em; }
.why-item__desc  { font-size: var(--fs-sm); color: var(--clr-text-2); line-height: 1.65; }

@media (min-width: 600px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* 14. PROCESS */
.process-steps {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
.process-step { display: flex; gap: var(--sp-3); align-items: flex-start; }
.process-step__number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--clr-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: 700;
  flex-shrink: 0;
}
.process-step__title { font-size: var(--fs-base); font-weight: 600; margin-bottom: 4px; }
.process-step__desc  { font-size: var(--fs-sm); color: var(--clr-text-2); line-height: 1.6; }

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-step  { flex-direction: column; }
}

/* 15. REVIEWS */
.reviews-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}
.review-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-3);
}
.review-card__stars { color: #f5a623; font-size: var(--fs-base); margin-bottom: var(--sp-1); letter-spacing: 2px; }
.review-card__text  { font-size: var(--fs-sm); color: var(--clr-text); line-height: 1.7; margin-bottom: var(--sp-2); }
.review-card__author { font-size: var(--fs-sm); font-weight: 600; color: var(--clr-text); }
.review-card__meta   { font-size: var(--fs-xs); color: var(--clr-text-3); margin-top: 2px; }

@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

/* 16. FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border-light);
}
.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--clr-bg);
  text-align: left;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--clr-text);
  border-bottom: 1px solid var(--clr-border-light);
  transition: background var(--tr-fast);
}
.faq-item:last-child .faq-item__button { border-bottom: none; }
.faq-item__button:hover { background: var(--clr-surface); }
.faq-item__button:focus-visible { outline: 2px solid var(--clr-accent); outline-offset: -2px; }
.faq-item__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--clr-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--tr-base), background var(--tr-fast), color var(--tr-fast);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-2);
}
.faq-item__button[aria-expanded="true"] .faq-item__icon {
  transform: rotate(45deg);
  background: var(--clr-accent);
  color: white;
}
.faq-item__answer {
  overflow: hidden;
  height: 0;
  transition: height var(--tr-slow);
}
.faq-item__answer-inner {
  padding: 0 var(--sp-3) var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  line-height: 1.7;
  background: var(--clr-bg);
}

.faq-layout { display: grid; gap: var(--sp-7); }
@media (min-width: 900px) { .faq-layout { grid-template-columns: 1fr 1.5fr; align-items: start; } }

/* 17. CTA BANNER */
.cta-banner {
  background: var(--clr-text);
  color: white;
  padding-block: var(--sp-8);
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, var(--fs-3xl));
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-3);
  color: white;
}
.cta-banner__subtitle {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--sp-5);
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }
.cta-banner .btn--primary { background: var(--clr-accent); }
.cta-banner .btn--phone {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.cta-banner .btn--phone:hover { background: rgba(255,255,255,0.2); }

/* 18. FOOTER */
.site-footer { background: var(--clr-surface); padding-block: var(--sp-7) var(--sp-4); }
.footer__grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-6);
}
.footer__logo { font-size: 1.125rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--sp-2); }
.footer__logo span { color: var(--clr-accent); }
.footer__nap { font-size: var(--fs-sm); color: var(--clr-text-2); line-height: 2; font-style: normal; }
.footer__nap a { color: var(--clr-text-2); transition: color var(--tr-fast); }
.footer__nap a:hover { color: var(--clr-accent); }
.footer__heading {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-text-3);
  margin-bottom: var(--sp-2);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-1); }
.footer__links a { font-size: var(--fs-sm); color: var(--clr-text-2); transition: color var(--tr-fast); }
.footer__links a:hover { color: var(--clr-accent); }
.footer__bottom {
  padding-top: var(--sp-4);
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: space-between;
  align-items: center;
}
.footer__copyright { font-size: var(--fs-xs); color: var(--clr-text-3); }
.footer__legal { display: flex; gap: var(--sp-3); }
.footer__legal a { font-size: var(--fs-xs); color: var(--clr-text-3); transition: color var(--tr-fast); }
.footer__legal a:hover { color: var(--clr-text-2); }

@media (min-width: 600px)  { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* 19. FORMS */
.form { display: flex; flex-direction: column; gap: var(--sp-3); }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: var(--fs-sm); font-weight: 500; color: var(--clr-text); }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(0,113,227,0.15);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__row { display: grid; gap: var(--sp-2); grid-template-columns: 1fr; }
.form__note { font-size: var(--fs-xs); color: var(--clr-text-3); margin-top: -var(--sp-1); }
@media (min-width: 600px) { .form__row { grid-template-columns: 1fr 1fr; } }

/* 20. BLOG GRID */
.blog-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
.blog-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.blog-card:focus-visible { outline: 2px solid var(--clr-accent); outline-offset: 3px; }
.blog-card__img {
  aspect-ratio: 16/9;
  background: var(--clr-surface);
  overflow: hidden;
}
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__body { padding: var(--sp-3); flex: 1; display: flex; flex-direction: column; }
.blog-card__tag  { font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--clr-accent); margin-bottom: var(--sp-1); }
.blog-card__title { font-size: var(--fs-base); font-weight: 600; margin-bottom: var(--sp-1); line-height: 1.3; flex: 1; }
.blog-card__excerpt { font-size: var(--fs-sm); color: var(--clr-text-2); line-height: 1.6; }
.blog-card__meta { font-size: var(--fs-xs); color: var(--clr-text-3); margin-top: var(--sp-2); }

@media (min-width: 768px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* 21. PAGE HERO (inner pages) */
.page-hero {
  background: var(--clr-surface);
  padding-block: var(--sp-7) var(--sp-6);
  border-bottom: 1px solid var(--clr-border-light);
}
.page-hero__title   { font-size: clamp(2rem, 5vw, var(--fs-3xl)); font-weight: 700; letter-spacing: -0.025em; margin-bottom: var(--sp-2); }
.page-hero__subtitle { font-size: var(--fs-md); color: var(--clr-text-2); max-width: 600px; }

/* 22. BREADCRUMBS */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--clr-text-3);
  margin-bottom: var(--sp-3);
}
.breadcrumb__item a { color: var(--clr-text-3); transition: color var(--tr-fast); }
.breadcrumb__item a:hover { color: var(--clr-accent); }
.breadcrumb__sep { color: var(--clr-border); }

/* 23. AREA BADGES */
.area-badges { display: flex; flex-wrap: wrap; gap: var(--sp-1); }
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border-light);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: var(--clr-text-2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
a.area-badge:hover {
  color: var(--clr-accent);
  border-color: var(--clr-accent);
}

/* 24. GBP LINK */
.gbp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
  transition: border-color var(--tr-fast), background var(--tr-fast), color var(--tr-fast);
}
.gbp-link:hover { border-color: var(--clr-accent); background: var(--clr-accent-light); color: var(--clr-accent); }

/* 25. PRICING TABLE */
.pricing-table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.pricing-table th,
.pricing-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--clr-border-light);
}
.pricing-table th { font-weight: 600; color: var(--clr-text-2); background: var(--clr-surface); }
.pricing-table td:last-child { font-weight: 600; color: var(--clr-text); text-align: right; }
.pricing-table tr:last-child td { border-bottom: none; }

/* 26. NOTICE */
.notice {
  display: flex;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.notice[hidden] { display: none; }
.notice--info { background: var(--clr-accent-light); color: #003d80; border: 1px solid #b3d4f5; }
.notice--success { background: #edf7ed; color: #1a5e1a; border: 1px solid #c3e6c3; }

/* 27. SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* 28. TWO-COLUMN CONTENT */
.content-split {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .content-split { grid-template-columns: 1fr 1fr; } }

/* 29. CONTACT INFO BLOCK */
.contact-info { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-item {
  display: flex;
  gap: var(--sp-2);
  align-items: flex-start;
}
.contact-item__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--r-md);
  background: var(--clr-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-item__label { font-size: var(--fs-xs); color: var(--clr-text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px; }
.contact-item__value { font-size: var(--fs-base); font-weight: 500; }
.contact-item__value a { color: var(--clr-text); transition: color var(--tr-fast); }
.contact-item__value a:hover { color: var(--clr-accent); }

/* 30. TEAM GRID */
.team-grid { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
.team-card { text-align: center; }
.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--clr-surface);
  margin-inline: auto;
  margin-bottom: var(--sp-2);
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-size: var(--fs-base); font-weight: 600; margin-bottom: 4px; }
.team-card__role { font-size: var(--fs-sm); color: var(--clr-text-2); }
@media (min-width: 600px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* 31. ARTICLE BODY */
.article-body { max-width: 720px; }
.article-body h2 { font-size: var(--fs-xl); margin-block: var(--sp-5) var(--sp-2); }
.article-body h3 { font-size: var(--fs-lg); margin-block: var(--sp-4) var(--sp-2); }
.article-body p  { margin-bottom: var(--sp-3); color: var(--clr-text); line-height: 1.7; }
.article-body ul,
.article-body ol { margin-bottom: var(--sp-3); padding-left: var(--sp-3); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: var(--sp-1); line-height: 1.65; }
.article-body a   { color: var(--clr-accent); text-decoration: underline; }
.article-body img { border-radius: var(--r-lg); margin-block: var(--sp-4); width: 100%; }

/* 32. PRIVACY / LEGAL PAGE */
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: var(--fs-xl); margin-block: var(--sp-5) var(--sp-2); }
.legal-body p  { margin-bottom: var(--sp-3); color: var(--clr-text-2); line-height: 1.7; }

/* 33. UTILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
