/* ============================================================
   Wolentra — Main Stylesheet
   wl-style.css
   Coffee Machine Repair Service | Cambridge, UK
   ============================================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
  /* Core Color Palette */
  --wl-espresso:        #2C1A0E;
  --wl-dark-roast:      #3D2314;
  --wl-medium-roast:    #5C3317;
  --wl-amber-roast:     #8B4513;
  --wl-caramel:         #C1813C;
  --wl-copper:          #B87333;
  --wl-copper-light:    #D4956A;
  --wl-beige-warm:      #F5EDD8;
  --wl-beige-light:     #FAF6EE;
  --wl-cream:           #FDFAF4;
  --wl-charcoal:        #1E1E1E;
  --wl-charcoal-mid:    #2D2D2D;
  --wl-charcoal-soft:   #3A3A3A;
  --wl-grey-text:       #6B6B6B;
  --wl-grey-border:     #D8CFC2;
  --wl-white:           #FFFFFF;

  /* Semantic Colors */
  --wl-primary:         var(--wl-espresso);
  --wl-accent:          var(--wl-copper);
  --wl-accent-light:    var(--wl-copper-light);
  --wl-bg-main:         var(--wl-cream);
  --wl-bg-section:      var(--wl-beige-light);
  --wl-bg-dark:         var(--wl-charcoal);
  --wl-text-primary:    var(--wl-charcoal);
  --wl-text-secondary:  var(--wl-grey-text);
  --wl-text-light:      var(--wl-cream);

  /* Typography */
  --wl-font-display:    'Playfair Display', Georgia, serif;
  --wl-font-body:       'Source Sans 3', 'Helvetica Neue', sans-serif;
  --wl-font-serif:      'Lora', Georgia, serif;

  /* Spacing */
  --wl-space-xs:        0.25rem;
  --wl-space-sm:        0.5rem;
  --wl-space-md:        1rem;
  --wl-space-lg:        1.5rem;
  --wl-space-xl:        2.5rem;
  --wl-space-xxl:       4rem;
  --wl-space-section:   6rem;

  /* Borders & Radii */
  --wl-radius-sm:       4px;
  --wl-radius-md:       8px;
  --wl-radius-lg:       16px;
  --wl-radius-xl:       24px;
  --wl-radius-pill:     9999px;

  /* Shadows */
  --wl-shadow-sm:       0 2px 8px rgba(44,26,14,0.08);
  --wl-shadow-md:       0 4px 20px rgba(44,26,14,0.12);
  --wl-shadow-lg:       0 8px 40px rgba(44,26,14,0.16);
  --wl-shadow-xl:       0 16px 64px rgba(44,26,14,0.20);

  /* Transitions */
  --wl-transition-fast: 0.15s ease;
  --wl-transition-mid:  0.3s ease;
  --wl-transition-slow: 0.5s ease;

  /* Navbar Height */
  --wl-navbar-h:        72px;
}

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

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

body {
  font-family: var(--wl-font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--wl-text-primary);
  background-color: var(--wl-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--wl-copper);
  text-decoration: none;
  transition: color var(--wl-transition-fast);
}
a:hover {
  color: var(--wl-medium-roast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wl-font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--wl-espresso);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: 0.35rem; }

strong { font-weight: 600; color: var(--wl-dark-roast); }

/* ---- Navigation ---- */
.wl-navbar-main {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--wl-navbar-h);
  background: rgba(253,250,244,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44,26,14,0.08);
  transition: box-shadow var(--wl-transition-mid), background var(--wl-transition-mid);
}
.wl-navbar-main.wl-nav-scrolled {
  box-shadow: var(--wl-shadow-md);
  background: rgba(253,250,244,0.98);
}
.wl-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wl-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.wl-nav-brand-icon {
  width: 38px;
  height: 38px;
  background: var(--wl-espresso);
  border-radius: var(--wl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-caramel);
  font-size: 1rem;
  flex-shrink: 0;
}
.wl-nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.wl-nav-brand-name {
  font-family: var(--wl-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--wl-espresso);
  letter-spacing: -0.02em;
}
.wl-nav-brand-tagline {
  font-size: 0.65rem;
  color: var(--wl-grey-text);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wl-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0; margin: 0;
}
.wl-nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--wl-charcoal-soft);
  padding: 0.5rem 0.85rem;
  border-radius: var(--wl-radius-sm);
  transition: all var(--wl-transition-fast);
  text-decoration: none;
}
.wl-nav-links a:hover,
.wl-nav-links a.wl-nav-active {
  color: var(--wl-espresso);
  background: rgba(44,26,14,0.06);
}
.wl-nav-cta-btn {
  background: var(--wl-espresso) !important;
  color: var(--wl-cream) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: var(--wl-radius-md) !important;
  font-weight: 600 !important;
}
.wl-nav-cta-btn:hover {
  background: var(--wl-dark-roast) !important;
  color: var(--wl-cream) !important;
}
.wl-nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.wl-nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wl-espresso);
  border-radius: 2px;
  transition: all var(--wl-transition-mid);
}
.wl-mobile-nav-panel {
  display: none;
  position: fixed;
  top: var(--wl-navbar-h);
  left: 0; right: 0;
  background: var(--wl-cream);
  border-bottom: 1px solid var(--wl-grey-border);
  padding: 1rem 1.5rem;
  z-index: 999;
  box-shadow: var(--wl-shadow-md);
}
.wl-mobile-nav-panel.wl-mobile-open { display: block; }
.wl-mobile-nav-links {
  list-style: none;
  padding: 0; margin: 0;
}
.wl-mobile-nav-links li { border-bottom: 1px solid rgba(44,26,14,0.06); }
.wl-mobile-nav-links a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--wl-charcoal);
  font-weight: 500;
}

/* ---- Page Wrapper ---- */
.wl-page-wrap {
  padding-top: var(--wl-navbar-h);
  min-height: 100vh;
}

/* ---- Hero Section ---- */
.wl-hero-coffee {
  position: relative;
  min-height: calc(100vh - var(--wl-navbar-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wl-espresso);
}
.wl-hero-bg-layer {
  position: absolute;
  inset: 0;
  background-image: url('../images/banner.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.wl-hero-coffee:hover .wl-hero-bg-layer { transform: scale(1.08); }
.wl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,26,14,0.88) 0%, rgba(61,35,20,0.72) 50%, rgba(44,26,14,0.82) 100%);
}
.wl-hero-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}
.wl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,115,51,0.2);
  border: 1px solid rgba(184,115,51,0.4);
  color: var(--wl-copper-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--wl-radius-pill);
  margin-bottom: 1.5rem;
}
.wl-hero-headline {
  font-family: var(--wl-font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--wl-cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 680px;
}
.wl-hero-headline em {
  font-style: italic;
  color: var(--wl-caramel);
}
.wl-hero-subtext {
  font-size: 1.1rem;
  color: rgba(253,250,244,0.8);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.wl-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.wl-hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(253,250,244,0.15);
}
.wl-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253,250,244,0.7);
  font-size: 0.85rem;
}
.wl-hero-trust-item i { color: var(--wl-caramel); font-size: 0.9rem; }
.wl-hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(253,250,244,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.wl-scroll-dot {
  width: 6px; height: 6px;
  background: var(--wl-caramel);
  border-radius: 50%;
  animation: wl-bounce 2s infinite;
}

/* ---- Buttons ---- */
.wl-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wl-copper);
  color: var(--wl-cream);
  font-family: var(--wl-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--wl-radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--wl-transition-mid);
  box-shadow: 0 4px 16px rgba(184,115,51,0.3);
}
.wl-btn-primary:hover {
  background: var(--wl-amber-roast);
  color: var(--wl-cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,115,51,0.4);
}
.wl-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--wl-cream);
  font-family: var(--wl-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.8rem 1.8rem;
  border-radius: var(--wl-radius-md);
  border: 1.5px solid rgba(253,250,244,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--wl-transition-mid);
}
.wl-btn-secondary:hover {
  background: rgba(253,250,244,0.1);
  color: var(--wl-cream);
  border-color: rgba(253,250,244,0.7);
}
.wl-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--wl-espresso);
  color: var(--wl-cream);
  font-family: var(--wl-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--wl-radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--wl-transition-mid);
}
.wl-btn-dark:hover {
  background: var(--wl-dark-roast);
  color: var(--wl-cream);
  transform: translateY(-1px);
}
.wl-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--wl-espresso);
  font-family: var(--wl-font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: var(--wl-radius-md);
  border: 2px solid var(--wl-espresso);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--wl-transition-mid);
}
.wl-btn-outline-dark:hover {
  background: var(--wl-espresso);
  color: var(--wl-cream);
}
.wl-btn-sm {
  padding: 0.55rem 1.2rem !important;
  font-size: 0.85rem !important;
}

