/* ==========================================================
   GALANTHUS DEVELOPMENTS — DESIGN SYSTEM
   Lumos Digital Marketing
   ========================================================== */

/* ----------------------------------------------------------
   CUSTOM PROPERTIES
---------------------------------------------------------- */
:root {
  /* Colours */
  --forest:         #1A3028;
  --forest-light:   #2A4A3A;
  --forest-deep:    #0F1F18;
  --sage:           #4A6B5A;
  --sage-light:     #C8DDD3;
  --sage-pale:      #EAF2EE;
  --stone:          #9B8B6E;
  --stone-light:    #C4B49A;
  --stone-pale:     #F0EBE1;
  --cream:          #F7F4EE;
  --white:          #FFFFFF;
  --charcoal:       #1E1E1E;
  --mid-grey:       #6B6B6B;
  --light-grey:     #E5E5E5;
  --border:         rgba(26, 48, 40, 0.12);

  /* Typography */
  --font-display:   'Montserrat', system-ui, sans-serif;
  --font-body:      'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --space-xs:       0.5rem;
  --space-sm:       1rem;
  --space-md:       1.5rem;
  --space-lg:       2.5rem;
  --space-xl:       4rem;
  --space-2xl:      6rem;
  --space-3xl:      9rem;

  /* Layout */
  --container:      1260px;
  --container-sm:   860px;
  --gutter:         1.5rem;

  /* Transitions */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:       cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast:       180ms;
  --dur-base:       300ms;
  --dur-slow:       500ms;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(26, 48, 40, 0.08);
  --shadow-md:      0 8px 32px rgba(26, 48, 40, 0.12);
  --shadow-lg:      0 20px 60px rgba(26, 48, 40, 0.16);

  /* Radii */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* Re-enable underlines only where explicitly wanted */
.post-content a,
.entry-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ----------------------------------------------------------
   TYPOGRAPHY SCALE
---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--forest);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }
h4 { font-size: 1.35rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 700; }
h6 { font-size: 0.95rem; font-weight: 700; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.18rem;
  line-height: 1.7;
  font-weight: 400;
  color: var(--mid-grey);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 0.75rem;
}

strong { font-weight: 700; }

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

.container--sm {
  max-width: var(--container-sm);
}

.section {
  padding-block: var(--space-2xl);
}

.section--lg {
  padding-block: var(--space-3xl);
}

.section--sm {
  padding-block: var(--space-xl);
}

.section--forest {
  background: var(--forest);
  color: var(--white);
}

.section--forest h1,
.section--forest h2,
.section--forest h3,
.section--forest h4 {
  color: var(--white);
}

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

.section--sage-pale {
  background: var(--sage-pale);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

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

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* ----------------------------------------------------------
   BUTTONS
---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--forest);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}

.btn--secondary:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--stone {
  background: var(--stone);
  color: var(--white);
}

.btn--stone:hover {
  background: var(--stone-light);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

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

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.9rem;
}

/* Arrow icon in button */
.btn .arrow {
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .arrow {
  transform: translateX(3px);
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              padding var(--dur-base) var(--ease);
}

.site-header--transparent {
  background: transparent;
  padding-block: 1.5rem;
}

.site-header--scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding-block: 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-logo__mark {
  width: 36px;
  height: 36px;
}

.site-logo__wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color var(--dur-base) var(--ease);
  line-height: 1.1;
}

.site-logo__sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone-light);
  display: block;
  transition: color var(--dur-base) var(--ease);
}

.site-header--scrolled .site-logo__wordmark {
  color: var(--forest);
}

.site-header--scrolled .site-logo__sub {
  color: var(--stone);
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
  display: block;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.site-header--scrolled .nav-menu > li > a {
  color: var(--charcoal);
}

.site-header--scrolled .nav-menu > li > a:hover,
.site-header--scrolled .nav-menu > li.current-menu-item > a {
  color: var(--forest);
  background: var(--sage-pale);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--dur-base) var(--ease-out);
  border-top: 3px solid var(--stone);
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--charcoal);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
}

.nav-menu .sub-menu li a:hover {
  background: var(--sage-pale);
  color: var(--forest);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header-phone {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--dur-fast) var(--ease);
}

