/* ============================================
   CSS VARIABLES / DESIGN TOKENS
   ============================================ */
:root {
  --color-forest: #1B3A2D;
  --color-forest-light: #264D3B;
  --color-forest-dark: #0F1E17;
  --color-navy: #1C2E4A;
  --color-navy-light: #2A4166;

  --color-cream: #F5F6F7;
  --color-warm-white: #FAFBFC;
  --color-sand: #E2E4E8;
  --color-sand-dark: #CDD1D6;
  --color-bark: #5C6270;
  --color-bark-light: #7B8291;

  --color-amber: #C8872B;
  --color-amber-light: #D9A04E;
  --color-amber-dark: #A36B1A;
  --color-rust: #A0522D;

  --color-charcoal: #2C2C2C;
  --color-gray-700: #4A4A4A;
  --color-gray-500: #7A7A7A;
  --color-gray-300: #B8B8B8;
  --color-gray-100: #EFEFEF;
  --color-white: #FFFFFF;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --section-pad-y: clamp(4.5rem, 9vw, 7.5rem);
  --section-pad-x: clamp(1.25rem, 5vw, 3rem);
  --container-max: 1240px;
  --container-wide: 1400px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}
.container--wide { max-width: var(--container-wide); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); }
h4 { font-size: clamp(1.05rem, 2vw, 1.25rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 0.85rem;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-amber);
  border-radius: 2px;
}

.section-heading { color: var(--color-forest-dark); margin-bottom: 1rem; }
.section-subtext {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--color-gray-700);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  line-height: 1.3;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--color-amber);
  color: var(--color-white);
  border-color: var(--color-amber);
  box-shadow: 0 2px 8px rgba(200,135,43,0.3);
}
.btn--primary:hover {
  background: var(--color-amber-dark);
  border-color: var(--color-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,135,43,0.35);
}

.btn--secondary {
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(4px);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-forest);
  border-color: var(--color-forest);
}
.btn--outline-dark:hover {
  background: var(--color-forest);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-forest);
  border-color: var(--color-white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--large { padding: 1.05rem 2.4rem; font-size: 1rem; }
.btn--small { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.anim-fade-up.visible { opacity: 1; transform: translateY(0); }
.anim-fade-up.d1 { transition-delay: 0.1s; }
.anim-fade-up.d2 { transition-delay: 0.2s; }
.anim-fade-up.d3 { transition-delay: 0.3s; }
.anim-fade-up.d4 { transition-delay: 0.4s; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--color-forest-dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}
.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}
.top-bar__message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar__message svg { width: 14px; height: 14px; stroke: var(--color-amber-light); flex-shrink: 0; }
.top-bar__phones {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.top-bar__phone:hover { color: var(--color-amber-light); }
.top-bar__phone svg { width: 13px; height: 13px; stroke: currentColor; }
.top-bar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 700px) {
  .top-bar__message span { display: none; }
  .top-bar__message::after { content: 'Since 1950 — 75+ Years'; }
}
@media (max-width: 480px) {
  .top-bar { font-size: 0.72rem; }
  .top-bar__message { display: none; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253,252,250,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease-out);
}
.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
  background: rgba(253,252,250,0.95);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  height: 76px;
}

.header__logo { display: flex; align-items: center; }
.header__logo img { height: 44px; width: auto; }

.header__nav { display: flex; align-items: center; gap: 1.5rem; }
.header__nav-links { display: flex; align-items: center; gap: 0; }

/* WordPress nav menu integration */
.header__nav-links,
.header__nav-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-links li { position: relative; }
.header__nav-links > li > a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gray-700);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  display: block;
}
.header__nav-links > li > a:hover,
.header__nav-links > li.current-menu-item > a,
.header__nav-links > li.current-menu-ancestor > a {
  color: var(--color-forest);
  background: rgba(27,58,45,0.05);
}

/* Dropdown */
.header__nav-links li ul.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
  border: 1px solid var(--color-gray-100);
  z-index: 100;
}
.header__nav-links li:hover > ul.sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header__nav-links li ul.sub-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-gray-700);
  transition: background 0.15s, color 0.15s;
}
.header__nav-links li ul.sub-menu li a:hover {
  background: var(--color-cream);
  color: var(--color-forest);
}

.header__cta .btn { font-size: 0.82rem; padding: 0.55rem 1.15rem; }

/* Mobile Toggle */
.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  position: relative;
  width: 36px;
  height: 36px;
  z-index: 10000;
}
.header__mobile-toggle span {
  display: block;
  position: absolute;
  left: 6px;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: 0.35s var(--ease-out);
}
.header__mobile-toggle span:nth-child(1) { top: 10px; }
.header__mobile-toggle span:nth-child(2) { top: 17px; }
.header__mobile-toggle span:nth-child(3) { top: 24px; }
.header__mobile-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.header__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.header__mobile-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