/* ---- Section Utilities ---- */
.wl-section-pad {
  padding: var(--wl-space-section) 0;
}
.wl-section-pad-sm {
  padding: 3.5rem 0;
}
.wl-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wl-inner-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wl-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wl-copper);
  margin-bottom: 0.75rem;
}
.wl-section-headline {
  font-family: var(--wl-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--wl-espresso);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.wl-section-subtext {
  font-size: 1.05rem;
  color: var(--wl-grey-text);
  max-width: 580px;
  line-height: 1.7;
}
.wl-section-headline-light { color: var(--wl-cream); }
.wl-section-subtext-light { color: rgba(253,250,244,0.75); }
.wl-section-label-light { color: var(--wl-caramel); }

/* ---- Section Backgrounds ---- */
.wl-bg-cream { background: var(--wl-cream); }
.wl-bg-beige { background: var(--wl-beige-light); }
.wl-bg-beige-warm { background: var(--wl-beige-warm); }
.wl-bg-dark-espresso { background: var(--wl-espresso); }
.wl-bg-charcoal { background: var(--wl-charcoal); }
.wl-bg-medium-roast { background: var(--wl-medium-roast); }
.wl-bg-gradient-coffee {
  background: linear-gradient(160deg, var(--wl-espresso) 0%, var(--wl-dark-roast) 60%, var(--wl-medium-roast) 100%);
}

/* ---- SVG Separators ---- */
.wl-separator-wave {
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}
.wl-separator-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Service Cards ---- */
.wl-service-card-premium {
  background: var(--wl-cream);
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  transition: all var(--wl-transition-mid);
  height: 100%;
  box-shadow: var(--wl-shadow-sm);
}
.wl-service-card-premium:hover {
  transform: translateY(-6px);
  box-shadow: var(--wl-shadow-lg);
  border-color: var(--wl-copper-light);
}
.wl-service-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.wl-service-card-body {
  padding: 1.75rem;
}
.wl-service-card-icon {
  width: 48px; height: 48px;
  background: rgba(184,115,51,0.1);
  border-radius: var(--wl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-copper);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.wl-service-card-title {
  font-family: var(--wl-font-display);
  font-size: 1.25rem;
  color: var(--wl-espresso);
  margin-bottom: 0.6rem;
}
.wl-service-card-desc {
  color: var(--wl-grey-text);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.wl-service-card-features {
  list-style: none;
  padding: 0; margin: 0 0 1.25rem;
}
.wl-service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--wl-charcoal-soft);
  margin-bottom: 0.4rem;
}
.wl-service-card-features li i {
  color: var(--wl-copper);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}

/* ---- Process Timeline ---- */
.wl-process-timeline-wrap {
  position: relative;
}
.wl-process-timeline-line {
  position: absolute;
  top: 40px;
  left: calc(50% - 1px);
  width: 2px;
  height: calc(100% - 80px);
  background: linear-gradient(to bottom, var(--wl-copper), transparent);
  display: none;
}
.wl-process-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
}
.wl-process-step-num {
  width: 56px; height: 56px;
  background: var(--wl-espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-caramel);
  font-family: var(--wl-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px rgba(44,26,14,0.1);
  flex-shrink: 0;
}
.wl-process-step-icon {
  font-size: 1.3rem;
  color: var(--wl-copper);
  margin-bottom: 0.5rem;
}
.wl-process-step-title {
  font-family: var(--wl-font-display);
  font-size: 1rem;
  color: var(--wl-espresso);
  margin-bottom: 0.5rem;
}
.wl-process-step-desc {
  font-size: 0.88rem;
  color: var(--wl-grey-text);
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.wl-review-carousel-wrap {
  position: relative;
  overflow: hidden;
}
.wl-review-carousel {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.wl-review-card-item {
  flex: 0 0 calc(33.33% - 1rem);
  background: var(--wl-cream);
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--wl-shadow-sm);
}
.wl-review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--wl-caramel);
  font-size: 0.85rem;
}
.wl-review-text {
  font-family: var(--wl-font-serif);
  font-size: 0.97rem;
  color: var(--wl-charcoal-soft);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.wl-review-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.wl-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--wl-beige-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wl-font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--wl-espresso);
  flex-shrink: 0;
}
.wl-review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--wl-espresso);
  line-height: 1.2;
}
.wl-review-author-city {
  font-size: 0.78rem;
  color: var(--wl-grey-text);
}
.wl-carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
}
.wl-carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--wl-grey-border);
  background: var(--wl-cream);
  color: var(--wl-espresso);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--wl-transition-fast);
  font-size: 0.85rem;
}
.wl-carousel-btn:hover {
  background: var(--wl-espresso);
  color: var(--wl-cream);
  border-color: var(--wl-espresso);
}
.wl-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.wl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--wl-grey-border);
  cursor: pointer;
  transition: all var(--wl-transition-fast);
}
.wl-dot.wl-dot-active {
  background: var(--wl-copper);
  width: 20px;
  border-radius: var(--wl-radius-pill);
}

/* ---- Team Profiles ---- */
.wl-team-profile-card {
  background: var(--wl-cream);
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  transition: all var(--wl-transition-mid);
  box-shadow: var(--wl-shadow-sm);
}
.wl-team-profile-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wl-shadow-lg);
}
.wl-team-photo-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.wl-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}
.wl-team-profile-card:hover .wl-team-photo { transform: scale(1.04); }
.wl-team-info-body {
  padding: 1.5rem;
}
.wl-team-name {
  font-family: var(--wl-font-display);
  font-size: 1.15rem;
  color: var(--wl-espresso);
  margin-bottom: 0.2rem;
}
.wl-team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wl-copper);
  margin-bottom: 0.75rem;
}
.wl-team-bio {
  font-size: 0.9rem;
  color: var(--wl-grey-text);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.wl-team-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.wl-spec-tag {
  background: rgba(44,26,14,0.06);
  color: var(--wl-dark-roast);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--wl-radius-pill);
  letter-spacing: 0.03em;
}