.site-header--scrolled .header-phone {
  color: var(--forest);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}

.site-header--scrolled .nav-toggle span {
  background: var(--forest);
}

/* ----------------------------------------------------------
   HERO SECTIONS
---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-deep);
  /* Fallback gradient that looks intentional with no image */
  background-image:
    radial-gradient(ellipse at 70% 20%, rgba(155, 139, 110, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(74, 107, 90, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, #0A1610 0%, #1A3028 50%, #0F1F18 100%);
}

.hero--short {
  min-height: 55vh;
}

.hero--medium {
  min-height: 70vh;
}

.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  transition: opacity 1s var(--ease);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 31, 24, 0.88) 0%,
    rgba(26, 48, 40, 0.72) 55%,
    rgba(26, 48, 40, 0.50) 100%
  );
}

/* Decorative accent — large circle top right, visible even without a photo */
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(155, 139, 110, 0.12);
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -30px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(155, 139, 110, 0.08);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--stone-light);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.35s forwards;
}

.hero__title em {
  font-style: normal;
  color: var(--stone-light);
  font-weight: 800;
}

.hero__text {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.5s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.65s forwards;
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

/* ----------------------------------------------------------
   SECTION HEADERS
---------------------------------------------------------- */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--mid-grey);
  font-weight: 300;
  margin: 0;
}

/* Decorative rule */
.section-rule {
  width: 48px;
  height: 2px;
  background: var(--stone);
  margin-bottom: 1.25rem;
  display: block;
}

.section-header--center .section-rule {
  margin-inline: auto;
}

/* ----------------------------------------------------------
   SERVICE CARDS
---------------------------------------------------------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sage-light);
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.04);
}

.service-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--forest);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

.service-card__body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}

.service-card__text {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease);
  margin-top: auto;
}

.service-card__link:hover {
  color: var(--stone);
  gap: 0.7rem;
}

/* ----------------------------------------------------------
   PILLAR CARDS (Renovations / Extensions / New Builds)
---------------------------------------------------------- */
.pillar-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease);
}

.pillar-card:hover {
  transform: scale(1.01);
}

.pillar-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--dur-slow) var(--ease);
}

.pillar-card:hover .pillar-card__bg {
  transform: scale(1.05);
}

.pillar-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 31, 24, 0.9) 0%,
    rgba(15, 31, 24, 0.4) 50%,
    transparent 100%
  );
}

.pillar-card__body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.pillar-card__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.pillar-card__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pillar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
  transition: gap var(--dur-fast) var(--ease);
}

.pillar-card:hover .pillar-card__link {
  gap: 0.8rem;
}

/* ----------------------------------------------------------
   STATS BAR
---------------------------------------------------------- */
.stats-bar {
  background: var(--forest);
  padding-block: var(--space-xl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.stat-item {
  background: var(--forest);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-light);
}

/* ----------------------------------------------------------
   TESTIMONIALS
---------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--stone);
  position: relative;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.7rem;
  color: var(--stone-light);
  margin-right: 0.15rem;
  font-family: var(--font-display);
  font-weight: 800;
}

.testimonial-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: var(--mid-grey);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: var(--stone);
}

/* ----------------------------------------------------------
   ABOUT SECTION SPLIT
---------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-split__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--stone);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg) 0 0 0;
  text-align: center;
}

.about-split__badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.about-split__badge-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.25rem;
}

.about-split__content .eyebrow { margin-bottom: 0.75rem; }
.about-split__content h2 { margin-bottom: 1.25rem; }
.about-split__content p { color: var(--mid-grey); margin-bottom: 1rem; }

.about-checklist {
  margin: 1.5rem 0 2rem;
}

.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.about-checklist li:last-child { border-bottom: none; }

.about-checklist li::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--sage-pale);
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%234A6B5A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  margin-top: 2px;
}

/* ----------------------------------------------------------
   CTA BANNER
---------------------------------------------------------- */
.cta-banner {
  background: var(--forest);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(155, 139, 110, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
}

.cta-banner__content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.cta-banner__content p {
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  font-size: 1.05rem;
  margin: 0;
}

.cta-banner__actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   LOCATION PAGES
---------------------------------------------------------- */
.location-intro {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
}

.location-sidebar {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-top: 3px solid var(--stone);
  position: sticky;
  top: 100px;
}

.location-sidebar h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.location-sidebar .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.location-sidebar__phone {
  text-align: center;
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
}

.location-sidebar__phone a {
  color: var(--forest);
}

/* Service list for location pages */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.service-list-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-list-item:hover {
  border-color: var(--sage);
  background: var(--sage-pale);
  color: var(--forest);
}

.service-list-item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--stone);
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   BLOG / POSTS
---------------------------------------------------------- */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.post-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sage-light);
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 1.75rem;
}