/* Mobile Nav - lives outside <header> to avoid backdrop-filter stacking */
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  overflow-y: auto;
  z-index: 9999;
  flex-direction: column;
}
.header__mobile-nav.active { display: flex; }

/* Mobile Nav Header: Logo + Close */
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--section-pad-x);
  border-bottom: 1px solid var(--color-gray-100);
  flex-shrink: 0;
}
.mobile-nav__logo img { height: 36px; width: auto; }
.mobile-nav__close {
  width: 40px; height: 40px;
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-nav__close:hover { background: var(--color-sand); }
.mobile-nav__close svg { width: 20px; height: 20px; stroke: var(--color-charcoal); }

/* Mobile Nav Links */
.mobile-nav__links {
  flex: 1;
  padding: 0.5rem var(--section-pad-x);
  overflow-y: auto;
}
.mobile-nav__links ul { list-style: none; margin: 0; padding: 0; }

/* Top-level items */
.mobile-nav__links > ul > li {
  border-bottom: 1px solid var(--color-gray-100);
}
.mobile-nav__links > ul > li > a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 0;
  color: var(--color-charcoal);
  transition: color 0.2s;
}
.mobile-nav__links > ul > li > a:hover,
.mobile-nav__links > ul > li.current-menu-item > a {
  color: var(--color-forest);
}

/* Parent items with submenus: make room for toggle arrow */
.mobile-nav__links > ul > li.menu-item-has-children {
  position: relative;
}
.mobile-nav__links > ul > li.menu-item-has-children > a {
  padding-right: 3rem;
}

/* Submenu toggle arrow button */
.mobile-submenu-toggle {
  position: absolute;
  top: 0; right: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-left: 1px solid var(--color-gray-100);
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-submenu-toggle:hover { background: var(--color-cream); }
.mobile-submenu-toggle svg {
  width: 18px; height: 18px;
  stroke: var(--color-gray-500);
  stroke-width: 2;
  transition: transform 0.3s var(--ease-out);
}
.mobile-submenu-toggle.open svg {
  transform: rotate(180deg);
}

/* Submenus: hidden by default */
.mobile-nav__links ul ul.sub-menu {
  display: none;
  background: var(--color-cream);
  border-radius: var(--radius-md);
  margin: 0 0 0.5rem;
  padding: 0.25rem 0;
}
.mobile-nav__links ul ul.sub-menu.open {
  display: block;
}
.mobile-nav__links ul ul.sub-menu li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-gray-700);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav__links ul ul.sub-menu li a:hover {
  color: var(--color-forest);
  background: rgba(27,58,45,0.04);
}

/* Mobile CTA Button */
.mobile-nav__cta {
  margin: 1rem var(--section-pad-x) 1.5rem;
  width: calc(100% - var(--section-pad-x) * 2);
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .header__nav-links, .header__cta { display: none; }
  .header__mobile-toggle { display: block; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: clamp(540px, 80vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 2rem 0;
}
.hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15,30,23,0.93) 0%, rgba(27,58,45,0.85) 35%, rgba(28,46,74,0.75) 70%, rgba(28,46,74,0.65) 100%);
}
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.5) 8px, rgba(255,255,255,0.5) 9px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(200,135,43,0.12);
  border: 1px solid rgba(200,135,43,0.25);
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--color-amber);
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}
.hero__badge span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-amber-light);
  letter-spacing: 0.06em;
}
.hero h1 {
  color: var(--color-white);
  max-width: 720px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s var(--ease-out) 0.35s both;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero h1 em { font-style: italic; color: var(--color-amber-light); }
.hero__subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s var(--ease-out) 0.5s both;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.7s var(--ease-out) 0.65s both;
}
.hero__stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeIn 0.8s var(--ease-out) 1s both;
}
.hero__stat { display: flex; align-items: center; gap: 1rem; }
.hero__stat-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(200,135,43,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__stat-icon svg { width: 20px; height: 20px; stroke: var(--color-amber-light); }
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-white);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-top: 0.1rem;
}
@media (max-width: 600px) {
  .hero__stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero__stat-icon { display: none; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--color-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0;
  position: relative;
  z-index: 10;
}
.trust-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  position: relative;
  transition: background 0.3s;
}
.trust-bar__item:hover { background: var(--color-cream); }
.trust-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%; width: 1px;
  background: var(--color-gray-100);
}
.trust-bar__icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-forest), var(--color-forest-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(27,58,45,0.2);
}
.trust-bar__icon svg { width: 24px; height: 24px; stroke: var(--color-white); }
.trust-bar__text strong { display: block; font-size: 0.88rem; color: var(--color-charcoal); line-height: 1.3; }
.trust-bar__text span { font-size: 0.78rem; color: var(--color-gray-500); }
@media (max-width: 960px) {
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__item:nth-child(2)::after { display: none; }
}
@media (max-width: 520px) {
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__item::after { display: none !important; }
  .trust-bar__item { border-bottom: 1px solid var(--color-gray-100); }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: var(--section-pad-y) 0;
  background: var(--color-cream);
  position: relative;
}
.services__header { text-align: center; margin-bottom: 3.5rem; }
.services__header .section-subtext { margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); }