/* ---- FAQ Accordion ---- */
.wl-faq-item {
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-md);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: box-shadow var(--wl-transition-fast);
}
.wl-faq-item:hover { box-shadow: var(--wl-shadow-sm); }
.wl-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  background: var(--wl-cream);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--wl-espresso);
  gap: 1rem;
  user-select: none;
  transition: background var(--wl-transition-fast);
}
.wl-faq-question:hover { background: var(--wl-beige-light); }
.wl-faq-item.wl-faq-open .wl-faq-question {
  background: var(--wl-espresso);
  color: var(--wl-cream);
}
.wl-faq-chevron {
  color: var(--wl-copper);
  transition: transform var(--wl-transition-mid);
  flex-shrink: 0;
  font-size: 0.8rem;
}
.wl-faq-item.wl-faq-open .wl-faq-chevron {
  transform: rotate(180deg);
  color: var(--wl-caramel);
}
.wl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: var(--wl-beige-light);
  padding: 0 1.4rem;
}
.wl-faq-item.wl-faq-open .wl-faq-answer {
  max-height: 400px;
  padding: 1.1rem 1.4rem;
}
.wl-faq-answer p {
  font-size: 0.92rem;
  color: var(--wl-charcoal-soft);
  line-height: 1.7;
}

/* ---- Before/After Slider ---- */
.wl-compare-slider-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  box-shadow: var(--wl-shadow-xl);
  cursor: ew-resize;
  user-select: none;
}
.wl-compare-before,
.wl-compare-after {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.wl-compare-after-wrap {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.wl-compare-after { width: 720px; max-width: none; }
.wl-compare-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: var(--wl-cream);
  z-index: 10;
}
.wl-compare-handle-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--wl-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-espresso);
  font-size: 0.8rem;
  box-shadow: var(--wl-shadow-md);
}
.wl-compare-label {
  position: absolute;
  bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wl-cream);
  background: rgba(44,26,14,0.6);
  padding: 0.3rem 0.8rem;
  border-radius: var(--wl-radius-pill);
}
.wl-compare-label-before { left: 16px; }
.wl-compare-label-after { right: 16px; }

/* ---- Coverage Map ---- */
.wl-map-embed-wrap {
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  box-shadow: var(--wl-shadow-lg);
  border: 3px solid var(--wl-beige-warm);
}
.wl-map-embed-wrap iframe {
  display: block;
  width: 100%;
}

/* ---- Stats Bar ---- */
.wl-stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--wl-grey-border);
}
.wl-stat-block {
  flex: 1 1 200px;
  background: var(--wl-cream);
  padding: 2rem 2.5rem;
  text-align: center;
}
.wl-stat-figure {
  font-family: var(--wl-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--wl-espresso);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.wl-stat-figure span { color: var(--wl-copper); }
.wl-stat-label {
  font-size: 0.82rem;
  color: var(--wl-grey-text);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

/* ---- CTA Banner ---- */
.wl-booking-cta-banner {
  background: linear-gradient(135deg, var(--wl-espresso) 0%, var(--wl-dark-roast) 100%);
  position: relative;
  overflow: hidden;
}
.wl-booking-cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(184,115,51,0.1);
  pointer-events: none;
}
.wl-booking-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(184,115,51,0.07);
  pointer-events: none;
}

/* ---- Footer ---- */
.wl-footer-main {
  background: var(--wl-charcoal);
  color: rgba(253,250,244,0.75);
  padding: 4rem 0 0;
}
.wl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.wl-footer-brand-col .wl-nav-brand-name { color: var(--wl-cream); font-size: 1.4rem; }
.wl-footer-brand-col .wl-nav-brand-tagline { color: rgba(253,250,244,0.5); }
.wl-footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}
.wl-footer-col-title {
  font-family: var(--wl-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wl-caramel);
  margin-bottom: 1.2rem;
}
.wl-footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.wl-footer-links li { margin-bottom: 0.55rem; }
.wl-footer-links a {
  color: rgba(253,250,244,0.65);
  font-size: 0.88rem;
  transition: color var(--wl-transition-fast);
}
.wl-footer-links a:hover { color: var(--wl-caramel); }
.wl-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}
.wl-footer-contact-item i {
  color: var(--wl-caramel);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.wl-footer-bottom {
  border-top: 1px solid rgba(253,250,244,0.1);
  padding: 1.25rem 0;
}
.wl-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(253,250,244,0.45);
}
.wl-footer-legal-links {
  display: flex;
  gap: 1.2rem;
}
.wl-footer-legal-links a {
  color: rgba(253,250,244,0.45);
  font-size: 0.8rem;
  transition: color var(--wl-transition-fast);
}
.wl-footer-legal-links a:hover { color: var(--wl-caramel); }

/* ---- Page Hero (interior pages) ---- */
.wl-page-hero-strip {
  background: linear-gradient(135deg, var(--wl-espresso) 0%, var(--wl-dark-roast) 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.wl-page-hero-strip::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=800&q=60') center/cover no-repeat;
  opacity: 0.06;
}
.wl-page-hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wl-caramel);
  margin-bottom: 0.75rem;
}
.wl-page-hero-title {
  font-family: var(--wl-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--wl-cream);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.wl-page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(253,250,244,0.75);
  max-width: 550px;
}
.wl-breadcrumb-strip {
  background: var(--wl-beige-light);
  border-bottom: 1px solid var(--wl-grey-border);
  padding: 0.6rem 0;
}
.wl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--wl-grey-text);
}
.wl-breadcrumb a { color: var(--wl-copper); }
.wl-breadcrumb-sep { color: var(--wl-grey-border); }

/* ---- Article Cards ---- */
.wl-article-card {
  background: var(--wl-cream);
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  transition: all var(--wl-transition-mid);
  box-shadow: var(--wl-shadow-sm);
}
.wl-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wl-shadow-lg);
}
.wl-article-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.wl-article-card-body {
  padding: 1.5rem;
}
.wl-article-category-tag {
  display: inline-block;
  background: rgba(184,115,51,0.1);
  color: var(--wl-copper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: var(--wl-radius-pill);
  margin-bottom: 0.75rem;
}
.wl-article-card-title {
  font-family: var(--wl-font-display);
  font-size: 1.1rem;
  color: var(--wl-espresso);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.wl-article-card-excerpt {
  font-size: 0.88rem;
  color: var(--wl-grey-text);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.wl-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--wl-grey-text);
}
.wl-article-meta i { color: var(--wl-copper); font-size: 0.75rem; }

/* ---- Article Content ---- */
.wl-article-body {
  font-family: var(--wl-font-serif);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--wl-charcoal-soft);
}
.wl-article-body h2 {
  font-family: var(--wl-font-display);
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--wl-espresso);
}
.wl-article-body h3 {
  font-family: var(--wl-font-display);
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--wl-dark-roast);
}
.wl-article-body p { margin-bottom: 1.25rem; }
.wl-article-body ul,
.wl-article-body ol { margin-bottom: 1.25rem; }
.wl-article-body li { margin-bottom: 0.5rem; }
.wl-article-body img {
  border-radius: var(--wl-radius-md);
  margin: 2rem 0;
  box-shadow: var(--wl-shadow-md);
}
.wl-article-callout {
  background: var(--wl-beige-warm);
  border-left: 4px solid var(--wl-copper);
  border-radius: 0 var(--wl-radius-md) var(--wl-radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}
.wl-article-callout p { font-size: 0.97rem; color: var(--wl-dark-roast); margin: 0; }

/* ---- Contact Form ---- */
.wl-contact-form-wrap {
  background: var(--wl-cream);
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--wl-shadow-md);
}
.wl-contact-info-panel {
  background: var(--wl-espresso);
  border-radius: var(--wl-radius-xl);
  padding: 2.5rem;
  color: var(--wl-cream);
  height: 100%;
}
.wl-contact-info-title {
  font-family: var(--wl-font-display);
  font-size: 1.5rem;
  color: var(--wl-cream);
  margin-bottom: 0.5rem;
}
.wl-contact-info-sub {
  font-size: 0.9rem;
  color: rgba(253,250,244,0.7);
  margin-bottom: 2rem;
}
.wl-contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.wl-contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(253,250,244,0.1);
  border-radius: var(--wl-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wl-caramel);
  flex-shrink: 0;
}
.wl-contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wl-caramel);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.wl-contact-detail-text span {
  font-size: 0.92rem;
  color: rgba(253,250,244,0.85);
}
.wl-business-hours-table {
  width: 100%;
  margin-top: 1.5rem;
}
.wl-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(253,250,244,0.08);
  color: rgba(253,250,244,0.75);
}
.wl-hours-row:last-child { border-bottom: none; }
.wl-hours-label { font-weight: 500; }
.wl-hours-time { color: var(--wl-caramel); }