.post-card__meta {
  font-size: 0.75rem;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.post-card__category {
  background: var(--sage-pale);
  color: var(--sage);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.65rem;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.6rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.post-card__excerpt {
  font-size: 0.88rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.post-card__read-more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--dur-fast) var(--ease);
}

.post-card:hover .post-card__read-more {
  gap: 0.7rem;
  color: var(--stone);
}

/* Single Post */
.post-content {
  max-width: 760px;
  margin-inline: auto;
}

.post-content h2, .post-content h3 { margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.8; color: #3a3a3a; }
.post-content ul, .post-content ol { margin-bottom: 1.2rem; padding-left: 1.5rem; }
.post-content li { margin-bottom: 0.5rem; font-size: 1.05rem; line-height: 1.7; list-style: disc; color: #3a3a3a; }
.post-content a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
.post-content blockquote {
  border-left: 3px solid var(--stone);
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}

/* ----------------------------------------------------------
   CONTACT FORM (ACF flexible)
---------------------------------------------------------- */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-detail__icon {
  width: 42px;
  height: 42px;
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage);
}

.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.2rem;
}

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

.contact-form {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border-top: 3px solid var(--stone);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-md);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color var(--dur-fast) var(--ease);
}

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

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

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

/* ----------------------------------------------------------
   BREADCRUMBS
---------------------------------------------------------- */
.breadcrumbs {
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: var(--mid-grey);
}

.breadcrumbs a {
  color: var(--mid-grey);
  transition: color var(--dur-fast);
}

.breadcrumbs a:hover { color: var(--forest); }

.breadcrumbs__sep {
  margin-inline: 0.5rem;
  opacity: 0.4;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.site-footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,0.75);
  padding-top: var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo__wordmark {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand .site-logo__sub {
  color: var(--stone-light);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur-fast) var(--ease);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.footer-contact-item__icon {
  color: var(--stone);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item__text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color var(--dur-fast);
}

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

/* ----------------------------------------------------------
   PAGINATION
---------------------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--charcoal);
  transition: all var(--dur-fast) var(--ease);
}

.pagination a:hover,
.pagination span.current {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

/* ----------------------------------------------------------
   WOOCOMMERCE (minimal reset if ever needed)
---------------------------------------------------------- */
.woocommerce-notices-wrapper { display: none; }

/* ----------------------------------------------------------
   ANIMATIONS
---------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 1100px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-split__image { aspect-ratio: 16/9; }
  .contact-section { grid-template-columns: 1fr; }
  .location-intro { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .service-list-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-menu, .header-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 580px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

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

  .service-list-grid {
    grid-template-columns: 1fr;
  }

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

  .pillar-card {
    aspect-ratio: 4/3;
  }
}

/* ----------------------------------------------------------
   MOBILE NAV DRAWER
---------------------------------------------------------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-nav__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 31, 24, 0);
  transition: background var(--dur-slow) var(--ease);
}

.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--white);
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-nav.is-open {
  pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav__overlay {
  background: rgba(15, 31, 24, 0.6);
}

.mobile-nav.is-open .mobile-nav__drawer {
  transform: translateX(0);
}

.mobile-nav__close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-menu-list > li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu-list > li > a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
}

.mobile-menu-list .sub-menu {
  padding: 0 0 0.75rem 1rem;
}

.mobile-menu-list .sub-menu li a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--mid-grey);
}

.mobile-nav__footer {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ----------------------------------------------------------
   PRINT
---------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-banner, .mobile-nav { display: none; }
}

/* ----------------------------------------------------------
   CONTACT FORM — DEDICATED TEMPLATE STYLES
---------------------------------------------------------- */

/* Status message */
.form-status {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.form-status--success {
  background: #e6f5ec;
  color: #1a5c30;
  border: 1.5px solid #a0d8b3;
}

.form-status--error {
  background: #fdecea;
  color: #c0392b;
  border: 1.5px solid #f0b0b0;
}

/* Error state on fields */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e74c3c;
}

.form-group.has-error label {
  color: #e74c3c;
}

/* Spinner */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Contact page layout */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: var(--space-2xl);
  align-items: start;
}