.service-card__image { height: 180px; overflow: hidden; position: relative; }
.service-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover .service-card__image img { transform: scale(1.06); }
.service-card__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.04) 100%);
}

.service-card__body { padding: 1.75rem 1.5rem 1.5rem; }
.service-card__icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--color-forest), var(--color-forest-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: -38px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(27,58,45,0.25);
}
.service-card__icon svg { width: 22px; height: 22px; stroke: var(--color-white); }
.service-card h3 { margin-bottom: 0.5rem; color: var(--color-forest-dark); font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; color: var(--color-gray-500); line-height: 1.7; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-amber);
  transition: gap 0.25s var(--ease-out), color 0.2s;
}
.service-card__link:hover { gap: 0.65rem; color: var(--color-amber-dark); }
.service-card__link svg { width: 16px; height: 16px; }

@media (max-width: 960px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us { padding: var(--section-pad-y) 0; background: var(--color-warm-white); }
.why-us__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.why-us__image-wrap { position: relative; }
.why-us__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-us__image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.why-us__float-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--color-forest);
  color: var(--color-white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.why-us__float-card strong {
  font-family: var(--font-display);
  font-size: 2.75rem;
  display: block;
  line-height: 1;
  color: var(--color-amber-light);
}
.why-us__float-card span { font-size: 0.82rem; font-weight: 600; opacity: 0.7; }
.why-us__secondary-image {
  position: absolute;
  top: -16px; left: -16px;
  width: 140px; height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--color-white);
  z-index: 2;
}
.why-us__secondary-image img { width: 100%; height: 100%; object-fit: cover; }

.why-us__list { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
.why-us__item { display: flex; gap: 1rem; align-items: flex-start; }
.why-us__item-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(27,58,45,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-us__item-icon svg { width: 20px; height: 20px; stroke: var(--color-forest); }
.why-us__item h4 { margin-bottom: 0.3rem; color: var(--color-charcoal); }
.why-us__item p { font-size: 0.9rem; color: var(--color-gray-500); line-height: 1.7; }

@media (max-width: 860px) {
  .why-us__grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-us__float-card { bottom: -16px; right: 12px; }
  .why-us__secondary-image { display: none; }
}

/* ============================================
   CUSTOMER SEGMENTS
   ============================================ */
.segments {
  padding: var(--section-pad-y) 0;
  background: var(--color-forest-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.segments__bg { position: absolute; inset: 0; z-index: 0; }
.segments__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; filter: grayscale(50%); }
.segments__bg-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, var(--color-forest-dark), rgba(15,30,23,0.95)); }
.segments > .container { position: relative; z-index: 1; }
.segments__header { text-align: center; margin-bottom: 3.5rem; }
.segments__header .section-label::before { background: var(--color-amber-light); }
.segments__header .section-subtext { color: rgba(255,255,255,0.55); margin: 0 auto; }
.segments__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.segment-card { border-radius: var(--radius-xl); overflow: hidden; transition: transform 0.4s var(--ease-out); }
.segment-card:hover { transform: translateY(-4px); }
.segment-card__image { height: 200px; overflow: hidden; position: relative; }
.segment-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.segment-card:hover .segment-card__image img { transform: scale(1.05); }
.segment-card__image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(15,30,23,0.6));
}
.segment-card__body {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 2rem 2rem 2.25rem;
  backdrop-filter: blur(8px);
}
.segment-card__body h3 { margin-bottom: 0.65rem; font-size: 1.4rem; }
.segment-card__body p { font-size: 0.92rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1.25rem; }
.segment-card ul { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.segment-card li {
  font-size: 0.88rem; color: rgba(255,255,255,0.7);
  padding-left: 1.5rem; position: relative;
}
.segment-card li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--color-amber-light); font-weight: 700; font-size: 0.85rem;
}
@media (max-width: 720px) { .segments__grid { grid-template-columns: 1fr; } }

/* ============================================
   PRODUCT CATEGORIES
   ============================================ */
.categories { padding: var(--section-pad-y) 0; background: var(--color-warm-white); }
.categories__header { text-align: center; margin-bottom: 3.5rem; }
.categories__header .section-subtext { margin: 0 auto; }
.categories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.categories__grid .category-card:first-child { grid-row: 1 / 3; aspect-ratio: auto; }
.categories__grid .category-card:not(:first-child) { aspect-ratio: 1.4; }