/* ---- About Timeline ---- */
.wl-timeline-wrap {
  position: relative;
  padding-left: 3rem;
}
.wl-timeline-wrap::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--wl-copper), rgba(184,115,51,0.1));
}
.wl-timeline-event {
  position: relative;
  margin-bottom: 2.5rem;
}
.wl-timeline-dot {
  position: absolute;
  left: -2.15rem;
  top: 0.35rem;
  width: 14px; height: 14px;
  background: var(--wl-copper);
  border-radius: 50%;
  border: 2.5px solid var(--wl-cream);
  box-shadow: 0 0 0 3px rgba(184,115,51,0.25);
}
.wl-timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--wl-copper);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.wl-timeline-event-title {
  font-family: var(--wl-font-display);
  font-size: 1.05rem;
  color: var(--wl-espresso);
  margin-bottom: 0.35rem;
}
.wl-timeline-event-desc {
  font-size: 0.9rem;
  color: var(--wl-grey-text);
  line-height: 1.65;
}

/* ---- Legal Pages ---- */
.wl-legal-content {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--wl-charcoal-soft);
}
.wl-legal-content h2 {
  font-family: var(--wl-font-display);
  font-size: 1.4rem;
  color: var(--wl-espresso);
  margin: 2.5rem 0 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--wl-grey-border);
}
.wl-legal-content h2:first-child { border-top: none; margin-top: 0; }
.wl-legal-content h3 {
  font-family: var(--wl-font-display);
  font-size: 1.1rem;
  color: var(--wl-dark-roast);
  margin: 1.75rem 0 0.5rem;
}
.wl-legal-content p { margin-bottom: 0.9rem; }
.wl-legal-content ul { margin-bottom: 0.9rem; }
.wl-legal-content li { margin-bottom: 0.4rem; }
.wl-legal-last-updated {
  display: inline-block;
  background: rgba(184,115,51,0.1);
  color: var(--wl-copper);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: var(--wl-radius-pill);
  margin-bottom: 2rem;
}
.wl-legal-toc {
  background: var(--wl-beige-light);
  border: 1px solid var(--wl-grey-border);
  border-radius: var(--wl-radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.wl-legal-toc h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wl-grey-text);
  margin-bottom: 0.75rem;
}
.wl-legal-toc ol {
  margin: 0; padding-left: 1.25rem;
}
.wl-legal-toc li { margin-bottom: 0.35rem; }
.wl-legal-toc a { color: var(--wl-copper); font-size: 0.88rem; }

/* ---- Thank You Page ---- */
.wl-thankyou-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.wl-thankyou-icon-wrap {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, var(--wl-copper), var(--wl-amber-roast));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--wl-cream);
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(184,115,51,0.4);
}

/* ---- Cookie Banner ---- */
.wl-cookie-consent-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--wl-charcoal);
  color: rgba(253,250,244,0.85);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.wl-cookie-consent-bar.wl-cookie-visible { transform: translateY(0); }
.wl-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wl-cookie-text { font-size: 0.88rem; flex: 1 1 300px; }
.wl-cookie-text a { color: var(--wl-caramel); }
.wl-cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.wl-cookie-btn-accept {
  background: var(--wl-copper);
  color: var(--wl-cream);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1.2rem;
  border-radius: var(--wl-radius-md);
  border: none;
  cursor: pointer;
  transition: background var(--wl-transition-fast);
}
.wl-cookie-btn-accept:hover { background: var(--wl-amber-roast); }
.wl-cookie-btn-decline {
  background: transparent;
  color: rgba(253,250,244,0.6);
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
  border-radius: var(--wl-radius-md);
  border: 1px solid rgba(253,250,244,0.2);
  cursor: pointer;
  transition: all var(--wl-transition-fast);
}
.wl-cookie-btn-decline:hover { color: rgba(253,250,244,0.9); }

/* ---- Service Selector Tabs ---- */
.wl-service-tab-wrap {
  background: var(--wl-cream);
  border-radius: var(--wl-radius-xl);
  box-shadow: var(--wl-shadow-lg);
  overflow: hidden;
}
.wl-service-tabs-nav {
  display: flex;
  background: var(--wl-beige-warm);
  border-bottom: 1px solid var(--wl-grey-border);
}
.wl-service-tab-btn {
  flex: 1;
  padding: 1.1rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--wl-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wl-grey-text);
  transition: all var(--wl-transition-fast);
  border-bottom: 3px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wl-service-tab-btn:hover { color: var(--wl-espresso); }
.wl-service-tab-btn.wl-tab-active {
  color: var(--wl-espresso);
  border-bottom-color: var(--wl-copper);
  background: var(--wl-cream);
}
.wl-service-tab-panel {
  display: none;
  padding: 2rem;
  animation: wl-fadeIn 0.3s ease;
}
.wl-service-tab-panel.wl-panel-active { display: flex; gap: 2rem; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .wl-footer-grid { grid-template-columns: 1fr 1fr; }
  .wl-review-card-item { flex: 0 0 calc(50% - 0.75rem); }
  .wl-service-tab-panel.wl-panel-active { flex-direction: column; }
}
@media (max-width: 768px) {
  :root { --wl-space-section: 4rem; }
  .wl-nav-links { display: none; }
  .wl-nav-hamburger { display: flex; }
  .wl-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .wl-review-card-item { flex: 0 0 100%; }
  .wl-service-tabs-nav { flex-direction: column; }
  .wl-hero-trust-row { gap: 1rem; }
  .wl-compare-before,
  .wl-compare-after { height: 240px; }
}
@media (max-width: 576px) {
  .wl-hero-cta-row { flex-direction: column; align-items: flex-start; }
  .wl-stats-bar { flex-direction: column; gap: 0; }
  .wl-stat-block { padding: 1.5rem 1.75rem; }
}




.wl-nav-brand img{
    max-width: 150px;
    width: 150px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .wl-nav-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}

/* ================================================================
   WOLENTRA — main.css
   Coffee machine repair & servicing | wolentra.com
   
   Design direction: Refined industrial editorial
   Palette: deep espresso brown, warm cream, copper accent, 
            slate grey, clean white
   Typography: DM Serif Display (headings) + Source Serif 4 (body)
   Philosophy: Warm authority — expert without being cold,
               approachable without being casual
   ================================================================ */