/* Contact info panel */
.contact-info-panel {
  position: sticky;
  top: 100px;
}

.contact-info-panel h2 {
  margin-bottom: 1rem;
}

.contact-info-panel .lead {
  margin-bottom: var(--space-lg);
}

.contact-detail-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: 0.75rem;
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.contact-detail-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
}

.contact-detail-card__icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-detail-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-detail-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}

.contact-detail-card__value a {
  color: var(--forest);
  transition: color var(--dur-fast);
}

.contact-detail-card__value a:hover {
  color: var(--stone);
}

/* Working hours box */
.hours-box {
  background: var(--sage-pale);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 0.75rem;
}

.hours-box h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(74, 107, 90, 0.15);
  color: var(--charcoal);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--forest);
}

/* Form card */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--forest);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.contact-form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

/* Checkbox / consent */
.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--forest);
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.form-checkbox label a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Honeypot — hidden from humans */
.form-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

/* Submit button full width */
.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 0.95rem;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

/* Trust badges under form */
.form-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--mid-grey);
  font-weight: 500;
}

.form-trust-item svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* Map embed */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: var(--space-xl);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* FAQ on contact page */
.contact-faq {
  margin-top: var(--space-2xl);
}

/* Responsive */
@media (max-width: 960px) {
  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    position: static;
  }

  .contact-form-card {
    padding: 1.75rem;
  }
}

/* ----------------------------------------------------------
   CUSTOM LOGO (set via Appearance > Customize > Site Identity)
---------------------------------------------------------- */
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}

.site-logo .custom-logo {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity var(--dur-fast) var(--ease);
}

.site-logo .custom-logo:hover {
  opacity: 0.85;
}

/* Slightly smaller when header is scrolled */
.site-header--scrolled .custom-logo {
  height: 38px;
}

@media (max-width: 580px) {
  .site-logo .custom-logo {
    height: 36px;
  }
}

/* ----------------------------------------------------------
   CONTACT STRIP
---------------------------------------------------------- */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.contact-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.contact-strip__item--primary {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.contact-strip__item--hours {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .contact-strip {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .contact-strip__item {
    white-space: normal;
  }
}

/* ----------------------------------------------------------
   CONTACT COVERAGE GRID
---------------------------------------------------------- */
.contact-coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.contact-coverage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 760px) {
  .contact-coverage {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------------------------------
   GLOBAL MOBILE OVERFLOW FIXES
---------------------------------------------------------- */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Prevent any section from breaking out */
section, header, footer {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Fix hours box on small screens */
.hours-box .hours-row {
  flex-wrap: wrap;
  gap: 0.25rem;
}

/* Fix contact detail cards on small screens */
@media (max-width: 480px) {
  .contact-detail-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-form-card {
    padding: 1.25rem;
  }

  .contact-page {
    gap: var(--space-lg);
  }

  /* Prevent long email addresses overflowing */
  .contact-detail-card__value {
    word-break: break-all;
    font-size: 0.88rem;
  }

  .contact-strip__item--hours {
    white-space: normal;
  }

  /* Fix form row stacking */
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Fix hero text overflow on very small screens */
@media (max-width: 400px) {
  .hero__title {
    font-size: 2.2rem;
  }

  .hero__text {
    font-size: 0.95rem;
  }

  .hero__eyebrow {
    font-size: 0.65rem;
  }

  .btn--lg {
    padding: 0.9rem 1.5rem;
    font-size: 0.8rem;
  }
}