.category-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; aspect-ratio: 1;
  display: block;
}
.category-card__image { position: absolute; inset: 0; }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.category-card:hover .category-card__image img { transform: scale(1.08); }
.category-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100%);
  transition: background 0.3s;
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(27,58,45,0.85) 0%, rgba(27,58,45,0.2) 55%, rgba(0,0,0,0.05) 100%);
}
.category-card__content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; z-index: 2; }
.category-card__content h3 { color: var(--color-white); font-size: clamp(1.05rem, 1.6vw, 1.3rem); margin-bottom: 0.2rem; }
.category-card__content span { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 600; }
.category-card__arrow {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateX(-8px); transition: all 0.3s var(--ease-out);
}
.category-card:hover .category-card__arrow { opacity: 1; transform: translateX(0); }
.category-card__arrow svg { width: 18px; height: 18px; stroke: #fff; }

@media (max-width: 960px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .categories__grid .category-card:first-child { grid-row: auto; }
  .category-card { aspect-ratio: 1.3 !important; }
}
@media (max-width: 520px) { .category-card { aspect-ratio: 1.6 !important; } }

/* ============================================
   DESIGN CTA
   ============================================ */
.design-cta { padding: var(--section-pad-y) 0; background: var(--color-cream); }
.design-cta__inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  align-items: stretch; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
}
.design-cta__visual { position: relative; min-height: 400px; overflow: hidden; }
.design-cta__visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.design-cta__visual-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,46,74,0.4), rgba(27,58,45,0.2)); z-index: 1; }
.design-cta__visual-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; z-index: 2;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  padding: 0.6rem 1.15rem; border-radius: var(--radius-md);
  font-size: 0.78rem; font-weight: 700; color: var(--color-white);
}
.design-cta__content {
  background: var(--color-white); padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}
.design-cta__content h2 { margin-bottom: 1rem; }
.design-cta__content p { font-size: 0.95rem; color: var(--color-gray-500); line-height: 1.8; margin-bottom: 1.75rem; }
.design-cta__features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.design-cta__features li {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.9rem; font-weight: 600; color: var(--color-charcoal);
}
.design-cta__features li svg { width: 20px; height: 20px; stroke: var(--color-forest); flex-shrink: 0; }
@media (max-width: 860px) {
  .design-cta__inner { grid-template-columns: 1fr; }
  .design-cta__visual { min-height: 260px; }
  .design-cta__content { padding: 2.5rem 2rem; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: var(--section-pad-y) 0; background: var(--color-warm-white); position: relative; overflow: hidden; }
.testimonials__watermark {
  position: absolute; top: -20px; right: 5%;
  font-family: var(--font-display); font-size: clamp(12rem, 20vw, 22rem);
  color: var(--color-sand); opacity: 0.4; line-height: 1;
  pointer-events: none; user-select: none;
}
.testimonials__header { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; position: relative; z-index: 1; }

.testimonial-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 2.25rem 2rem; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.testimonial-card__quote-icon {
  width: 36px; height: 36px; background: var(--color-cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.testimonial-card__quote-icon svg { width: 18px; height: 18px; fill: var(--color-amber); stroke: none; }
.testimonial-card__stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; }
.testimonial-card__stars svg { width: 16px; height: 16px; fill: var(--color-amber); stroke: none; }
.testimonial-card blockquote { font-size: 0.95rem; color: var(--color-gray-700); line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-card__footer {
  display: flex; align-items: center; gap: 0.75rem;
  padding-top: 1.25rem; border-top: 1px solid var(--color-gray-100);
}
.testimonial-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-forest-light), var(--color-forest));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; color: var(--color-white); flex-shrink: 0;
}
.testimonial-card__author { font-size: 0.9rem; font-weight: 700; color: var(--color-charcoal); }
.testimonial-card__role { font-size: 0.78rem; color: var(--color-gray-500); }
@media (max-width: 860px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ============================================
   SERVICE AREA / LOCATIONS
   ============================================ */
.service-area { padding: var(--section-pad-y) 0; background: var(--color-cream); }
.service-area__inner { text-align: center; }
.service-area__locations { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-top: 2rem; }
.service-area__tag {
  background: var(--color-white); border: 1px solid var(--color-sand);
  padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.86rem; font-weight: 600; color: var(--color-bark);
  transition: all 0.25s var(--ease-out);
}
.service-area__tag:hover { border-color: var(--color-forest); color: var(--color-forest); background: rgba(27,58,45,0.04); }

.service-area__stores {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
  margin-top: 3rem; max-width: 820px; margin-left: auto; margin-right: auto;
}
.store-card {
  background: var(--color-white); border-radius: var(--radius-lg);
  padding: 2.25rem; text-align: left; border: 1px solid var(--color-sand);
  box-shadow: var(--shadow-sm); transition: box-shadow 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.store-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.store-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-forest), var(--color-amber));
}
.store-card__label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-amber); margin-bottom: 0.5rem;
}
.store-card h4 { margin-bottom: 0.75rem; color: var(--color-forest); font-size: 1.15rem; }
.store-card p { font-size: 0.9rem; color: var(--color-gray-500); line-height: 1.7; }
.store-card__phone {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 0.75rem; font-weight: 700; color: var(--color-forest); font-size: 1rem;
  transition: color 0.2s;
}
.store-card__phone:hover { color: var(--color-amber); }
.store-card__phone svg { width: 18px; height: 18px; stroke: currentColor; }
@media (max-width: 600px) { .service-area__stores { grid-template-columns: 1fr; } }