/* ----------------------------------------------------------------
   GOOGLE FONTS IMPORT
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Mono:wght@400;500&display=swap');

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Brand colours */
  --wl-espresso:      #1e1209;
  --wl-roast:         #2e1f0e;
  --wl-mahogany:      #4a2c12;
  --wl-copper:        #b05c1a;
  --wl-copper-light:  #d4793a;
  --wl-copper-pale:   #f5e8d8;
  --wl-cream:         #fdf6ec;
  --wl-cream-mid:     #f0e6d2;
  --wl-cream-dark:    #e0cfb5;
  --wl-slate:         #4a4540;
  --wl-slate-mid:     #6b6560;
  --wl-slate-light:   #9b948e;
  --wl-white:         #ffffff;
  --wl-black:         #0f0a06;

  /* Semantic tokens */
  --wl-bg:            var(--wl-cream);
  --wl-surface:       var(--wl-white);
  --wl-text:          var(--wl-espresso);
  --wl-text-secondary: var(--wl-slate);
  --wl-text-muted:    var(--wl-slate-light);
  --wl-accent:        var(--wl-copper);
  --wl-accent-hover:  var(--wl-copper-light);
  --wl-border:        var(--wl-cream-dark);
  --wl-border-dark:   var(--wl-cream-mid);

  /* Typography */
  --wl-font-display:  'DM Serif Display', Georgia, serif;
  --wl-font-body:     'Source Serif 4', Georgia, serif;
  --wl-font-mono:     'DM Mono', 'Courier New', monospace;

  /* Type scale */
  --wl-text-xs:       0.75rem;
  --wl-text-sm:       0.875rem;
  --wl-text-base:     1rem;
  --wl-text-md:       1.125rem;
  --wl-text-lg:       1.25rem;
  --wl-text-xl:       1.5rem;
  --wl-text-2xl:      2rem;
  --wl-text-3xl:      2.5rem;
  --wl-text-4xl:      3.25rem;
  --wl-text-5xl:      4rem;

  /* Spacing */
  --wl-space-1:       0.25rem;
  --wl-space-2:       0.5rem;
  --wl-space-3:       0.75rem;
  --wl-space-4:       1rem;
  --wl-space-5:       1.25rem;
  --wl-space-6:       1.5rem;
  --wl-space-8:       2rem;
  --wl-space-10:      2.5rem;
  --wl-space-12:      3rem;
  --wl-space-16:      4rem;
  --wl-space-20:      5rem;
  --wl-space-24:      6rem;
  --wl-space-32:      8rem;

  /* Layout */
  --wl-max-width:     1200px;
  --wl-max-narrow:    760px;
  --wl-header-h:      72px;

  /* Radius */
  --wl-radius-sm:     4px;
  --wl-radius:        8px;
  --wl-radius-lg:     14px;
  --wl-radius-xl:     24px;

  /* Shadows */
  --wl-shadow-sm:     0 1px 3px rgba(30,18,9,.08), 0 1px 2px rgba(30,18,9,.06);
  --wl-shadow:        0 4px 16px rgba(30,18,9,.10), 0 2px 6px rgba(30,18,9,.07);
  --wl-shadow-lg:     0 12px 40px rgba(30,18,9,.14), 0 4px 12px rgba(30,18,9,.08);
  --wl-shadow-card:   0 2px 12px rgba(30,18,9,.09), 0 1px 4px rgba(30,18,9,.05);

  /* Transitions */
  --wl-ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --wl-ease-out:      cubic-bezier(0.0, 0.0, 0.2, 1);
  --wl-duration-fast: 150ms;
  --wl-duration:      250ms;
  --wl-duration-slow: 400ms;
}


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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--wl-header-h) + 1rem);
}

body {
  font-family: var(--wl-font-body);
  font-size: var(--wl-text-base);
  line-height: 1.75;
  color: var(--wl-text);
  background-color: var(--wl-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--wl-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--wl-duration-fast) var(--wl-ease);
}
a:hover { color: var(--wl-accent-hover); }
a:focus-visible {
  outline: 2px solid var(--wl-copper);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wl-font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--wl-espresso);
}

p + p { margin-top: 1.25em; }

code {
  font-family: var(--wl-font-mono);
  font-size: 0.875em;
  background: var(--wl-cream-mid);
  padding: 0.1em 0.4em;
  border-radius: var(--wl-radius-sm);
  color: var(--wl-mahogany);
}

/* Skip to main content */
.wl-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--wl-espresso);
  color: var(--wl-white);
  padding: 0.5rem 1rem;
  border-radius: var(--wl-radius);
  font-size: var(--wl-text-sm);
  font-family: var(--wl-font-body);
  z-index: 9999;
}
.wl-skip-link:focus { top: 1rem; }


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

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

@media (max-width: 640px) {
  .wl-container {
    padding-inline: var(--wl-space-4);
  }
}


/* ----------------------------------------------------------------
   HEADER
   ---------------------------------------------------------------- */
.wl-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--wl-header-h);
  background: rgba(253, 246, 236, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--wl-border);
  transition: box-shadow var(--wl-duration) var(--wl-ease);
}

.wl-header.wl-header--scrolled {
  box-shadow: var(--wl-shadow-sm);
}

.wl-header .wl-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wl-space-6);
}


/* ----------------------------------------------------------------
   LOGO
   ---------------------------------------------------------------- */
.wl-logo {
  text-decoration: none;
  flex-shrink: 0;
}

.wl-logo__text {
  font-family: var(--wl-font-display);
  font-size: var(--wl-text-xl);
  font-style: italic;
  color: var(--wl-espresso);
  letter-spacing: -0.02em;
  transition: color var(--wl-duration-fast) var(--wl-ease);
}

.wl-logo:hover .wl-logo__text {
  color: var(--wl-copper);
}

.wl-logo--footer .wl-logo__text {
  font-size: var(--wl-text-lg);
}


/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.wl-nav {
  display: flex;
  align-items: center;
}

.wl-nav__list {
  display: flex;
  align-items: center;
  gap: var(--wl-space-1);
}

.wl-nav__link {
  display: block;
  padding: var(--wl-space-2) var(--wl-space-3);
  font-family: var(--wl-font-body);
  font-size: var(--wl-text-sm);
  font-weight: 400;
  color: var(--wl-slate);
  text-decoration: none;
  border-radius: var(--wl-radius-sm);
  letter-spacing: 0.01em;
  transition: color var(--wl-duration-fast) var(--wl-ease),
              background var(--wl-duration-fast) var(--wl-ease);
}

.wl-nav__link:hover {
  color: var(--wl-espresso);
  background: var(--wl-cream-mid);
}

.wl-nav__link--active {
  color: var(--wl-espresso);
  font-weight: 600;
}

.wl-nav__link--cta {
  background: var(--wl-espresso);
  color: var(--wl-cream) !important;
  padding: var(--wl-space-2) var(--wl-space-5);
  border-radius: var(--wl-radius);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--wl-duration-fast) var(--wl-ease),
              transform var(--wl-duration-fast) var(--wl-ease);
}

.wl-nav__link--cta:hover {
  background: var(--wl-copper) !important;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.wl-nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--wl-radius-sm);
  transition: background var(--wl-duration-fast) var(--wl-ease);
}

.wl-nav__toggle:hover { background: var(--wl-cream-mid); }
.wl-nav__toggle:focus-visible { outline: 2px solid var(--wl-copper); outline-offset: 2px; }

.wl-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wl-espresso);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--wl-duration) var(--wl-ease),
              opacity var(--wl-duration-fast) var(--wl-ease);
}

/* Open state */
.wl-nav[data-open="true"] .wl-nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.wl-nav[data-open="true"] .wl-nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.wl-nav[data-open="true"] .wl-nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 820px) {
  .wl-nav__toggle {
    display: flex;
  }

  .wl-nav__list {
    position: fixed;
    top: var(--wl-header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wl-cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--wl-space-6) var(--wl-space-6) var(--wl-space-12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--wl-duration-slow) var(--wl-ease-out);
    z-index: 99;
  }

  .wl-nav[data-open="true"] .wl-nav__list {
    transform: translateX(0);
  }

  .wl-nav__link {
    font-size: var(--wl-text-lg);
    padding: var(--wl-space-4) var(--wl-space-2);
    border-bottom: 1px solid var(--wl-border);
    border-radius: 0;
  }

  .wl-nav__item:last-child .wl-nav__link {
    margin-top: var(--wl-space-4);
    text-align: center;
    border-radius: var(--wl-radius);
    border: none;
  }
}