/* ============================================
   QUOTE / CONTACT FORM
   ============================================ */
.quote-section { padding: var(--section-pad-y) 0; position: relative; overflow: hidden; }
.quote-section__bg-left {
  position: absolute; top: 0; left: 0; bottom: 0; width: 50%;
  background: var(--color-forest-dark); z-index: 0;
}
.quote-section__bg-left-image { position: absolute; inset: 0; opacity: 0.08; }
.quote-section__bg-left-image img { width: 100%; height: 100%; object-fit: cover; }
.quote-section__bg-right {
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: var(--color-cream); z-index: 0;
}
.quote-section__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; position: relative; z-index: 1;
}
.quote-section__info { color: var(--color-white); padding: 1rem 0; }
.quote-section__info .section-label::before { background: var(--color-amber-light); }
.quote-section__info h2 { color: var(--color-white); margin-bottom: 1rem; }
.quote-section__info > p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 2.25rem; }

.quote-section__benefits { display: flex; flex-direction: column; gap: 1.15rem; }
.quote-benefit { display: flex; align-items: center; gap: 0.85rem; }
.quote-benefit__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(200,135,43,0.12); border: 1px solid rgba(200,135,43,0.2);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
}
.quote-benefit__icon svg { width: 22px; height: 22px; stroke: var(--color-amber-light); }
.quote-benefit__text strong { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.quote-benefit__text span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.quote-section__trust {
  display: flex; gap: 1.5rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.quote-section__trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.45);
}
.quote-section__trust-item svg { width: 16px; height: 16px; stroke: rgba(255,255,255,0.35); }

.quote-section__form {
  background: var(--color-white); border-radius: var(--radius-xl);
  padding: 2.75rem 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.04);
}
.quote-section__form h3 { color: var(--color-forest-dark); margin-bottom: 0.4rem; }
.quote-section__form > p { font-size: 0.85rem; color: var(--color-gray-500); margin-bottom: 1.75rem; }

/* CF7 Styling */
.quote-section__form .wpcf7 input[type="text"],
.quote-section__form .wpcf7 input[type="email"],
.quote-section__form .wpcf7 input[type="tel"],
.quote-section__form .wpcf7 select,
.quote-section__form .wpcf7 textarea {
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-sand);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  color: var(--color-charcoal);
  width: 100%;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.quote-section__form .wpcf7 input:focus,
.quote-section__form .wpcf7 select:focus,
.quote-section__form .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(27,58,45,0.08);
}
.quote-section__form .wpcf7 textarea { min-height: 110px; resize: vertical; }
.quote-section__form .wpcf7 input[type="submit"] {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 2.4rem;
  background: var(--color-amber);
  color: var(--color-white);
  border: 2px solid var(--color-amber);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.quote-section__form .wpcf7 input[type="submit"]:hover {
  background: var(--color-amber-dark);
  border-color: var(--color-amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,135,43,0.35);
}
.quote-section__form .wpcf7 .wpcf7-not-valid-tip { font-size: 0.8rem; color: #c0392b; }

/* Fallback placeholder form */
.form-placeholder { display: flex; flex-direction: column; gap: 1rem; }
.form-placeholder__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-placeholder__field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-placeholder__field label { font-size: 0.8rem; font-weight: 700; color: var(--color-charcoal); }
.form-placeholder__field input,
.form-placeholder__field select,
.form-placeholder__field textarea {
  font-family: var(--font-body); font-size: 0.92rem; padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-sand); border-radius: var(--radius-md);
  background: var(--color-cream); color: var(--color-charcoal);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-placeholder__field input:focus,
.form-placeholder__field select:focus,
.form-placeholder__field textarea:focus { outline: none; border-color: var(--color-forest); box-shadow: 0 0 0 3px rgba(27,58,45,0.08); }
.form-placeholder__field textarea { min-height: 110px; resize: vertical; }
.form-placeholder .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-placeholder__note { font-size: 0.75rem; color: var(--color-gray-500); text-align: center; margin-top: 0.5rem; }
.form-placeholder__note svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 3px; stroke: var(--color-gray-300); }

@media (max-width: 860px) {
  .quote-section__bg-left, .quote-section__bg-right { width: 100%; }
  .quote-section__bg-left { height: 55%; bottom: auto; }
  .quote-section__bg-right { height: 45%; top: auto; }
  .quote-section__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-placeholder__row { grid-template-columns: 1fr; }
  .quote-section__trust { flex-wrap: wrap; gap: 1rem; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--color-navy); text-align: center; color: var(--color-white);
  position: relative; overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(200,135,43,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(27,58,45,0.1) 0%, transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: var(--color-white); margin-bottom: 1rem; }
.final-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto 2.25rem; }
.final-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ============================================
   STORE CALL PICKER (used in hero, CTA, contact)
   ============================================ */
.store-call-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.store-call-group--center { justify-content: center; }

.store-call-btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  line-height: 1.3;
}
.store-call-btn__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.store-call-btn__icon svg { width: 18px; height: 18px; }
.store-call-btn__text { text-align: left; }
.store-call-btn__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.55;
  line-height: 1.3;
}
.store-call-btn__number {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Dark variant (hero, final CTA) */
.store-call-btn--dark {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
}
.store-call-btn--dark .store-call-btn__icon {
  background: rgba(255,255,255,0.08);
}
.store-call-btn--dark .store-call-btn__icon svg { stroke: var(--color-amber-light); }
.store-call-btn--dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* Light variant (on white/gray backgrounds) */
.store-call-btn--light {
  background: var(--color-white);
  border: 1.5px solid var(--color-sand);
  color: var(--color-charcoal);
  box-shadow: var(--shadow-sm);
}
.store-call-btn--light .store-call-btn__icon {
  background: rgba(27,58,45,0.06);
}
.store-call-btn--light .store-call-btn__icon svg { stroke: var(--color-forest); }
.store-call-btn--light:hover {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.store-call-btn--light .store-call-btn__number { color: var(--color-forest); }

/* Accent variant (CTA white button context) */
.store-call-btn--accent {
  background: var(--color-white);
  border: 2px solid var(--color-white);
  color: var(--color-forest);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.store-call-btn--accent .store-call-btn__icon {
  background: rgba(27,58,45,0.08);
}
.store-call-btn--accent .store-call-btn__icon svg { stroke: var(--color-forest); }
.store-call-btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.store-call-btn--accent .store-call-btn__number { color: var(--color-forest); }

/* "or call" divider */
.actions-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 0.75rem;
}
.actions-divider--light { color: rgba(255,255,255,0.3); }
.actions-divider--light::before,
.actions-divider--light::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.actions-divider span {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* In-section store phone block (for contact section) */
.quote-section__phones {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.quote-section__phones-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.85rem;
}

@media (max-width: 520px) {
  .store-call-group { flex-direction: column; }
  .store-call-btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-forest-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer__brand-logo { margin-bottom: 1rem; }
.footer__brand-logo img { opacity: 0.85; max-width: 180px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.75; max-width: 300px; }
.footer__heading {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35); margin-bottom: 1.15rem;
}
.footer__links a { display: block; font-size: 0.88rem; padding: 0.35rem 0; transition: color 0.2s; }
.footer__links a:hover { color: var(--color-amber-light); }

/* WordPress widget areas in footer */
.footer__widgets { margin-bottom: 1rem; }
.footer__widgets .widget { margin-bottom: 1.5rem; }
.footer__widgets .widget-title {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35); margin-bottom: 1.15rem;
}
.footer__widgets ul { list-style: none; margin: 0; padding: 0; }
.footer__widgets ul li a { display: block; font-size: 0.88rem; padding: 0.35rem 0; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__widgets ul li a:hover { color: var(--color-amber-light); }

.footer__contact-item { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.85rem; font-size: 0.88rem; }
.footer__contact-item svg { width: 18px; height: 18px; stroke: var(--color-amber-light); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--color-amber-light); }

.footer__bottom {
  margin-top: 3rem; padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer__bottom a:hover { color: var(--color-amber-light); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.footer__social a:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.footer__social svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.55); }

@media (max-width: 960px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ============================================
   DEPARTMENT PAGES
   ============================================ */
.dept-hero {
  position: relative;
  min-height: clamp(320px, 45vw, 420px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.dept-hero__image {
  position: absolute; inset: 0; z-index: 0;
}
.dept-hero__image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.dept-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(15,30,23,0.92) 0%, rgba(15,30,23,0.6) 40%, rgba(15,30,23,0.3) 100%);
}
.dept-hero__content {
  position: relative; z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 3rem var(--section-pad-x);
  width: 100%;
}
.dept-hero__breadcrumb {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.dept-hero__breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.dept-hero__breadcrumb a:hover { color: var(--color-amber-light); }
.dept-hero__breadcrumb svg { width: 14px; height: 14px; stroke: rgba(255,255,255,0.35); }
.dept-hero h1 {
  color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3); margin-bottom: 0.5rem;
}
.dept-hero p {
  color: rgba(255,255,255,0.7); font-size: 1.05rem;
  max-width: 560px; line-height: 1.75;
}

/* Dept intro */
.dept-intro {
  padding: var(--section-pad-y) 0;
  background: var(--color-warm-white);
}
.dept-intro__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.dept-intro__image {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dept-intro__image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.dept-intro__content h2 { margin-bottom: 1rem; }
.dept-intro__content p {
  font-size: 0.95rem; color: var(--color-gray-700);
  line-height: 1.8; margin-bottom: 1rem;
}
@media (max-width: 860px) {
  .dept-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Product/feature grid */
.dept-products {
  padding: var(--section-pad-y) 0;
  background: var(--color-cream);
}
.dept-products__header { text-align: center; margin-bottom: 3rem; }
.dept-products__header .section-subtext { margin: 0 auto; }
.dept-products__grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.dept-product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; align-items: flex-start; gap: 1rem;
}
.dept-product-card:hover {
  box-shadow: var(--shadow-card); transform: translateY(-3px);
}
.dept-product-card__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-forest), var(--color-forest-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.dept-product-card__icon svg { width: 20px; height: 20px; stroke: #fff; }
.dept-product-card h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--color-charcoal); }
.dept-product-card p { font-size: 0.85rem; color: var(--color-gray-500); line-height: 1.65; }

/* Dept CTA banner */
.dept-cta {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--color-forest);
  text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.dept-cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.015) 8px, rgba(255,255,255,0.015) 9px);
}
.dept-cta .container { position: relative; z-index: 1; }
.dept-cta h2 { color: #fff; margin-bottom: 0.75rem; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.dept-cta p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 2rem; font-size: 1rem; }
.dept-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Related departments */
.dept-related {
  padding: var(--section-pad-y) 0;
  background: var(--color-warm-white);
}
.dept-related__header { text-align: center; margin-bottom: 2.5rem; }
.dept-related__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.dept-related__card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 1.3; display: block;
}
.dept-related__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.dept-related__card:hover img { transform: scale(1.06); }
.dept-related__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}
.dept-related__card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem; z-index: 1;
}
.dept-related__card-content h4 {
  color: #fff; font-size: 1rem; margin: 0;
}
@media (max-width: 960px) { .dept-related__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .dept-related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .dept-related__grid { grid-template-columns: 1fr; } }