/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.wl-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--wl-space-2);
  padding: 0.75rem 1.75rem;
  font-family: var(--wl-font-body);
  font-size: var(--wl-text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-radius: var(--wl-radius);
  cursor: pointer;
  transition: background var(--wl-duration-fast) var(--wl-ease),
              color var(--wl-duration-fast) var(--wl-ease),
              transform var(--wl-duration-fast) var(--wl-ease),
              box-shadow var(--wl-duration-fast) var(--wl-ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}

.wl-btn:focus-visible {
  outline: 2px solid var(--wl-copper);
  outline-offset: 3px;
}

/* Primary */
.wl-btn--primary {
  background: var(--wl-espresso);
  color: var(--wl-cream);
  border-color: var(--wl-espresso);
}

.wl-btn--primary:hover {
  background: var(--wl-copper);
  border-color: var(--wl-copper);
  color: var(--wl-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176, 92, 26, 0.35);
}

/* Secondary */
.wl-btn--secondary {
  background: transparent;
  color: var(--wl-espresso);
  border-color: var(--wl-espresso);
}

.wl-btn--secondary:hover {
  background: var(--wl-espresso);
  color: var(--wl-cream);
  transform: translateY(-2px);
}

/* Text / ghost */
.wl-btn--text {
  background: transparent;
  color: var(--wl-copper);
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
  font-size: var(--wl-text-sm);
  letter-spacing: 0.02em;
}

.wl-btn--text:hover {
  color: var(--wl-espresso);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wl-btn--lg {
  padding: 1rem 2.25rem;
  font-size: var(--wl-text-base);
}

.wl-btn__arrow {
  display: inline-block;
  transition: transform var(--wl-duration-fast) var(--wl-ease);
}
.wl-btn:hover .wl-btn__arrow {
  transform: translateX(4px);
}


/* ----------------------------------------------------------------
   BREADCRUMB
   ---------------------------------------------------------------- */
.wl-breadcrumb {
  margin-bottom: var(--wl-space-6);
}

.wl-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--wl-space-2);
  font-size: var(--wl-text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wl-text-muted);
}

.wl-breadcrumb__item + .wl-breadcrumb__item::before {
  content: "—";
  color: var(--wl-cream-dark);
  margin-right: var(--wl-space-2);
}

.wl-breadcrumb__link {
  color: var(--wl-slate-light);
  text-decoration: none;
  transition: color var(--wl-duration-fast);
}
.wl-breadcrumb__link:hover { color: var(--wl-copper); }

.wl-breadcrumb__item--current {
  color: var(--wl-espresso);
}


/* ----------------------------------------------------------------
   PAGE HERO (non-homepage)
   ---------------------------------------------------------------- */
.wl-page-hero {
  padding: var(--wl-space-16) 0 var(--wl-space-12);
  background: var(--wl-white);
  border-bottom: 1px solid var(--wl-border);
  position: relative;
  overflow: hidden;
}

.wl-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(176,92,26,0.06) 0%, transparent 60%),
              radial-gradient(ellipse 40% 60% at 0% 100%, rgba(30,18,9,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.wl-page-hero .wl-container { position: relative; }

.wl-page-hero__title {
  font-size: clamp(var(--wl-text-3xl), 5vw, var(--wl-text-4xl));
  line-height: 1.1;
  margin-bottom: var(--wl-space-4);
  letter-spacing: -0.02em;
}

.wl-page-hero__subtitle {
  font-size: var(--wl-text-md);
  color: var(--wl-slate);
  max-width: 60ch;
  line-height: 1.65;
}


/* ----------------------------------------------------------------
   MAIN CONTENT WRAPPER
   ---------------------------------------------------------------- */
.wl-main {
  flex: 1 0 auto;
}


/* ----------------------------------------------------------------
   ARTICLES INDEX — GRID
   ---------------------------------------------------------------- */
.wl-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--wl-space-8);
  padding: var(--wl-space-16) 0;
}

@media (max-width: 700px) {
  .wl-articles-grid {
    grid-template-columns: 1fr;
    padding: var(--wl-space-10) 0;
  }
}


/* ----------------------------------------------------------------
   ARTICLE CARD
   ---------------------------------------------------------------- */
.wl-article-card {
  background: var(--wl-white);
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  box-shadow: var(--wl-shadow-card);
  border: 1px solid var(--wl-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--wl-duration) var(--wl-ease),
              transform var(--wl-duration) var(--wl-ease);
}

.wl-article-card:hover {
  box-shadow: var(--wl-shadow-lg);
  transform: translateY(-4px);
}

.wl-article-card__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--wl-cream-mid);
}

.wl-article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wl-duration-slow) var(--wl-ease);
}

.wl-article-card:hover .wl-article-card__image {
  transform: scale(1.04);
}

.wl-article-card__body {
  padding: var(--wl-space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--wl-space-3);
}

.wl-article-card__meta {
  display: flex;
  align-items: center;
  gap: var(--wl-space-3);
}

.wl-article-card__category {
  font-size: var(--wl-text-xs);
  font-family: var(--wl-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-copper);
  font-weight: 500;
  background: var(--wl-copper-pale);
  padding: 0.2em 0.6em;
  border-radius: 3px;
}

.wl-article-card__date {
  font-size: var(--wl-text-xs);
  color: var(--wl-text-muted);
  letter-spacing: 0.02em;
}

.wl-article-card__title {
  font-size: var(--wl-text-lg);
  line-height: 1.3;
  margin: 0;
}

.wl-article-card__title-link {
  color: var(--wl-espresso);
  text-decoration: none;
  transition: color var(--wl-duration-fast);
}

.wl-article-card__title-link:hover { color: var(--wl-copper); }

.wl-article-card__excerpt {
  font-size: var(--wl-text-sm);
  color: var(--wl-slate);
  line-height: 1.7;
  flex: 1;
}

/* Small card variant */
.wl-article-card--small .wl-article-card__body {
  padding: var(--wl-space-5);
}
.wl-article-card--small .wl-article-card__title {
  font-size: var(--wl-text-base);
}


/* ----------------------------------------------------------------
   ARTICLE PAGE
   ---------------------------------------------------------------- */

/* Article header */
.wl-article-header {
  background: var(--wl-white);
  padding: var(--wl-space-16) 0 var(--wl-space-12);
  border-bottom: 1px solid var(--wl-border);
}

.wl-article-header__meta {
  display: flex;
  align-items: center;
  gap: var(--wl-space-3);
  margin-bottom: var(--wl-space-5);
}

.wl-article-header__category {
  font-size: var(--wl-text-xs);
  font-family: var(--wl-font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-copper);
  background: var(--wl-copper-pale);
  padding: 0.2em 0.7em;
  border-radius: 3px;
  font-weight: 500;
}

.wl-article-header__date {
  font-size: var(--wl-text-xs);
  color: var(--wl-text-muted);
  letter-spacing: 0.03em;
}

.wl-article-header__title {
  font-size: clamp(var(--wl-text-2xl), 4.5vw, var(--wl-text-4xl));
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--wl-space-5);
}

.wl-article-header__intro {
  font-size: var(--wl-text-md);
  color: var(--wl-slate);
  line-height: 1.7;
  max-width: 58ch;
  font-style: italic;
}