/* Departments landing grid */
.depts-landing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.dept-landing-card {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; aspect-ratio: 1.1; display: block;
}
.dept-landing-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.dept-landing-card:hover img { transform: scale(1.06); }
.dept-landing-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 55%);
  transition: background 0.3s;
}
.dept-landing-card:hover .dept-landing-card__overlay {
  background: linear-gradient(to top, rgba(27,58,45,0.88) 0%, rgba(27,58,45,0.2) 55%);
}
.dept-landing-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; z-index: 1;
}
.dept-landing-card__content h3 {
  color: #fff; font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.35rem;
}
.dept-landing-card__content p {
  color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.75rem;
}
.dept-landing-card__link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.82rem; font-weight: 700; color: var(--color-amber-light);
  transition: gap 0.25s;
}
.dept-landing-card:hover .dept-landing-card__link { gap: 0.6rem; }
.dept-landing-card__link svg { width: 16px; height: 16px; }

@media (max-width: 860px) { .depts-landing__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .depts-landing__grid { grid-template-columns: 1fr; } }

/* Department: Alternating Feature Rows */
.dept-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 2.5rem 0;
}
.dept-feature + .dept-feature { border-top: 1px solid var(--color-sand); }
.dept-feature--reverse .dept-feature__image { order: 2; }
.dept-feature__image {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.dept-feature__image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.dept-feature__content h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--color-forest-dark); margin-bottom: 0.75rem;
}
.dept-feature__content p {
  font-size: 0.95rem; color: var(--color-gray-700);
  line-height: 1.8; margin-bottom: 0.75rem;
}
.dept-feature__content ul {
  list-style: none; padding: 0; margin: 1rem 0 0;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.dept-feature__content ul li {
  font-size: 0.9rem; color: var(--color-gray-700);
  padding-left: 1.5rem; position: relative;
}
.dept-feature__content ul li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; background: var(--color-amber);
  border-radius: 50%;
}
@media (max-width: 860px) {
  .dept-feature { grid-template-columns: 1fr; gap: 2rem; }
  .dept-feature--reverse .dept-feature__image { order: 0; }
}

/* Department: Product Photo Gallery */
.dept-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}
.dept-gallery img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), box-shadow 0.3s;
}
.dept-gallery img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
@media (max-width: 600px) {
  .dept-gallery img { width: 140px; height: 140px; }
}