/* Article figure */
.wl-article-figure {
  margin: 0;
  background: var(--wl-espresso);
}

.wl-article-figure--hero {
  max-height: 520px;
  overflow: hidden;
}

.wl-article-figure--hero .wl-article-figure__img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  opacity: 0.9;
}

.wl-article-figure--inline {
  margin: var(--wl-space-10) 0;
  border-radius: var(--wl-radius-lg);
  overflow: hidden;
  box-shadow: var(--wl-shadow);
  border: 1px solid var(--wl-border);
  background: var(--wl-cream-mid);
}

.wl-article-figure--inline .wl-article-figure__img {
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}

.wl-article-figure__caption {
  padding: var(--wl-space-3) var(--wl-space-5);
  font-size: var(--wl-text-xs);
  color: var(--wl-slate-light);
  font-style: italic;
  background: var(--wl-cream);
  border-top: 1px solid var(--wl-border);
}

/* Article body */
.wl-article-body {
  padding: var(--wl-space-16) var(--wl-space-6);
}

.wl-article-body__h2 {
  font-size: var(--wl-text-2xl);
  letter-spacing: -0.02em;
  margin-top: var(--wl-space-12);
  margin-bottom: var(--wl-space-5);
  padding-top: var(--wl-space-6);
  border-top: 1px solid var(--wl-border);
  color: var(--wl-espresso);
}

.wl-article-body > .wl-article-body__h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.wl-article-body__h3 {
  font-size: var(--wl-text-xl);
  margin-top: var(--wl-space-8);
  margin-bottom: var(--wl-space-3);
  color: var(--wl-roast);
  font-style: italic;
}

.wl-article-body p {
  font-size: var(--wl-text-base);
  line-height: 1.85;
  color: var(--wl-text);
  margin-bottom: var(--wl-space-4);
}

.wl-article-body p:last-child { margin-bottom: 0; }

.wl-article-body__link {
  color: var(--wl-copper);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wl-article-body__link:hover { color: var(--wl-espresso); }

.wl-article-body__list {
  list-style: none;
  margin: var(--wl-space-4) 0 var(--wl-space-6);
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--wl-space-3);
}

.wl-article-body__list li {
  padding-left: var(--wl-space-6);
  position: relative;
  font-size: var(--wl-text-base);
  line-height: 1.75;
  color: var(--wl-text);
}

.wl-article-body__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wl-copper);
  flex-shrink: 0;
}

.wl-article-body strong {
  font-weight: 600;
  color: var(--wl-espresso);
}

/* Related articles section */
.wl-related-articles {
  background: var(--wl-white);
  border-top: 1px solid var(--wl-border);
  padding: var(--wl-space-16) 0;
}

.wl-related-articles__heading {
  font-size: var(--wl-text-2xl);
  margin-bottom: var(--wl-space-8);
  letter-spacing: -0.02em;
}

.wl-related-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--wl-space-6);
}


/* ----------------------------------------------------------------
   SERVICES PAGE
   ---------------------------------------------------------------- */
.wl-hero--services {
  background: var(--wl-espresso);
  color: var(--wl-cream);
  padding: var(--wl-space-24) 0 var(--wl-space-16);
  position: relative;
  overflow: hidden;
}

.wl-hero--services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 80% 50%, rgba(176,92,26,0.3) 0%, transparent 65%);
  pointer-events: none;
}

.wl-hero--services .wl-hero__content { position: relative; }

.wl-hero--services .wl-hero__title {
  color: var(--wl-cream);
  font-size: clamp(var(--wl-text-3xl), 6vw, var(--wl-text-5xl));
  letter-spacing: -0.03em;
}

.wl-hero--services .wl-hero__subtitle {
  color: var(--wl-cream-dark);
  font-size: var(--wl-text-md);
  margin-top: var(--wl-space-4);
  max-width: 55ch;
  line-height: 1.65;
}

.wl-services-section {
  padding: var(--wl-space-24) 0;
}

.wl-section-header {
  margin-bottom: var(--wl-space-16);
}

.wl-section-title {
  font-size: clamp(var(--wl-text-2xl), 4vw, var(--wl-text-3xl));
  letter-spacing: -0.02em;
  margin-bottom: var(--wl-space-3);
}

.wl-section-lead {
  font-size: var(--wl-text-md);
  color: var(--wl-slate);
  max-width: 55ch;
  line-height: 1.65;
}

/* Service card */
.wl-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wl-space-12);
  align-items: center;
  background: var(--wl-white);
  border-radius: var(--wl-radius-xl);
  overflow: hidden;
  border: 1px solid var(--wl-border);
  box-shadow: var(--wl-shadow);
  margin-bottom: var(--wl-space-12);
}

.wl-service-card--alt {
  direction: rtl;
}

.wl-service-card--alt > * {
  direction: ltr;
}

.wl-service-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--wl-cream-mid);
}

.wl-service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--wl-duration-slow) var(--wl-ease);
}

.wl-service-card:hover .wl-service-card__img {
  transform: scale(1.04);
}

.wl-service-card__body {
  padding: var(--wl-space-10) var(--wl-space-10) var(--wl-space-10) 0;
}

.wl-service-card--alt .wl-service-card__body {
  padding: var(--wl-space-10) 0 var(--wl-space-10) var(--wl-space-10);
}

.wl-service-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--wl-text-xs);
  font-family: var(--wl-font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--wl-copper-pale);
  color: var(--wl-copper);
  padding: 0.25em 0.75em;
  border-radius: 3px;
  margin-bottom: var(--wl-space-4);
}

.wl-service-card__badge--commercial {
  background: rgba(30,18,9,0.07);
  color: var(--wl-mahogany);
}

.wl-service-card__badge--maintenance {
  background: rgba(74,44,18,0.08);
  color: var(--wl-slate);
}

.wl-service-card__title {
  font-size: var(--wl-text-2xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--wl-space-4);
  line-height: 1.2;
}

.wl-service-card__desc {
  font-size: var(--wl-text-base);
  color: var(--wl-slate);
  line-height: 1.75;
  margin-bottom: var(--wl-space-6);
}

.wl-service-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--wl-space-4);
  margin-bottom: var(--wl-space-8);
}

.wl-service-meta-block__title {
  font-size: var(--wl-text-xs);
  font-family: var(--wl-font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wl-text-muted);
  margin-bottom: var(--wl-space-2);
}

.wl-service-meta-block__text {
  font-size: var(--wl-text-sm);
  color: var(--wl-slate);
  line-height: 1.6;
}

.wl-service-meta-block__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--wl-space-2);
}

.wl-service-meta-block__list li {
  font-size: var(--wl-text-sm);
  color: var(--wl-slate);
  padding-left: var(--wl-space-5);
  position: relative;
}

.wl-service-meta-block__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--wl-copper);
  font-weight: 700;
  font-size: 0.8em;
  top: 0.1em;
}

@media (max-width: 900px) {
  .wl-service-card,
  .wl-service-card--alt {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .wl-service-card__media {
    aspect-ratio: 16 / 7;
  }

  .wl-service-card__body,
  .wl-service-card--alt .wl-service-card__body {
    padding: var(--wl-space-8);
  }
}


/* ----------------------------------------------------------------
   FAQ SECTION
   ---------------------------------------------------------------- */
.wl-faq-section {
  background: var(--wl-white);
  padding: var(--wl-space-20) 0;
  border-top: 1px solid var(--wl-border);
}

.wl-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wl-space-6);
  margin-top: var(--wl-space-10);
}

.wl-faq-item {
  padding: var(--wl-space-6);
  background: var(--wl-cream);
  border-radius: var(--wl-radius-lg);
  border: 1px solid var(--wl-border);
}

.wl-faq-item__q {
  font-family: var(--wl-font-display);
  font-size: var(--wl-text-base);
  font-weight: 400;
  color: var(--wl-espresso);
  margin-bottom: var(--wl-space-3);
  line-height: 1.4;
}

.wl-faq-item__a {
  font-size: var(--wl-text-sm);
  color: var(--wl-slate);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .wl-faq-grid { grid-template-columns: 1fr; }
}


/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.wl-cta-banner {
  background: var(--wl-roast);
  padding: var(--wl-space-16) 0;
  position: relative;
  overflow: hidden;
}

.wl-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 100% 50%, rgba(176,92,26,0.4) 0%, transparent 60%);
  pointer-events: none;
}

.wl-cta-banner__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--wl-space-10);
}

.wl-cta-banner__title {
  font-size: var(--wl-text-2xl);
  color: var(--wl-cream);
  letter-spacing: -0.02em;
  flex: 1;
}

.wl-cta-banner__text {
  flex: 2;
  font-size: var(--wl-text-sm);
  color: var(--wl-cream-dark);
  line-height: 1.7;
}

.wl-cta-banner .wl-btn--primary {
  background: var(--wl-copper);
  border-color: var(--wl-copper);
  flex-shrink: 0;
}

.wl-cta-banner .wl-btn--primary:hover {
  background: var(--wl-cream);
  border-color: var(--wl-cream);
  color: var(--wl-espresso);
}

@media (max-width: 800px) {
  .wl-cta-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--wl-space-5);
  }
  .wl-cta-banner__title { font-size: var(--wl-text-xl); }
}


/* ----------------------------------------------------------------
   LEGAL PAGES
   ---------------------------------------------------------------- */
.wl-legal-page {
  padding: var(--wl-space-16) 0 var(--wl-space-24);
}

.wl-legal-page__header {
  margin-bottom: var(--wl-space-12);
  padding-bottom: var(--wl-space-8);
  border-bottom: 2px solid var(--wl-espresso);
}

.wl-legal-page__title {
  font-size: clamp(var(--wl-text-2xl), 4vw, var(--wl-text-4xl));
  letter-spacing: -0.025em;
  margin-bottom: var(--wl-space-2);
}

.wl-legal-page__updated {
  font-size: var(--wl-text-xs);
  font-family: var(--wl-font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wl-text-muted);
}

.wl-legal-section {
  margin-bottom: var(--wl-space-10);
}

.wl-legal-section__heading {
  font-size: var(--wl-text-xl);
  font-family: var(--wl-font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: var(--wl-space-4);
  padding-bottom: var(--wl-space-3);
  border-bottom: 1px solid var(--wl-border);
  color: var(--wl-espresso);
}

.wl-legal-section__subheading {
  font-size: var(--wl-text-base);
  font-family: var(--wl-font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--wl-roast);
  margin: var(--wl-space-6) 0 var(--wl-space-3);
}

.wl-legal-page__body p {
  font-size: var(--wl-text-base);
  line-height: 1.85;
  color: var(--wl-text);
  margin-bottom: var(--wl-space-4);
}

.wl-legal-page__link {
  color: var(--wl-copper);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wl-legal-page__link:hover { color: var(--wl-espresso); }

.wl-legal-list {
  list-style: none;
  margin: var(--wl-space-4) 0 var(--wl-space-5);
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: var(--wl-space-3);
}

.wl-legal-list li {
  padding-left: var(--wl-space-6);
  position: relative;
  font-size: var(--wl-text-base);
  line-height: 1.75;
  color: var(--wl-text);
}

.wl-legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wl-copper);
}

.wl-legal-address {
  font-style: normal;
  font-size: var(--wl-text-base);
  color: var(--wl-slate);
  line-height: 1.9;
  background: var(--wl-cream);
  border: 1px solid var(--wl-border);
  border-radius: var(--wl-radius);
  padding: var(--wl-space-5) var(--wl-space-6);
  margin-top: var(--wl-space-4);
}

/* Legal table */
.wl-legal-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--wl-space-6) 0;
  border-radius: var(--wl-radius);
  border: 1px solid var(--wl-border);
  box-shadow: var(--wl-shadow-sm);
}

.wl-legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--wl-text-sm);
  min-width: 560px;
}

.wl-legal-table thead {
  background: var(--wl-espresso);
  color: var(--wl-cream);
}

.wl-legal-table th {
  padding: var(--wl-space-3) var(--wl-space-5);
  text-align: left;
  font-family: var(--wl-font-mono);
  font-weight: 500;
  font-size: var(--wl-text-xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wl-legal-table td {
  padding: var(--wl-space-3) var(--wl-space-5);
  border-bottom: 1px solid var(--wl-border);
  color: var(--wl-text);
  line-height: 1.6;
  vertical-align: top;
}

.wl-legal-table tbody tr:last-child td { border-bottom: none; }

.wl-legal-table tbody tr:nth-child(odd) td {
  background: var(--wl-cream);
}

.wl-legal-table tbody tr:hover td {
  background: var(--wl-copper-pale);
  transition: background var(--wl-duration-fast);
}


/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.wl-footer {
  background: var(--wl-espresso);
  color: var(--wl-cream-dark);
  padding: var(--wl-space-16) 0 0;
}

.wl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--wl-space-10);
  padding-bottom: var(--wl-space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.wl-footer__brand .wl-logo__text {
  color: var(--wl-cream);
}

.wl-footer__brand .wl-logo:hover .wl-logo__text {
  color: var(--wl-copper-light);
}

.wl-footer__tagline {
  margin-top: var(--wl-space-3);
  font-size: var(--wl-text-sm);
  color: rgba(240,230,210,0.65);
  line-height: 1.6;
  max-width: 28ch;
}

.wl-footer__nav-heading {
  font-family: var(--wl-font-mono);
  font-size: var(--wl-text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,230,210,0.45);
  margin-bottom: var(--wl-space-4);
  font-weight: 500;
}

.wl-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--wl-space-2);
}

.wl-footer__nav-link {
  font-size: var(--wl-text-sm);
  color: rgba(240,230,210,0.75);
  text-decoration: none;
  transition: color var(--wl-duration-fast);
  line-height: 1.6;
}

.wl-footer__nav-link:hover {
  color: var(--wl-copper-light);
  text-decoration: none;
}

.wl-footer__bottom {
  padding: var(--wl-space-5) 0;
}

.wl-footer__copy {
  font-size: var(--wl-text-xs);
  color: rgba(240,230,210,0.4);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .wl-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--wl-space-8);
  }
  .wl-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .wl-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--wl-space-6);
  }
}


/* ----------------------------------------------------------------
   PAGE VARIANTS
   ---------------------------------------------------------------- */
.wl-page--legal .wl-main {
  background: var(--wl-white);
}

.wl-page--article .wl-main {
  background: var(--wl-cream);
}

.wl-page--article .wl-article-body {
  background: var(--wl-white);
}


/* ----------------------------------------------------------------
   UTILITIES / ACCESSIBILITY
   ---------------------------------------------------------------- */
.wl-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.wl-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

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

/* High contrast */
@media (forced-colors: active) {
  .wl-btn--primary,
  .wl-nav__link--cta {
    border: 2px solid ButtonText;
  }
}

/* Print */
@media print {
  .wl-header,
  .wl-footer,
  .wl-cta-banner,
  .wl-nav,
  .wl-related-articles { display: none !important; }

  body {
    font-size: 11pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  .wl-article-body__h2,
  .wl-article-body__h3 { page-break-after: avoid; }
  p, li { page-break-inside: avoid; }
}