/* Lightbox */
.knowles-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.knowles-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.knowles-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.92);
  transition: transform 0.35s var(--ease-out);
  object-fit: contain;
}
.knowles-lightbox.active .knowles-lightbox__img {
  transform: scale(1);
}
.knowles-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.knowles-lightbox__close:hover { background: rgba(255,255,255,0.2); }
.knowles-lightbox__close svg { width: 20px; height: 20px; stroke: #fff; stroke-width: 2; }
.knowles-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}
.knowles-lightbox__nav:hover { background: rgba(255,255,255,0.2); }
.knowles-lightbox__nav svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 2; }
.knowles-lightbox__prev { left: 1.25rem; }
.knowles-lightbox__next { right: 1.25rem; }
.knowles-lightbox__counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  z-index: 2;
}

/* Department: Brand Callout Strip */
.dept-brand-strip {
  background: var(--color-forest);
  padding: 1.5rem 0;
  text-align: center;
}
.dept-brand-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.7);
}
.dept-brand-strip__inner strong { color: var(--color-amber-light); }

/* Department: Brand Logos Section */
.dept-brands {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-sand);
}
.dept-brands__header {
  text-align: center;
  margin-bottom: 2rem;
}
.dept-brands__header h3 {
  font-size: 1.1rem;
  color: var(--color-forest-dark);
  margin-bottom: 0.25rem;
}
.dept-brands__header p {
  font-size: 0.85rem;
  color: var(--color-gray-500);
}
.dept-brands__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.dept-brands__logo {
  width: 110px;
  height: 80px;
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.dept-brands__logo:hover {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.dept-brands__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s;
}
.dept-brands__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 600px) {
  .dept-brands__logo { width: 90px; height: 65px; padding: 0.5rem; }
}

/* Department: Inline Quote CTA */
.dept-inline-cta {
  background: var(--color-cream);
  border: 1px solid var(--color-sand);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; margin: 2.5rem 0;
}
.dept-inline-cta h3 {
  font-size: 1.3rem; color: var(--color-forest-dark); margin-bottom: 0.25rem;
}
.dept-inline-cta p { font-size: 0.9rem; color: var(--color-gray-500); margin: 0; }
@media (max-width: 700px) {
  .dept-inline-cta { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}

/* Department: Tips / Pro Advice Box */
.dept-tip {
  background: rgba(27,58,45,0.04);
  border-left: 4px solid var(--color-forest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.dept-tip__label {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--color-forest); margin-bottom: 0.5rem;
}
.dept-tip p { font-size: 0.9rem; color: var(--color-gray-700); line-height: 1.75; margin: 0; }

/* ============================================
   INNER PAGES: Content
   ============================================ */
.page-header {
  background: var(--color-forest-dark);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255,255,255,0.02) 8px, rgba(255,255,255,0.02) 9px);
}
.page-header h1 { position: relative; z-index: 1; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-header p { position: relative; z-index: 1; color: rgba(255,255,255,0.6); margin-top: 0.75rem; font-size: 1.05rem; }

.page-content {
  padding: var(--section-pad-y) 0;
}
.page-content .container { max-width: 800px; }
.page-content h2 { margin: 2rem 0 1rem; }
.page-content h3 { margin: 1.5rem 0 0.75rem; }
.page-content p { margin-bottom: 1.25rem; color: var(--color-gray-700); }
.page-content ul, .page-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.page-content li { margin-bottom: 0.5rem; color: var(--color-gray-700); }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content img { border-radius: var(--radius-lg); margin: 1.5rem 0; }
.page-content blockquote {
  border-left: 4px solid var(--color-amber);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--color-cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-gray-700);
}
.page-content a { color: var(--color-amber); font-weight: 600; transition: color 0.2s; }
.page-content a:hover { color: var(--color-amber-dark); }

/* ============================================
   404
   ============================================ */
.error-404 { text-align: center; padding: 6rem 0; }
.error-404__code { font-family: var(--font-display); font-size: 8rem; color: var(--color-sand); line-height: 1; }
.error-404 h1 { font-size: 2rem; margin: 1rem 0; }
.error-404 p { color: var(--color-gray-500); margin-bottom: 2rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-stores {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.contact-map {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* About / Services page: prevent empty page-content from adding space */
.page-content:empty,
.page-content:has(> .container:empty) {
  padding: 0;
}

/* ============================================
   WOOCOMMERCE COMPATIBILITY
   ============================================ */
.woocommerce .container,
.woocommerce-page .container { max-width: var(--container-max); }
.woocommerce-page .page-content { padding: var(--section-pad-y) 0; }
.woocommerce-page .page-content .container { max-width: var(--container-max); }

/* WC Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  background: var(--color-amber) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  padding: 0.85rem 1.75rem !important;
  transition: all 0.3s var(--ease-out) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--color-amber-dark) !important;
}

/* WC Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--color-amber) !important;
}
.woocommerce-message::before { color: var(--color-amber) !important; }

/* WC Tables */
.woocommerce table.shop_table {
  border-radius: var(--radius-md);
  overflow: hidden;
  border-color: var(--color-sand) !important;
}
