
/* src/assets/css/base/reset.css */
/* ======================
   CSS RESET
   ====================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  background: var(--charcoal);
  color: var(--white);
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
}

/* ======================
   ACCESSIBILITY
   ====================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ======================
   MOBILE SCROLL SNAP
   ====================== */
@media (max-width: 1023px) {
  html {
    scroll-snap-type: y mandatory;
    scroll-behavior: auto;
    overscroll-behavior-y: none;
  }

  .hero-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh !important;
    height: 100svh !important;
    overflow: hidden;
  }

  .gallery-section,
  .benefits-section,
  .build-section,
  .colours-section,
  .blocks-section,
  .customisation-section,
  .contact-section,
  .faq-section,
  .home-services-section,
  .home-about-section,
  .about-v2-section,
  .home-process-section,
  .about-process {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 100vh !important;
    min-height: 100svh !important;
  }

  .main-footer {
    scroll-snap-align: start;
  }

  /* Disable scroll-snap on pages that don't need it */
  html:has(body.no-snap) {
    scroll-snap-type: none;
  }

  .no-snap .hero-section,
  .no-snap .gallery-section,
  .no-snap .benefits-section,
  .no-snap .build-section,
  .no-snap .colours-section,
  .no-snap .blocks-section,
  .no-snap .customisation-section,
  .no-snap .contact-section,
  .no-snap .faq-section,
  .no-snap .home-services-section,
  .no-snap .home-about-section,
  .no-snap .about-v2-section,
  .no-snap .home-process-section,
  .no-snap .about-process,
  .no-snap .main-footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: auto !important;
  }

}


/* src/assets/css/base/variables.css */
/* ======================
   CSS CUSTOM PROPERTIES
   ====================== */

:root {
  /* ==================
     COLORS
     ================== */
  --black: #050505;
  --charcoal: #0e0e0e;
  --grey-dark: #3a3a3a;
  --grey: #6a6a6a;
  --grey-light: #9a9a9a;
  --silver: #c8c8c8;
  --off-white: #f0f0ee;
  --white: #fafafa;
  --yellow: #F0CC3A;
  --font-logo: 'Montserrat', sans-serif;

  /* ==================
     TYPOGRAPHY
     ================== */
  --font-primary: 'Outfit', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  /* ==================
     LAYOUT
     ================== */
  --max-width: 1400px;
  --content-padding-mobile: 20px;
  --content-padding-tablet: 48px;
  --content-padding-desktop: 80px;
  --content-padding-wide: 120px;

  /* ==================
     SPACING SCALE
     ================== */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 80px;

  /* ==================
     TRANSITIONS
     ================== */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-spring: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* ==================
     BORDER RADIUS
     ================== */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 50%;

  /* ==================
     Z-INDEX LAYERS
     ================== */
  --z-base: 1;
  --z-nav: 100;
  --z-overlay: 998;
  --z-menu: 999;
  --z-modal: 1000;

  /* ==================
     BREAKPOINTS
     (For JS reference)
     ================== */
  --bp-mobile: 640px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1440px;
}


/* src/assets/css/base/typography.css */
/* ======================
   TYPOGRAPHY
   ====================== */

/* Font families are loaded via Google Fonts in the head */

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

button {
  font-family: var(--font-primary);
  cursor: pointer;
}

/* Serif font for specific elements */
.font-serif {
  font-family: var(--font-serif);
}

/* Text utilities */
.text-uppercase {
  text-transform: uppercase;
}

.text-italic {
  font-style: italic;
}

/* ======================
   FONT TEST OVERRIDES
   ====================== */

/* Test Roboto Slab on headlines */
.font-test-roboto-slab .hero-headline,
.font-test-roboto-slab .gallery-headline,
.font-test-roboto-slab .benefits-headline,
.font-test-roboto-slab .build-headline,
.font-test-roboto-slab .colours-headline,
.font-test-roboto-slab .contact-headline,
.font-test-roboto-slab .faq-headline {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
}


/* src/assets/css/components/navigation.css */
/* ======================
   MOBILE BURGER MENU
   ====================== */

.burger-menu {
  position: fixed;
  top: 13px;
  right: var(--content-padding-mobile);
  z-index: var(--z-nav);
  width: 28px;
  height: 18px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  padding: 11px 10px;
  border-radius: 2px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.burger-menu.hero-active {
  background: rgba(26, 26, 26, 0.75);
  -webkit-mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent),
                      linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-composite: source-in;
  -webkit-mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent),
              linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
          mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent),
              linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}

.burger-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  transition: all var(--transition-smooth);
}

.burger-menu.dark .burger-line {
  background: var(--grey-dark);
}

/* Active state animations */
.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======================
   MENU OVERLAY
   ====================== */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: var(--z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ======================
   SLIDE-OUT MENU
   ====================== */

.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background: #0f0f0f;
  z-index: var(--z-menu);
  transform: translateX(100%);
  transition: transform 0.48s cubic-bezier(0.76, 0, 0.24, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(232, 197, 71, 0.10);
  overflow: hidden;
}

.slide-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 197, 71, 0.45) 50%, transparent);
  z-index: 1;
}

.slide-menu.active {
  transform: translateX(0);
}

/* Header */
.menu-header {
  padding: 18px 20px;
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.menu-close:hover {
  background: rgba(232, 197, 71, 0.07);
  border-color: rgba(232, 197, 71, 0.28);
}

.menu-close svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.7);
  stroke-width: 2;
  fill: none;
}

/* Content */
.menu-content {
  flex: 1;
  padding: 4px 28px 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
}

/* Groups */
.menu-group {
  display: flex;
  flex-direction: column;
}

.menu-group:first-child {
  min-height: 0;
}

/* Kicker labels */
.menu-kicker {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8C547;
  display: block;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(232, 197, 71, 0.18);
  flex-shrink: 0;
}

/* Nav lists */
.menu-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.menu-nav-item {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.menu-nav-item:last-child {
  border-bottom: none;
}

.slide-menu.active .menu-nav-item {
  opacity: 1;
  transform: translateX(0);
  transition-delay: calc(0.13s + (var(--i, 1) - 1) * 0.05s);
}

.menu-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(245, 242, 235, 0.82);
  padding: 14px 2px;
  transition: color 0s, padding-left 0.2s ease;
}

.menu-nav-link:hover {
  color: #E8C547;
  padding-left: 5px;
}

.menu-link-arrow {
  flex-shrink: 0;
  color: #E8C547;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-nav-link:hover .menu-link-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Info list */
.menu-nav-list--info .menu-nav-item {
  flex: unset;
}

/* Footer */
.menu-footer {
  padding: 14px 28px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.menu-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 300;
  color: rgba(245, 242, 235, 0.3);
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: filter var(--transition-base);
}

.menu-cta:hover {
  filter: brightness(1.05);
}

.menu-cta:active {
  filter: brightness(0.9);
}

/* ======================
   DESKTOP NAVIGATION
   ====================== */

.desktop-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 24px max(var(--content-padding-desktop), calc((100vw - var(--max-width)) / 2));
  background: transparent;
  transition: background var(--transition-base), transform var(--transition-base);
}

@media (min-width: 1024px) and (max-width: 1599px) {
  .desktop-nav {
    padding: 24px max(var(--content-padding-desktop), calc((100vw - var(--max-width)) / 2 + var(--content-padding-desktop)));
  }
}

.desktop-nav.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.desktop-nav.light {
  background: rgba(240, 240, 238, 0.95);
}

.desktop-nav.hidden {
  transform: translateY(-100%);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.nav-logo .logo-text {
  font-family: var(--font-logo);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fafafa;
  display: block;
  line-height: 1.4;
  transition: color var(--transition-base);
}

.nav-logo .logo-sub {
  font-family: var(--font-logo);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #F0CC3A;
  display: block;
  line-height: 1.4;
}

.desktop-nav.light .nav-logo .logo-text {
  color: var(--black);
}

.desktop-nav.light .nav-logo .logo-sub {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--yellow);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.desktop-nav.light .nav-link {
  color: var(--grey);
}

.desktop-nav.light .nav-link:hover {
  color: var(--black);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--yellow);
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* ======================
   DESKTOP BREAKPOINT
   ====================== */

@media (min-width: 1024px) {
  .burger-menu {
    display: none;
  }

  .slide-menu,
  .menu-overlay {
    display: none !important;
  }

  .desktop-nav {
    display: block;
  }
}



/* src/assets/css/components/hero.css */
/* ======================
   HERO SECTION
   ====================== */

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--charcoal);
}

.hero-image {
  position: relative;
  flex: 0 0 52svh;
  max-height: 440px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c4a35a 0%, #8a7030 100%);
  background-size: cover;
  background-position: center;
}

img.hero-image-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(14, 14, 14, 0.55) 0%,
      rgba(14, 14, 14, 0) 30%
    ),
    linear-gradient(
      to bottom,
      rgba(14, 14, 14, 0) 45%,
      rgba(14, 14, 14, 1) 100%
    );
}

.hero-logo {
  position: absolute;
  top: 18px;
  left: var(--content-padding-mobile);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  background: rgba(26, 26, 26, 0.75);
  padding: 6px 11px 6px 14px;
  border-radius: 2px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent),
                      linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-composite: source-in;
  -webkit-mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent),
              linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
          mask-image: linear-gradient(to right, transparent, black 18%, black 82%, transparent),
              linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fafafa;
  display: block;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.logo-sub {
  font-family: var(--font-logo);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #F0CC3A;
  display: block;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px var(--content-padding-mobile) 24px;
  background: var(--charcoal);
}

.hero-kicker-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 18px;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 12px;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
  white-space: nowrap;
}

.hero-subhead {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.hero-subhead-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .hero-subhead-desktop {
    display: inline;
  }
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-free-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  gap: 6px 8px;
  margin-bottom: 22px;
  width: auto;
}

.hero-free-label {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-free-item {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.1px;
}

.hero-free-sep {
  display: inline-block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: filter var(--transition-base);
  width: 100%;
  margin-bottom: 20px;
}

.hero-cta-btn:active {
  filter: brightness(0.9);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero-trust-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.hero-trust-sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.cta-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.cta-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.cta-primary:active {
  transform: scale(0.97);
  filter: brightness(0.9);
}

.cta-primary svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
}

.cta-secondary {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition-smooth);
  flex-shrink: 0;
}

.cta-secondary:hover {
  filter: brightness(1.1);
}

.cta-secondary:active {
  transform: scale(0.95);
  filter: brightness(0.9);
}

.cta-secondary svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  stroke-width: 1.5;
  fill: none;
}

.hero-stats {
  display: none;
  gap: 24px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}

.stat-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ======================
   GUARANTEE BADGE
   ====================== */

.hero-guarantee {
  position: absolute;
  top: 63%;
  right: 4px;
  z-index: 4;
  width: 95px;
  height: 95px;
  transform: translateY(-50%);
  -o-object-fit: contain;
     object-fit: contain;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .hero-logo {
    display: none;
  }

  .hero-section {
    flex-direction: row;
    height: 68vh;
    min-height: 760px;
  }

  .hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 48%;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #111111);
    z-index: 4;
    pointer-events: none;
  }

  .hero-image {
    position: relative;
    inset: auto;
    flex: 0 0 52%;
    max-height: none;
    order: 2;
  }

  img.hero-image-bg {
    -o-object-position: 70% 30%;
       object-position: 70% 30%;
  }

  .hero-image-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0.5) 0%,
        rgba(17, 17, 17, 0) 25%
      ),
      linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0) 60%,
        rgba(17, 17, 17, 0.7) 100%
      );
  }

  .hero-content::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, #111111, transparent);
    z-index: 3;
    pointer-events: none;
  }

  .hero-kicker-wrap {
    display: none;
  }

  .hero-guarantee {
    width: 100px;
    height: 100px;
    top: auto;
    bottom: 40px;
    right: auto;
    left: 48%;
    transform: translateX(-50%);
  }

  .hero-content {
    position: relative;
    bottom: auto;
    flex: 0 0 48%;
    padding: 80px 60px 60px;
    padding-top: 140px;
    padding-left: max(80px, calc((100vw - 1400px) / 2));
    justify-content: center;
    order: 1;
  }

  .hero-headline {
    font-size: 46px;
    margin-bottom: 16px;
    max-width: 440px;
  }

  .hero-subhead {
    font-size: 16px;
    max-width: 420px;
    margin-bottom: 28px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .hero-cta {
    max-width: 320px;
  }

  .cta-primary {
    flex: none;
    padding: 16px 32px;
    font-size: 14px;
  }

  .cta-secondary {
    width: 52px;
    height: 52px;
  }

  .hero-free-strip {
    justify-content: flex-start;
    gap: 0 14px;
    margin-bottom: 32px;
  }

  .hero-free-label {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .hero-free-item {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero-free-sep {
    display: inline-block;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.4);
  }

  .hero-cta-btn {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    font-size: 17px;
    padding: 18px 36px;
    letter-spacing: 0.3px;
    transition: background-color var(--transition-base), color var(--transition-base);
  }

  .hero-cta-btn:hover {
    background: var(--yellow);
    color: var(--charcoal);
  }

  .hero-cta-btn:active {
    filter: brightness(0.85);
  }


  .hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 8px;
  }

  .stat-value {
    font-size: 32px;
  }

  .stat-label {
    font-size: 10px;
  }
}

/* Small laptops only (13" MacBooks are ~1440-1512px) */
@media (min-width: 1024px) and (max-width: 1599px) {
  .hero-headline {
    font-size: 56px;
    max-width: 520px;
  }

  .hero-subhead {
    font-size: 16px;
    max-width: 440px;
  }

  .hero-content {
    padding-left: max(var(--content-padding-desktop), calc((100vw - var(--max-width)) / 2 + var(--content-padding-desktop)));
    padding-top: 200px;
  }

  .hero-cta {
    max-width: 300px;
  }

  .cta-primary {
    padding: 16px 32px;
    font-size: 14px;
  }

  .hero-free-item {
    font-size: 14px;
  }
}

@media (min-width: 1600px) {
  .hero-section {
    height: 56vh;
    min-height: 600px;
  }

  .hero-image {
    flex: 0 0 55%;
  }

  .hero-content {
    flex: 0 0 45%;
    padding: 200px 80px 60px;
    padding-left: calc((100vw - 1400px) / 2);
  }

  .hero-section::after {
    left: 45%;
  }

  .hero-guarantee {
    left: 45%;
  }

  .hero-headline {
    font-size: 56px;
    max-width: 500px;
  }

  .hero-subhead {
    max-width: 460px;
  }
}


/* src/assets/css/components/gallery.css */
/* ======================
   GALLERY SECTION
   ====================== */

.gallery-section {
  min-height: 100svh;
  background: var(--charcoal);
  padding: 14px var(--content-padding-mobile) 48px;
  display: flex;
  flex-direction: column;
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  align-self: flex-start;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

.gallery-headline {
  display: none;
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

.gallery-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

/* ======================
   GALLERY GRID — 3 items
   ====================== */

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  flex: 1;
  max-width: 100%;
  width: 100%;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
  aspect-ratio: 1 / 1;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
}

/* First item spans full width */
.gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

/* Mobile collage effect */
@media (max-width: 1023px) {
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    aspect-ratio: 3 / 4;
  }

  .gallery-item:nth-child(5) {
    transform: translateY(-57px);
  }
}

@media (hover: hover) {
  .gallery-item:hover {
    transform: scale(0.98);
  }
}

.gallery-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

/* Thorpe Marriot — show more of the image's left side */
.gallery-item-bg[style*="thorpe marriot"] {
  background-position: 15% center;
}

@media (hover: hover) {
  .gallery-item:hover .gallery-item-bg {
    transform: scale(1.05);
  }
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(26, 26, 26, 0) 50%
  );
}

.gallery-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
}

.gallery-item-location {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2px;
}

.gallery-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* Photo count badge */
.gallery-item-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border-radius: var(--radius-sm);
}

/* ======================
   PHOTO LIGHTBOX MODAL
   ====================== */

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.photo-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.photo-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Mobile: full-screen panel */
.photo-lightbox-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.photo-lightbox.active .photo-lightbox-panel {
  transform: translateY(0);
}

/* Header */
.photo-lightbox-header {
  padding: 16px var(--content-padding-mobile) 0;
  flex-shrink: 0;
}

.photo-lightbox-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.photo-lightbox-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.photo-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.photo-lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

.photo-lightbox-counter {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}

.photo-lightbox-counter strong {
  color: var(--white);
  font-weight: 600;
}

/* Progress bar */
.photo-lightbox-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.photo-lightbox-progress-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

/* Swipeable track */
.photo-lightbox-track {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.photo-lightbox-track::-webkit-scrollbar {
  display: none;
}

/* Individual slide */
.photo-lightbox-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.photo-lightbox-slide img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: var(--radius-md);
}

/* Project info at bottom */
.photo-lightbox-info {
  padding: 12px var(--content-padding-mobile) 20px;
  flex-shrink: 0;
  text-align: center;
}

.photo-lightbox-location {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 4px;
}

.photo-lightbox-title {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

/* Nav buttons — hidden on mobile */
.photo-lightbox-nav {
  display: none;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  /* Hide kickers on desktop — headlines do the job */
  .section-label {
    display: none;
  }

  .gallery-section {
    padding: 60px var(--content-padding-desktop) 80px;
    min-height: auto;
  }

  .gallery-section .section-container {
    display: flex;
    flex-direction: column;
  }

  .gallery-headline {
    display: block;
    font-size: 46px;
    margin-bottom: 32px;
    position: relative;
    padding-bottom: 8px;
  }

  .gallery-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 520px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent 65%);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    /* Row 3 = 2fr = rows 1+2 combined → right column splits exactly 50/50 */
    grid-template-rows: 1fr 1fr 2fr;
    gap: 16px;
  }

  .gallery-item {
    aspect-ratio: unset;
  }

  /* Hero spans top-left 2×2 area */
  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    aspect-ratio: 16 / 7;
  }

  /* Homepage: let the hero fill the full 2x2 cell so its bottom edge
     aligns with the column to its right (no aspect-ratio constraint) */
  .home .gallery-item:first-child {
    aspect-ratio: auto;
  }

  /* Right-top: spans rows 1-2 (top 50% of full gallery height) */
  .gallery-item:nth-child(2) {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  /* Bottom-left — height controlled by grid row 3 */
  .gallery-item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  /* Bottom-centre — height controlled by grid row 3 */
  .gallery-item:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  /* Right-bottom: row 3 (bottom 50% of full gallery height) */
  .gallery-item:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
  }

  .gallery-item-title {
    font-size: 16px;
  }

  .gallery-item-location {
    font-size: 10px;
  }

  /* Lightbox desktop */
  .photo-lightbox-panel {
    padding: 0;
  }

  .photo-lightbox-header {
    padding: 20px 32px 0;
  }

  .photo-lightbox-slide {
    padding: 24px 80px;
  }

  .photo-lightbox-info {
    padding: 12px 32px 24px;
  }

  .photo-lightbox-nav {
    display: contents;
  }

  .photo-lightbox-prev,
  .photo-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }

  .photo-lightbox-prev {
    left: 24px;
  }

  .photo-lightbox-next {
    right: 24px;
  }

  .photo-lightbox-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
  }

  .photo-lightbox-nav-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .photo-lightbox-nav-btn:hover svg {
    stroke: var(--black);
  }

  .photo-lightbox-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.65);
    stroke-width: 2;
    fill: none;
  }
}

@media (min-width: 1440px) {
  .gallery-section {
    padding: 80px var(--content-padding-wide) 100px;
  }
}

/* ======================
   HOMEPAGE — 6 items, last one a full-width hero
   ====================== */

.home .gallery-section {
  padding-top: 8px;
}

.home .gallery-section .section-label {
  display: none;
}

.home .gallery-headline {
  display: block;
  position: relative;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin: 0 0 16px;
  padding-bottom: 10px;
}

.home .gallery-headline::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(240, 204, 58, 0.4) 35%, transparent 75%);
}

.home .gallery-headline em {
  font-style: italic;
  color: var(--yellow);
}

.home .gallery-item:nth-child(2),
.home .gallery-item:nth-child(5) {
  aspect-ratio: 1 / 1;
}

.home .gallery-item:nth-child(5) {
  transform: none;
}

.home .gallery-item:last-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

/* Hide the 6th project (Sheringham Golden Harvest Path) on mobile only —
   it still appears in the resin service gallery */
@media (max-width: 1023px) {
  .home .gallery-item:nth-child(6) {
    display: none;
  }
}

@media (min-width: 1024px) {
  .home .gallery-headline {
    font-size: 42px;
    margin: 0 0 24px;
    padding-bottom: 14px;
  }

  .home .gallery-grid {
    grid-template-rows: 1fr 1fr 2fr;
  }

  .home .gallery-item:last-child {
    display: none;
  }
}

/* ======================
   TAR & CHIP PAGE — gallery has only 3 items, so the section ends up
   short and the content sits flush with the previous section's CTA.
   Centre the content vertically so it doesn't huddle at the top.
   ====================== */

/* ======================
   TARMAC + TAR & CHIP PAGES — 3 equal-sized tiles, no mosaic
   ====================== */

.tarmac-page .gallery-grid,
.tar-and-chip-page .gallery-grid {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.tarmac-page .gallery-item,
.tarmac-page .gallery-item:first-child,
.tarmac-page .gallery-item:nth-child(2),
.tarmac-page .gallery-item:nth-child(3),
.tarmac-page .gallery-item:nth-child(5),
.tar-and-chip-page .gallery-item,
.tar-and-chip-page .gallery-item:first-child,
.tar-and-chip-page .gallery-item:nth-child(2),
.tar-and-chip-page .gallery-item:nth-child(3) {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 16 / 9;
  transform: none;
}

@media (min-width: 1024px) {
  .tarmac-page .gallery-grid,
  .tar-and-chip-page .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .tarmac-page .gallery-item,
  .tarmac-page .gallery-item:first-child,
  .tarmac-page .gallery-item:nth-child(2),
  .tarmac-page .gallery-item:nth-child(3),
  .tar-and-chip-page .gallery-item,
  .tar-and-chip-page .gallery-item:first-child,
  .tar-and-chip-page .gallery-item:nth-child(2),
  .tar-and-chip-page .gallery-item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}


/* src/assets/css/components/case-study.css */
/* ======================
   CASE STUDY MODAL
   ====================== */

.case-study-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.case-study-modal.active {
  opacity: 1;
  visibility: visible;
}

.case-study-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Mobile: 85% bottom sheet with blurred bg peek --- */

.case-study-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 85%;
  background: var(--charcoal);
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--transition-spring);
  overflow: hidden;
}

.case-study-modal.active .case-study-panel {
  transform: translateY(0);
}

/* --- Header --- */

.case-study-header {
  padding: 16px var(--content-padding-mobile) 0;
  flex-shrink: 0;
}

.case-study-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.case-study-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.case-study-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.case-study-close svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
}

.case-study-counter {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.5px;
}

.case-study-counter strong {
  color: var(--white);
  font-weight: 600;
}

/* --- Progress bar --- */

.case-study-progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.case-study-progress-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

/* --- Carousel track --- */

.case-study-track {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.case-study-track::-webkit-scrollbar {
  display: none;
}

/* --- Individual slide --- */

.case-study-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 24px var(--content-padding-mobile) 32px;
  overflow-y: auto;
}

.case-study-slide-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.04);
}

.case-study-slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-study-slide-image .placeholder-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-study-slide-image .placeholder-bg svg {
  width: 48px;
  height: 48px;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
  fill: none;
}

.case-study-step-number {
  font-family: var(--font-serif);
  font-size: 14px;
  font-style: italic;
  color: var(--yellow);
  margin-bottom: 6px;
}

.case-study-step-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.case-study-step-description {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* --- Swipe hint --- */

.case-study-hint {
  padding: 12px var(--content-padding-mobile) 20px;
  text-align: center;
  flex-shrink: 0;
}

.case-study-hint span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}

/* --- Nav buttons (hidden on mobile) --- */

.case-study-nav {
  display: none;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .case-study-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    width: 90%;
    max-width: 900px;
    height: auto;
    max-height: 85vh;
    border-radius: var(--radius-xl);
    transform: translate(-50%, -50%) scale(0.9);
    transition: transform var(--transition-smooth);
  }

  .case-study-modal.active .case-study-panel {
    transform: translate(-50%, -50%) scale(1);
  }

  .case-study-header {
    padding: 20px 32px 0;
  }

  .case-study-slide {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 32px 32px;
  }

  .case-study-slide-image {
    flex: 0 0 50%;
    aspect-ratio: 4 / 3;
    margin-bottom: 0;
  }

  .case-study-slide-text {
    flex: 1;
    padding-top: 8px;
  }

  .case-study-step-title {
    font-size: 28px;
  }

  .case-study-step-description {
    font-size: 15px;
  }

  .case-study-nav {
    display: flex;
    gap: 8px;
    padding: 0 32px 24px;
    justify-content: flex-end;
  }

  .case-study-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
  }

  .case-study-nav-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .case-study-nav-btn:hover svg {
    stroke: var(--black);
  }

  .case-study-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.65);
    stroke-width: 2;
    fill: none;
  }

  .case-study-hint {
    display: none;
  }
}


/* src/assets/css/components/benefits.css */
/* ======================
   BENEFITS SECTION
   ====================== */

.benefits-section {
  min-height: 100svh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
}

/* ======================
   MOBILE LAYOUT
   ====================== */

.benefits-mobile {
  display: flex;
  flex-direction: column;
  padding: 24px var(--content-padding-mobile) 48px;
  flex: 1;
}

.benefits-section .section-label {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.benefits-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 0.95;
  color: var(--white);
  margin: 16px 0 0;
}

.benefits-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--yellow);
}

.benefits-intro {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 18px;
}

.benefits-intro strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.benefits-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow), transparent 65%);
  margin: 24px 0 18px;
  transform-origin: left;
}

.benefits-subkicker {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: block;
  margin-bottom: 6px;
}

/* ======================
   COMPARISON TABLE
   ====================== */

.benefits-comparison {
  display: none;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.comparison-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.comparison-value {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.comparison-value--gold {
  color: var(--yellow);
}

/* ======================
   BENEFITS LIST
   ====================== */

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.benefits-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex: 1;
}

.benefits-item:last-child {
  border-bottom: none;
}

.benefits-item-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(232, 197, 71, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-item-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
}

.benefits-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.1px;
}

/* ======================
   DESKTOP LAYOUT
   ====================== */

@media (min-width: 1024px) {
  .benefits-section {
    min-height: auto;
    padding: 100px var(--content-padding-desktop);
  }

  .benefits-mobile {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    padding: 0;
    width: 100%;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
  }

  .benefits-left {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .benefits-left .section-label {
    display: none;
  }

  .benefits-left .benefits-headline {
    font-size: 46px;
    margin-top: 0;
  }

  .benefits-left .benefits-intro {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 20px;
    max-width: 520px;
  }

  .benefits-left .benefits-subkicker {
    display: none;
  }

  .benefits-comparison {
    display: block;
    margin-top: 4px;
  }

  .benefits-mobile .benefits-list {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 0;
    padding: 24px 0;
  }

  .benefits-item {
    flex: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 28px 20px;
    border-bottom: none;
  }

  .benefits-item-icon {
    width: 42px;
    height: 42px;
    border: none;
  }

  .benefits-item-icon svg {
    width: 22px;
    height: 22px;
  }

  .benefits-item-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
  }
}

@media (min-width: 1440px) {
  .benefits-section {
    padding: 100px var(--content-padding-wide) 120px;
  }

  .benefits-mobile {
    gap: 80px;
  }
}

/* ======================
   REVEAL ANIMATIONS
   ====================== */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(13px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineReveal {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Hidden state before reveal — JS adds .js-ready to html */
.js-ready .benefits-section .section-label,
.js-ready .benefits-section .benefits-headline,
.js-ready .benefits-section .benefits-intro,
.js-ready .benefits-section .benefits-divider,
.js-ready .benefits-section .benefits-subkicker,
.js-ready .benefits-section .benefits-comparison,
.js-ready .benefits-section .benefits-item {
  opacity: 0;
}

/* Triggered when .in-view is added by JS */
.benefits-section.in-view .section-label {
  animation: fadeUp 0.5s ease forwards;
  animation-delay: 0.05s;
}
.benefits-section.in-view .benefits-headline {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.15s;
}
.benefits-section.in-view .benefits-intro {
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.26s;
}
.benefits-section.in-view .benefits-divider {
  animation: lineReveal 0.6s ease forwards;
  animation-delay: 0.38s;
  opacity: 1;
}
.benefits-section.in-view .benefits-subkicker {
  animation: fadeUp 0.5s ease forwards;
  animation-delay: 0.44s;
}
.benefits-section.in-view .benefits-comparison {
  animation: fadeUp 0.5s ease forwards;
  animation-delay: 0.50s;
}
.benefits-section.in-view .benefits-item:nth-child(1) { animation: fadeUp 0.5s ease forwards; animation-delay: 0.50s; }
.benefits-section.in-view .benefits-item:nth-child(2) { animation: fadeUp 0.5s ease forwards; animation-delay: 0.62s; }
.benefits-section.in-view .benefits-item:nth-child(3) { animation: fadeUp 0.5s ease forwards; animation-delay: 0.74s; }
.benefits-section.in-view .benefits-item:nth-child(4) { animation: fadeUp 0.5s ease forwards; animation-delay: 0.86s; }
.benefits-section.in-view .benefits-item:nth-child(5) { animation: fadeUp 0.5s ease forwards; animation-delay: 0.98s; }
.benefits-section.in-view .benefits-item:nth-child(6) { animation: fadeUp 0.5s ease forwards; animation-delay: 1.10s; }


/* src/assets/css/components/build.css */
/* ======================
   BUILD SECTION
   ====================== */

.build-section {
  min-height: 100svh;
  background: var(--charcoal);
  padding: 24px var(--content-padding-mobile) 48px;
  display: flex;
  flex-direction: column;
}

.build-section .section-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.build-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.build-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.build-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.build-intro {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin-bottom: 0;
}

/* On mobile, the intro lives inside the carousel diagram slide
   so it's swiped away with the layers. Hide the .build-left copy. */
.build-left > .build-intro {
  display: none;
}

.build-intro--mobile {
  margin-bottom: 18px;
}

.build-intro strong,
.build-detail strong {
  font-weight: 600;
  color: var(--white);
}

.build-detail {
  display: none;
}

/* Build Carousel — mobile horizontal swipe */
.build-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-left: calc(-1 * var(--content-padding-mobile));
  margin-right: calc(-1 * var(--content-padding-mobile));
  align-items: stretch;
}

.build-carousel::-webkit-scrollbar {
  display: none;
}

.build-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 var(--content-padding-mobile);
  display: flex;
  flex-direction: column;
  min-width: 100%;
}

.build-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.build-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-base);
}

.build-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--yellow);
}

/* Swipe hint */
.build-swipe-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.build-swipe-hint svg {
  stroke: var(--yellow);
  animation: swipeNudge 1.6s ease-in-out infinite;
}

@keyframes swipeNudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Build Steps List */
.build-steps {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* The left-column steps are hidden on mobile (they live in carousel) */
.build-left .build-steps {
  display: none;
}

.build-step {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.build-step:last-child {
  border-bottom: none;
}

.build-step-num {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--yellow);
  flex-shrink: 0;
  min-width: 24px;
  padding-top: 3px;
}

.build-step-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.build-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.1px;
}

.build-step-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.build-right {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
}

.build-layers {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.build-layer {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: max(48px, calc(var(--layer-flex, 1) * 38px));
}

.layer-visual {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.layer-texture {
  position: absolute;
  inset: 0;
}

.layer-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.layer-texture.resin {
  background: linear-gradient(135deg, #c4a35a 0%, #9a7a40 100%);
}

.layer-texture.tack {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.layer-texture.base {
  background: linear-gradient(135deg, #6a6a6a 0%, #4a4a4a 100%);
}

.layer-texture.sub {
  background: linear-gradient(135deg, #8a7a6a 0%, #6a5a4a 100%);
}

.layer-texture.geo {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
}

/* Tarmac / block paving layers */
.layer-texture.layer-smooth {
  background: linear-gradient(135deg, #282828 0%, #141414 100%);
}

.layer-texture.layer-fine {
  background: linear-gradient(135deg, #484848 0%, #303030 100%);
}

.layer-texture.layer-medium {
  background: linear-gradient(135deg, #686868 0%, #4a4a4a 100%);
}

.layer-texture.layer-rough {
  background: linear-gradient(135deg, #8a7a6a 0%, #6a5a4a 100%);
}

.layer-texture.layer-blocks {
  background: linear-gradient(135deg, #9a6a5a 0%, #7a4a3a 100%);
}

/* Gravel / tar-and-chip layers */
.layer-texture.gravel {
  background: linear-gradient(135deg, #c4a460 0%, #a08040 100%);
}

.layer-texture.membrane {
  background: linear-gradient(135deg, #252525 0%, #141414 100%);
}

.layer-texture.aggregate {
  background: linear-gradient(135deg, #8a7a6a 0%, #6a5a4a 100%);
}

.layer-texture.soil {
  background: linear-gradient(135deg, #7a5a3a 0%, #5a3a1a 100%);
}

.layer-texture.bitumen {
  background: linear-gradient(135deg, #1e1e1e 0%, #0a0a0a 100%);
}

.layer-number {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.layer-info {
  flex: 1;
  padding: 14px 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.layer-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.layer-depth {
  font-size: 11px;
  font-weight: 400;
  color: var(--grey);
}

.build-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.total-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
}

.total-value {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .build-section {
    padding: 0 var(--content-padding-desktop) 80px;
    min-height: auto;
  }

  /* 2-column layout: left = text, right = layers + total */
  .build-section .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 80px;
         column-gap: 80px;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    align-items: start;
    flex: none;
  }

  .build-left {
    padding-top: 0;
  }

  .build-headline {
    display: block;
    font-size: 44px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
  }

  .build-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 480px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent 65%);
  }

  .build-intro {
    display: none;
  }

  .build-detail {
    display: none;
  }

  /* Desktop: show steps in left column, kill mobile carousel */
  .build-left .build-steps {
    display: block;
    margin-top: 28px;
  }

  .build-step {
    padding: 16px 0;
  }

  .build-step-title {
    font-size: 15px;
  }

  .build-step-text {
    font-size: 14px;
  }

  .build-carousel {
    display: block;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
  }

  .build-slide {
    padding: 0;
  }

  .build-slide--steps {
    display: none;
  }

  .build-carousel-dots {
    display: none;
  }

  .build-swipe-hint {
    display: none;
  }

  /* Right column */
  .build-right {
    flex: none;
    margin-top: 0;
    padding-top: 100px;
  }

  .build-layers {
    flex-direction: column;
    gap: 8px;
    flex: none;
    height: auto;
  }

  .build-layer {
    flex-direction: row;
    flex: none;
    min-height: max(32px, calc(var(--layer-flex, 1) * 35px));
  }

  .layer-visual {
    width: 120px;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
  }

  .layer-number {
    font-size: 20px;
  }

  .layer-info {
    padding: 16px 20px;
    flex: 1;
  }

  .layer-name {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .layer-depth {
    font-size: 12px;
  }

  .build-total {
    margin-top: 12px;
  }
}

@media (min-width: 1440px) {
  .build-section {
    padding: 80px var(--content-padding-wide) 100px;
  }
}


/* src/assets/css/components/colours.css */
/* ======================
   COLOURS SECTION
   ====================== */

.colours-section {
  min-height: 100svh;
  background: var(--charcoal);
  padding: 20px var(--content-padding-mobile) 48px;
  display: flex;
  flex-direction: column;
}

.colours-headline {
  display: none;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
}

.colours-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.colours-tagline {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 100px;
}

.colours-supplier {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  margin-bottom: 20px;
}

.colours-supplier a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.colours-group {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
  transition: opacity 0.2s ease;
}

.colours-intro {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 20px;
  display: none;
}

@media (min-width: 1024px) {
  .colours-intro {
    display: block;
  }

  .colours-tagline {
    display: none;
  }

  .colours-group {
    display: none;
  }
}

/* View More button hidden on mobile */
.colours-view-more-wrap {
  display: none;
}

/* --- Toggle (gravel, tar-and-chip) --- */

.colour-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.toggle-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.toggle-btn.active {
  background: var(--yellow);
  color: var(--black);
}

.toggle-btn:hover:not(.active) {
  background: rgba(255, 255, 255, 0.03);
}

/* --- Carousel wrapper --- */
.carousel-wrap {
  display: contents; /* no effect on mobile, overridden on desktop */
}

.carousel-arrow {
  display: none; /* hidden on mobile */
}

/* --- Carousel (mobile swipe) --- */

.colour-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
  flex: 1;
  margin-left: calc(-1 * var(--content-padding-mobile));
  margin-right: calc(-1 * var(--content-padding-mobile));
  margin-top: 16px;
}

.colour-carousel::-webkit-scrollbar {
  display: none;
}

/* --- Carousel Pagination Dots --- */

.carousel-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
}

.carousel-dots-track {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  padding: 0;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--yellow);
}

.carousel-swipe-hint {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-swipe-hint::before,
.carousel-swipe-hint::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

/* Heritage visible by default, contemporary hidden */
.contemporary-carousel,
.contemporary-dots {
  display: none;
}

.colours-section.contemporary .heritage-carousel,
.colours-section.contemporary .heritage-dots {
  display: none;
}

.colours-section.contemporary .contemporary-carousel {
  display: flex;
}

.colours-section.contemporary .contemporary-dots {
  display: flex;
}

.colour-page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  scroll-snap-align: start;
  align-content: start;
  padding: 0 var(--content-padding-mobile);
}

/* "And dozens more" CTA slide */
.colour-page--cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.colour-more-cta {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}

.colour-more-headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin: 0 0 14px;
}

.colour-more-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 24px;
}

.colour-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: filter var(--transition-base);
}

.colour-more-btn:hover {
  filter: brightness(1.05);
}

/* Mobile: show 2x3 (hide 7th & 8th swatches) */
.colour-page .colour-swatch:nth-child(n+7) {
  display: none;
}

.colour-swatch {
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-base);
  aspect-ratio: 1;
}

.colour-swatch:hover {
  transform: scale(0.97);
}

.colour-swatch-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
}

img.colour-swatch-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.colour-swatch-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

.colour-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
}

/* ======================
   COLOR SWATCH FALLBACKS
   ====================== */

/* Contemporary colours */
.swatch-silver { background: #9a9a9a; }
.swatch-charcoal { background: #4a4a4a; }
.swatch-pearl { background: #d4c8b8; }
.swatch-anthracite { background: #3a3a3a; }
.swatch-platinum { background: #b8b8b8; }
.swatch-graphite { background: #5a5a5a; }
.swatch-ivory { background: #e8e0d0; }
.swatch-slate { background: #6a6a6a; }
.swatch-ash { background: #8a8a8a; }
.swatch-steel { background: #7a8a9a; }
.swatch-midnight { background: #2a2a3a; }
.swatch-cloud { background: #c8c8c8; }
.swatch-pewter { background: #6a6a70; }
.swatch-smoke { background: #5a5a5a; }
.swatch-arctic { background: #e0e4e8; }
.swatch-onyx { background: #1a1a1a; }
.swatch-granite { background: #7a7a7a; }
.swatch-dove { background: #b0b0b0; }

/* Heritage colours */
.swatch-golden { background: #c4a35a; }
.swatch-bronze { background: #8a6a4a; }
.swatch-autumn { background: #9a6a4a; }
.swatch-honey { background: #d4a860; }
.swatch-chestnut { background: #6a4030; }
.swatch-terracotta { background: #b87050; }
.swatch-sandstone { background: #c4b090; }
.swatch-copper { background: #9a7050; }
.swatch-walnut { background: #5a4030; }
.swatch-caramel { background: #c48850; }
.swatch-rustic { background: #8a5a40; }
.swatch-toffee { background: #b08060; }
.swatch-amber { background: #d4a040; }
.swatch-ochre { background: #c49050; }
.swatch-burnt-orange { background: #c06030; }
.swatch-clay { background: #9a6050; }
.swatch-hazel { background: #8a6040; }
.swatch-cinnamon { background: #a07050; }

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .colours-section {
    padding: 60px var(--content-padding-desktop) 80px;
    min-height: auto;
  }

  .colours-section .section-container {
    display: flex;
    flex-direction: column;
  }

  .colours-headline {
    display: block;
    font-size: 42px;
    position: relative;
    padding-bottom: 8px;
  }

  .colours-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 460px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent 65%);
  }

  .colours-intro {
    font-size: 16px;
  }

  .colour-toggle {
    max-width: 320px;
  }

  /* Desktop: paged carousel with arrows flanking outside */
  .carousel-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .colour-carousel {
    flex: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .colour-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    min-width: 100%;
    padding: 0;
    scroll-snap-align: start;
  }

  .colour-page .colour-swatch:nth-child(n+7) {
    display: block;
  }

  .colour-swatch {
    aspect-ratio: 1;
    min-height: 200px;
  }

  .colour-name {
    font-size: 14px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
  }

  /* Hide pages 3+ handled by carousel pagination now */
  .colour-page.colours-page-hidden {
    display: grid;
  }

  /* View More button — not needed with arrows */
  .colours-view-more-wrap {
    display: none;
  }

  /* Arrow buttons — sit outside the carousel */
  .carousel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
  }

  .carousel-arrow:hover {
    background: rgba(232, 197, 71, 0.15);
    border-color: var(--yellow);
    color: var(--yellow);
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
  }

  /* Larger, more prominent intro text */
  .colours-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 28px;
  }
}

@media (min-width: 1440px) {
  .colours-section {
    padding: 80px var(--content-padding-wide) 100px;
  }
}

/* ======================
   COLOUR MODAL
   ====================== */

.colour-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.colour-modal.active {
  opacity: 1;
  visibility: visible;
}

.colour-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.colour-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 500px;
  background: var(--charcoal);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

.colour-modal.active .colour-modal-content {
  transform: translate(-50%, -50%) scale(1);
}

.colour-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-base);
}

.colour-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.colour-modal-close:active {
  transform: scale(0.95);
}

.colour-modal-close svg {
  stroke: var(--white);
}

.colour-modal-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.colour-modal-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c4a35a 0%, #9a8040 100%);
}

.colour-modal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.colour-modal-info {
  padding: 24px;
  background: var(--charcoal);
}

.colour-modal-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.colour-modal-type {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}

/* Desktop modal adjustments */
@media (min-width: 768px) {
  .colour-modal-content {
    max-width: 600px;
  }

  .colour-modal-close {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .colour-modal-info {
    padding: 32px;
  }

  .colour-modal-name {
    font-size: 32px;
  }

  .colour-modal-type {
    font-size: 16px;
  }
}

/* Make swatches clickable */
.colour-swatch {
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.colour-swatch:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.colour-swatch:active {
  transform: translateY(-2px);
}


/* src/assets/css/components/blocks.css */
/* ======================
   BLOCKS SECTION
   ====================== */

.blocks-section {
  background: var(--charcoal);
  padding: 48px var(--content-padding-mobile);
}

.blocks-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.blocks-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.blocks-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

/* ======================
   BLOCK DETAIL CARD
   ====================== */

.block-detail-card {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-bottom: 0;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease,
    margin-bottom 0.4s ease;
}

.block-detail-card.active {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-bottom: 20px;
}

.block-detail-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #202020;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* --- Preview --- */

.block-detail-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  flex-shrink: 0;
  overflow: hidden;
}

.block-detail-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-detail-gradient {
  position: absolute;
  inset: 0;
}

/* Close button floats over the image */
.block-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-base), border-color var(--transition-base);
}

.block-detail-close:hover {
  background: rgba(0, 0, 0, 0.78);
  border-color: rgba(255, 255, 255, 0.3);
}

.block-detail-close svg {
  stroke: var(--white);
}

/* --- Body --- */

.block-detail-body {
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.block-detail-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 5px;
}

.block-detail-type-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
}

.block-detail-colours-heading {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: 12px;
}

/* --- Swatches --- */

.block-detail-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.block-detail-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.swatch-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
  transition:
    border-color var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.swatch-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.swatch-gradient {
  position: absolute;
  inset: 0;
}

.block-detail-swatch:hover .swatch-thumb {
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.block-detail-swatch.active .swatch-thumb {
  border-color: var(--yellow);
  box-shadow: 0 0 0 1px var(--yellow), 0 4px 14px rgba(232, 197, 71, 0.22);
}

.swatch-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  line-height: 1.2;
  max-width: 60px;
}

.block-detail-swatch.active .swatch-label {
  color: var(--yellow);
}

/* ======================
   BLOCK TYPES GRID
   ====================== */

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

.block-type-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  transition:
    transform var(--transition-base),
    outline-color var(--transition-base);
  outline: 2px solid transparent;
  outline-offset: 3px;
}

.block-type-card:hover {
  transform: scale(0.96);
}

.block-type-card.is-selected {
  outline-color: var(--yellow);
}

.block-type-bg {
  position: absolute;
  inset: 0;
}

img.block-type-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ======================
   TABLET
   ====================== */

@media (min-width: 640px) {
  .block-detail-card.active {
    margin-bottom: 24px;
  }

  .block-detail-inner {
    flex-direction: row;
  }

  .block-detail-preview {
    width: 58%;
    aspect-ratio: auto;
    min-height: 280px;
  }

  .block-detail-body {
    flex: 1;
    padding: 24px;
    justify-content: center;
  }

  .swatch-thumb {
    width: 64px;
    height: 64px;
  }

  .swatch-label {
    max-width: 64px;
  }
}

/* ======================
   DESKTOP
   ====================== */

@media (min-width: 1024px) {
  .blocks-section {
    padding: 100px var(--content-padding-desktop);
  }

  .blocks-headline {
    font-size: 42px;
    margin-bottom: 24px;
  }

  .block-detail-card.active {
    margin-bottom: 32px;
  }

  .block-detail-preview {
    width: 62%;
    min-height: 300px;
  }

  .block-detail-body {
    padding: 32px 30px;
    gap: 22px;
  }

  .block-detail-name {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .swatch-thumb {
    width: 70px;
    height: 70px;
  }

  .swatch-label {
    font-size: 11px;
    max-width: 70px;
  }

  .blocks-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }

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

@media (min-width: 1440px) {
  .blocks-section {
    padding: 120px var(--content-padding-wide);
  }

  .blocks-grid {
    gap: 16px;
  }
}


/* src/assets/css/components/customisation.css */
/* ======================
   CUSTOMISATION SECTION
   ====================== */

.customisation-section {
  background: var(--charcoal);
  padding: 14px var(--content-padding-mobile) 48px;
}

.customisation-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.customisation-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.customisation-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.customisation-intro {
  display: none;
}

/* ======================
   CUSTOMISATION GRID
   ====================== */

.customisation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.custom-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.custom-card--clickable {
  cursor: pointer;
}

.custom-card:hover {
  transform: scale(0.97);
}

.custom-bg {
  position: absolute;
  inset: 0;
}

.custom-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.custom-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.custom-description {
  font-size: 10px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 768px) {
  .customisation-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .customisation-section {
    padding: 100px var(--content-padding-desktop);
  }

  .customisation-headline {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .customisation-intro {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
    max-width: 540px;
  }

  .customisation-grid {
    gap: 20px;
  }

  .custom-overlay {
    padding: 16px;
  }

  .custom-name {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .custom-description {
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .customisation-section {
    padding: 120px var(--content-padding-wide);
  }

  .customisation-grid {
    gap: 24px;
  }
}


/* src/assets/css/components/contact.css */
/* ======================
   CONTACT SECTION
   ====================== */

.contact-section {
  min-height: 100svh;
  background: var(--charcoal);
  padding: 60px var(--content-padding-mobile);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Homepage splits the CTA and articles into two consecutive sections —
   each instance only renders one half, so they should size to content
   rather than each filling the full viewport */
.contact-section--cta-only,
.contact-section--articles-only {
  min-height: 0;
}

.contact-section--cta-only {
  padding-bottom: 28px;
}

.contact-section--articles-only {
  padding-top: 16px;
}

.contact-section .section-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  text-align: center;
}


/* Contact Kicker */
.contact-kicker {
  margin-top: 4px;
}

/* Contact Top — headline + stats */
.contact-top {
  margin-bottom: 32px;
  text-align: center;
}

.contact-stats {
  justify-content: center;
}


.contact-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}


/* ======================
   ABOUT US SECTION
   ====================== */

.contact-about {
  margin-bottom: 20px;
  padding-top: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-about-headline {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  text-align: left;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.contact-about-headline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
}

.contact-about-headline em {
  font-style: italic;
  color: var(--yellow);
}

.contact-about-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  padding-top: 12px;
}

.contact-headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 0;
}

.contact-headline em {
  color: #F0CC3A;
  font-style: italic;
}

.contact-intro {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
  margin-bottom: 20px;
}

.contact-free-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-free-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.contact-free-item svg {
  stroke: var(--yellow);
  flex-shrink: 0;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: filter var(--transition-base);
  align-self: flex-start;
}

.contact-cta-btn:active {
  filter: brightness(0.9);
}

.form-error {
  font-size: 13px;
  color: #e07070;
  margin: 8px 0 0;
}

/* Success state */
.contact-success[hidden] { display: none; }

.contact-success {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 0;
  animation: successFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes successFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
}

.success-svg {
  width: 64px;
  height: 64px;
  display: block;
}

.success-circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  transform-origin: 26px 26px;
  transform: rotate(-90deg);
  animation: drawCircle 0.7s cubic-bezier(0.65, 0, 0.45, 1) forwards 0.1s;
}

.success-check {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: drawCheck 0.4s ease forwards 0.65s;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.contact-success-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  animation: successFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both 0.3s;
}

.contact-success-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  animation: successFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) both 0.4s;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition-base);
  border-radius: 0;
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

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

.form-textarea {
  resize: none;
  min-height: 60px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--yellow);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: all var(--transition-base);
  margin-top: 16px;
}

.form-submit:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.form-submit svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  stroke-width: 2;
  fill: none;
}

.contact-cta-wrap {
  margin-bottom: 24px;
}

.contact-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--yellow);
  color: var(--black);
  border: 1.5px solid var(--yellow);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: background var(--transition-base), color var(--transition-base);
}

.contact-cta-btn:hover {
  background: var(--yellow);
  color: var(--black);
}

.contact-cta-btn:active {
  background: var(--yellow);
  color: var(--black);
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .contact-cta-btn {
    background: transparent;
    color: var(--yellow);
  }
}

.contact-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.contact-alt-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
}

.call-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity var(--transition-base);
}

.call-link:hover {
  opacity: 0.8;
}

.call-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--yellow);
  stroke-width: 1.5;
  fill: none;
}

.call-link span {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.contact-checklist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin-bottom: 28px;
}

.contact-check-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.contact-check-item svg {
  color: var(--yellow);
  flex-shrink: 0;
}

/* ======================
   ARTICLE LINK
   ====================== */

.contact-article {
  margin-top: auto;
  padding-top: 24px;
}

.contact-article-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
}

.contact-article-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-article-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  flex-shrink: 0;
}

.contact-article-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  flex: 1;
}

.contact-article-link svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .contact-section {
    padding: 60px var(--content-padding-desktop) 120px;
    min-height: auto;
    position: relative;
  }

  .contact-section--cta-only {
    padding-bottom: 20px;
  }

  .contact-section--articles-only {
    padding-top: 8px;
  }

  .contact-section .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    position: static;
  }

  .contact-kicker {
    display: none;
  }

  .contact-top {
    margin-top: 0;
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
    max-width: 520px;
  }

  .contact-headline {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .contact-intro {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .contact-checklist {
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    margin-bottom: 56px;
  }

  .contact-check-item {
    font-size: 17px;
    flex-direction: row-reverse;
    gap: 8px;
  }

  .contact-check-item svg {
    width: 16px;
    height: 16px;
  }

  .contact-cta-btn {
    align-self: center;
    font-size: 16px;
    padding: 20px 64px;
    max-width: 380px;
    width: 100%;
    background: transparent;
  }

  .contact-top-bar-removed {
    display: none;
  }

  .contact-location {
    font-size: 12px;
  }
}

@media (min-width: 1440px) {
  .contact-section {
    padding: 120px var(--content-padding-wide) 240px;
  }

  .contact-section--cta-only {
    padding-bottom: 16px;
  }

  .contact-section--articles-only {
    padding-top: 0;
  }
}

/* ======================
   ARTICLES STRIP
   ====================== */

.contact-articles-strip {
  display: block;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 32px;
  margin-top: 48px;
}

.contact-articles-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
}

.contact-articles-label {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
}

.contact-articles-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  transition: gap var(--transition-base);
}

.contact-articles-all:hover {
  gap: 10px;
}

.contact-articles-all svg {
  width: 14px;
  height: 14px;
  stroke: var(--yellow);
  stroke-width: 2;
  fill: none;
}

.contact-articles-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 12px;
  margin-left: calc(-1 * var(--content-padding-mobile));
  margin-right: calc(-1 * var(--content-padding-mobile));
  padding: 0 var(--content-padding-mobile);
}

.contact-articles-grid::-webkit-scrollbar {
  display: none;
}

.contact-article-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .contact-articles-strip {
    padding-top: 48px;
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .contact-articles-label {
    font-size: 42px;
  }

  .contact-articles-all {
    font-size: 13px;
  }

  .contact-articles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .contact-article-card {
    flex: none;
  }
}

.contact-article-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color var(--transition-base), background var(--transition-base);
}

.contact-article-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.contact-article-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.contact-article-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.contact-article-cat {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
}

.contact-article-title {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
  margin: 0;
}

.contact-article-read {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: auto;
  padding-top: 8px;
}



/* src/assets/css/components/faq.css */
/* ======================
   FAQ SECTION
   ====================== */

.faq-section {
  background: var(--charcoal);
  padding: 24px var(--content-padding-mobile);
}

.faq-section .section-label {
  color: rgba(255, 255, 255, 0.75);
}

.faq-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.faq-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.faq-intro {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ======================
   FAQ ACCORDION
   ====================== */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-base);
}

.faq-question:hover {
  color: var(--white);
}

.faq-question-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all var(--transition-base);
}

.faq-icon svg {
  transition: transform var(--transition-base);
}

/* Active state */
.faq-item[data-active="true"] .faq-icon {
  background: var(--yellow);
  color: var(--black);
}

.faq-item[data-active="true"] .faq-icon svg {
  transform: rotate(45deg);
}

.faq-item[data-active="true"] .faq-question {
  color: var(--white);
}

/* Answer content */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-out;
}

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.faq-answer-inner p {
  margin: 0 0 12px 0;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner strong {
  font-weight: 600;
  color: var(--white);
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .faq-section {
    padding: 60px var(--content-padding-desktop) 80px;
  }

  .faq-headline {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .faq-intro {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .faq-question {
    padding: 24px 0;
  }

  .faq-question-text {
    font-size: 18px;
  }

  .faq-answer-inner {
    padding-bottom: 28px;
    font-size: 16px;
    max-width: 700px;
  }

  .faq-icon {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 1440px) {
  .faq-section {
    padding: 80px var(--content-padding-wide) 100px;
  }

  .faq-headline {
    font-size: 48px;
  }
}


/* src/assets/css/components/footer.css */
/* ======================
   FOOTER
   ====================== */

.main-footer {
  background: var(--charcoal);
  padding: 14px var(--content-padding-mobile) 40px;
}

@media (max-width: 1023px) {
  .main-footer {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .main-footer .footer-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    width: 100%;
  }
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ======================
   FOOTER GRID
   ====================== */

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* ======================
   FOOTER COLUMNS
   ====================== */

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Company Info Column */
.footer-about {
  gap: 20px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-logo-main {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  max-width: 320px;
}

/* Navigation Column */
.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-link:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

/* Contact Column */
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-contact-item svg {
  stroke: var(--yellow);
  flex-shrink: 0;
}

.footer-contact-item:hover {
  color: var(--white);
}

/* ======================
   COPYRIGHT BAR
   ====================== */

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-legal-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition-base);
}

.footer-legal-link:hover {
  color: var(--yellow);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* ======================
   TABLET BREAKPOINT
   ====================== */

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copyright {
    text-align: left;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}

/* ======================
   DESKTOP BREAKPOINT
   ====================== */

@media (min-width: 1024px) {
  .main-footer {
    padding: 80px var(--content-padding-desktop) 40px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 48px;
  }

  .footer-about {
    grid-column: auto;
  }

  .footer-description {
    max-width: 400px;
  }
}

/* ======================
   WIDE BREAKPOINT
   ====================== */

@media (min-width: 1440px) {
  .main-footer {
    padding: 100px var(--content-padding-wide) 48px;
  }

  .footer-grid {
    gap: 120px;
  }
}


/* src/assets/css/components/articles.css */
/* ======================
   ARTICLES PAGE
   ====================== */

/* Fix contact section height on articles index — prevents mobile auto-scroll */
.articles-page .contact-section,
.article-page .contact-section {
  min-height: auto;
}

/* Articles Hero */
.articles-hero {
  position: relative;
  background: var(--charcoal);
  padding: 80px var(--content-padding-mobile) 48px;
}

.articles-hero-headline {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 16px 0 16px;
}

.articles-hero-headline em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
}

.articles-hero-subheadline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 700px;
  margin: 0;
}

/* Hero Stats */
.articles-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.articles-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.articles-hero-stat-value {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
}

.articles-hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* Articles Grid Section */
.articles-section {
  background: var(--off-white);
  padding: 40px var(--content-padding-mobile) 56px;
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ======================
   ARTICLE CARD — Card with image
   ====================== */

.article-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Image container */
.article-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
  flex-shrink: 0;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.04);
}

/* Number overlay on image */
.article-card-number {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Card content */
.article-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.article-category {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--charcoal);
  background: rgba(0, 0, 0, 0.06);
  padding: 4px 10px;
  border-radius: 3px;
}

.article-read-time {
  font-size: 12px;
  color: var(--grey);
}

.article-card-title {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0 0 8px;
  transition: color 0.2s ease;
}

.article-card:hover .article-card-title {
  color: var(--black);
}

.article-card-excerpt {
  font-size: 13px;
  line-height: 1.55;
  color: var(--grey);
  margin: 0 0 16px;
  flex: 1;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: auto;
  transition: gap 0.2s ease;
}

.article-card:hover .article-card-link {
  gap: 10px;
}

.article-card-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Tablet: 2-column grid */
@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .articles-hero {
    padding: 120px var(--content-padding-desktop) 64px;
  }

  .articles-hero-headline {
    font-size: 52px;
    margin: 20px 0 20px;
  }

  .articles-hero-subheadline {
    font-size: 17px;
    max-width: 560px;
  }

  .articles-hero-stats {
    gap: 48px;
  }

  .articles-hero-stat-value {
    font-size: 36px;
  }

  .articles-hero-stat-label {
    font-size: 11px;
  }

  .articles-section {
    padding: 56px var(--content-padding-desktop) 72px;
  }

  .articles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .article-card-content {
    padding: 22px;
  }

  .article-card-title {
    font-size: 18px;
  }

  .article-card-excerpt {
    font-size: 14px;
  }

  .article-card-number {
    font-size: 36px;
  }
}

@media (min-width: 1440px) {
  .articles-hero {
    padding: 140px var(--content-padding-wide) 80px;
  }

  .articles-hero-headline {
    font-size: 60px;
  }

  .articles-section {
    padding: 72px var(--content-padding-wide) 88px;
  }

  .articles-grid {
    gap: 28px;
  }
}


/* src/assets/css/components/article-page.css */
/* ======================
   INDIVIDUAL ARTICLE PAGE
   ====================== */

/* Article Hero */
.article-hero {
  background: var(--charcoal);
  padding: 80px var(--content-padding-mobile) 48px;
}

.article-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 28px;
}

.article-breadcrumb:hover {
  color: rgba(255, 255, 255, 0.8);
}

.article-breadcrumb svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

.article-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.article-hero-meta .article-category {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  background: var(--yellow);
  padding: 5px 12px;
  border-radius: 3px;
}

.article-hero-meta .article-read-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.article-date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.article-hero-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  max-width: 800px;
}

/* Cover image */
.article-cover-wrap {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--charcoal);
  border-radius: var(--radius-md);
}

.article-cover-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Article body */
.article-body-wrap {
  background: var(--off-white);
  padding: 56px var(--content-padding-mobile) 48px;
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
}

/* ======================
   PROSE TYPOGRAPHY
   ====================== */

.prose h2 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--charcoal);
  margin: 48px 0 16px;
  padding-top: 0;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 32px 0 10px;
  letter-spacing: -0.01em;
}

.prose p {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 20px;
}

.prose ul,
.prose ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.prose li {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 8px;
}

.prose li strong {
  color: var(--charcoal);
}

.prose ol {
  list-style-type: decimal;
}

.prose ul {
  list-style-type: disc;
}

.prose strong {
  font-weight: 700;
  color: var(--charcoal);
}

/* Comparison tables */
.article-table-wrap {
  overflow-x: auto;
  margin: 0 0 32px;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.article-table thead {
  background: var(--charcoal);
}

.article-table thead th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
  text-align: left;
}

.article-table thead th:first-child {
  color: rgba(255, 255, 255, 0.4);
}

.article-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.article-table tbody tr:last-child {
  border-bottom: none;
}

.article-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.02);
}

.article-table tbody td {
  padding: 13px 16px;
  color: #3a3a3a;
  vertical-align: top;
  line-height: 1.5;
}

.article-table tbody td:first-child {
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
  font-size: 13px;
}

/* Article CTA box */
.article-cta-box {
  max-width: 740px;
  margin: 56px auto 0;
  background: var(--charcoal);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.article-cta-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin: 0;
}

.article-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--yellow);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
  transition: filter 0.2s ease, gap 0.2s ease;
}

.article-cta-btn:hover {
  filter: brightness(1.08);
  gap: 14px;
}

.article-cta-btn svg {
  width: 15px;
  height: 15px;
  stroke: var(--black);
  stroke-width: 2;
  flex-shrink: 0;
}

/* Desktop */
@media (min-width: 1024px) {
  .article-hero {
    padding: 120px var(--content-padding-desktop) 64px;
  }

  .article-hero-title {
    font-size: 52px;
  }

  .article-cover-wrap {
    aspect-ratio: 21 / 7;
  }

  .article-body-wrap {
    padding: 72px var(--content-padding-desktop) 64px;
  }

  .prose h2 {
    font-size: 32px;
    margin-top: 56px;
  }

  .prose h3 {
    font-size: 19px;
  }

  .prose p,
  .prose li {
    font-size: 17px;
  }

  .article-table {
    font-size: 15px;
  }

  .article-cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
  }

  .article-cta-text {
    font-size: 26px;
    max-width: 480px;
  }
}

@media (min-width: 1440px) {
  .article-hero {
    padding: 140px var(--content-padding-wide) 80px;
  }

  .article-body-wrap {
    padding: 88px var(--content-padding-wide) 80px;
  }
}


/* src/assets/css/components/gallery-page.css */
/* ======================
   GALLERY PAGE
   ====================== */

.gallery-page {
  background: var(--charcoal);
  padding: 14px var(--content-padding-mobile) 48px;
}


.gallery-page .section-label {
  margin-bottom: 24px;
}

.gallery-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
  line-height: 1;
  margin-bottom: 24px;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.gallery-logo:hover {
  opacity: 0.85;
}
.gallery-logo-main {
  font-family: var(--font-logo);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fafafa;
  line-height: 1.4;
}
.gallery-logo-sub {
  font-family: var(--font-logo);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.4;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: start;
}

.gallery-page-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform var(--transition-base);
}

/* Mobile stagger — push every other tile down a touch */
.gallery-page-item:nth-child(2n) {
  margin-top: 30px;
}

.gallery-page-item:hover {
  transform: scale(0.98);
}

.gallery-page-item:hover .gallery-item-bg {
  transform: scale(1.05);
}

.gallery-page-service {
  display: block;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* ======================
   DESKTOP
   ====================== */

@media (min-width: 1024px) {
  .gallery-page {
    padding: 100px var(--content-padding-desktop);
    min-height: auto;
  }

  .gallery-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .gallery-page-item {
    aspect-ratio: 3 / 2;
    margin-top: 0;
  }

  .gallery-page-item:nth-child(2n) {
    margin-top: 0;
  }

  /* Desktop stagger — cascade across 3 columns */
  .gallery-page-item:nth-child(3n+2) {
    margin-top: 40px;
  }

  .gallery-page-item:nth-child(3n) {
    margin-top: 80px;
  }

  .gallery-page .section-label {
    margin-bottom: 40px;
  }
}

@media (min-width: 1440px) {
  .gallery-page {
    padding: 120px var(--content-padding-wide);
  }
}


/* src/assets/css/components/coming-soon.css */
/* ======================
   COMING SOON SECTION
   ====================== */

.coming-soon-section {
  min-height: 100svh;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px var(--content-padding-mobile) 80px;
}

.coming-soon-inner {
  max-width: 540px;
  width: 100%;
  text-align: left;
}

.coming-soon-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  padding-bottom: 8px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--yellow);
}

.coming-soon-headline {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 18px;
}

.coming-soon-headline em {
  font-style: italic;
  color: var(--yellow);
}

.coming-soon-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
}

.coming-soon-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.coming-soon-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: filter var(--transition-base);
}

.coming-soon-cta:active {
  filter: brightness(0.9);
}

.coming-soon-back {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color var(--transition-base);
}

.coming-soon-back:hover {
  color: var(--white);
}

@media (min-width: 1024px) {
  .coming-soon-section {
    padding: 140px var(--content-padding-desktop) 100px;
  }

  .coming-soon-headline {
    font-size: 56px;
  }

  .coming-soon-text {
    font-size: 16px;
  }
}


/* src/assets/css/components/commercial.css */
/* ==========================================
   COMMERCIAL LANDING PAGES
   /commercial/tarmac/  +  /commercial/tar-and-chip/
   - Sans-serif throughout (Outfit), no decorative serif
   - Mixed dark / light sections
   - Mobile-first, scaling to desktop
   - No scroll-snap, free-flowing layout
   ========================================== */

.commercial-page {
  font-family: var(--font-primary);
  color: var(--charcoal);
  background: #ffffff;
  scroll-behavior: smooth;
  /* Override any inherited scroll snap from the main site */
  scroll-snap-type: none !important;
}

.commercial-page main {
  display: block;
}

/* ==========================
   TOP BAR
   ========================== */
.cm-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--charcoal);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cm-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-decoration: none;
  flex-shrink: 0;
}

.cm-logo-main {
  font-family: var(--font-logo);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
}

.cm-logo-sub {
  font-family: var(--font-logo);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 0.5px;
}

.cm-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
  border-radius: 6px;
}

.cm-toggle-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cm-toggle-btn:hover {
  color: var(--white);
}

.cm-toggle-btn--active {
  background: var(--yellow);
  color: var(--charcoal);
}

.cm-topbar-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  flex-shrink: 0;
}

.cm-topbar-phone svg {
  width: 14px;
  height: 14px;
}

/* ==========================
   SHARED SECTIONS
   ========================== */
.cm-section {
  padding: 56px 20px;
}

.cm-section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.cm-section--light {
  background: #ffffff;
  color: var(--charcoal);
}

.cm-section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.cm-kicker,
.cm-section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a8a8a;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 6px;
}

.cm-kicker::after,
.cm-section-kicker::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--yellow);
}

.cm-section-kicker--dark {
  color: rgba(255, 255, 255, 0.55);
}

.cm-section-headline {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 28px;
  max-width: 760px;
}

.cm-section-headline--dark {
  color: var(--white);
}

/* ==========================
   HERO
   ========================== */
.cm-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 20px 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cm-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.cm-hero-content {
  max-width: 720px;
}

.cm-hero-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  width: 100%;
}

.cm-hero .cm-kicker {
  color: var(--yellow);
}

.cm-hero .cm-kicker::after {
  background: var(--yellow);
}

.cm-hero-headline {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.6px;
  line-height: 1.1;
  color: var(--white);
  margin: 8px 0 16px;
  max-width: 720px;
}

.cm-hero-headline em {
  font-style: normal;
  color: var(--yellow);
}

.cm-hero-sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
  max-width: 620px;
}

.cm-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

/* ==========================
   BUTTONS
   ========================== */
.cm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.1s ease;
  text-align: center;
}

.cm-btn--primary {
  background: var(--yellow);
  color: var(--charcoal);
}

.cm-btn--primary:hover {
  filter: brightness(1.08);
}

.cm-btn--primary:active {
  transform: scale(0.98);
}

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

.cm-btn--ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* ==========================
   TRUST STRIP (4 stats)
   ========================== */
.cm-trust {
  background: var(--charcoal);
  color: var(--white);
  border-top: 2px solid var(--yellow);
  padding: 28px 20px;
}

.cm-trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

.cm-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cm-trust-stat {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.6px;
  color: var(--yellow);
  line-height: 1;
}

.cm-trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================
   USE CASE GRID
   ========================== */
.cm-usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.cm-usecase {
  padding: 18px 20px;
  border: 1px solid #e5e6e8;
  border-left: 3px solid var(--yellow);
  border-radius: 3px;
  background: #fafafa;
}

.cm-usecase-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--charcoal);
}

.cm-usecase-text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(14, 14, 14, 0.65);
  margin: 0;
}

/* ==========================
   PROCESS STEPS (numbered)
   ========================== */
.cm-process {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.cm-process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.cm-process-step:last-child {
  border-bottom: none;
}

.cm-process-num {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 300;
  color: var(--yellow);
  letter-spacing: -0.5px;
  line-height: 1;
}

.cm-process-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.cm-process-text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==========================
   SUPPLIERS
   ========================== */
.cm-suppliers-intro {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(14, 14, 14, 0.65);
  margin: 0 0 24px;
  max-width: 620px;
}

.cm-suppliers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.cm-supplier {
  padding: 16px 14px;
  background: #f4f5f7;
  border-radius: 3px;
  border-top: 2px solid var(--yellow);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cm-supplier-name {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--charcoal);
}

.cm-supplier-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(14, 14, 14, 0.5);
}

/* ==========================
   PROJECTS GRID
   ========================== */
.cm-projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.cm-project {
  display: flex;
  flex-direction: column;
}

.cm-project-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #e6e7e9;
  border-radius: 3px;
}

.cm-project-meta {
  padding: 10px 2px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cm-project-loc {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--yellow);
}

.cm-project-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ==========================
   LEAD FORM
   ========================== */
.cm-form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.cm-form-intro .cm-section-headline--dark {
  margin-bottom: 16px;
}

.cm-form-promise {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 18px;
  max-width: 460px;
}

.cm-form-direct {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 14px;
}

.cm-form-direct-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.cm-form-direct-phone {
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.cm-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 20px;
  border-radius: 4px;
}

.cm-form-hidden {
  display: none;
}

.cm-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.cm-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cm-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.cm-field-opt {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 4px;
}

.cm-field input,
.cm-field select,
.cm-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.cm-field input:focus,
.cm-field select:focus,
.cm-field textarea:focus {
  border-color: var(--yellow);
}

.cm-field input::-moz-placeholder, .cm-field textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cm-field input::placeholder,
.cm-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.cm-field select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--yellow) 50%), linear-gradient(135deg, var(--yellow) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.cm-field select option {
  background: #ffffff;
  color: var(--charcoal);
  font-weight: 500;
}

.cm-field select option:disabled {
  color: rgba(14, 14, 14, 0.4);
}

.cm-field textarea {
  resize: vertical;
  min-height: 90px;
}

.cm-form-submit {
  width: 100%;
}

/* ==========================
   FOOTER
   ========================== */
.cm-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.6);
  padding: 28px 20px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cm-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cm-footer-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}

.cm-footer-switch:hover {
  border-color: var(--yellow);
}

.cm-footer-switch strong {
  font-weight: 700;
  color: var(--yellow);
}

.cm-footer-switch svg {
  margin-left: auto;
}

.cm-footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.cm-footer-back {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.cm-footer-back:hover {
  color: var(--yellow);
}

/* ==========================
   DESKTOP (1024px+)
   ========================== */
@media (min-width: 1024px) {
  .cm-topbar {
    padding: 16px 48px;
  }

  .cm-topbar-phone {
    display: inline-flex;
  }

  .cm-toggle-btn {
    font-size: 13px;
    padding: 9px 18px;
  }

  .cm-section {
    padding: 88px 48px;
  }

  .cm-hero {
    padding: 88px 48px 100px;
  }

  .cm-hero--has-image .cm-hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
  }

  .cm-hero-image {
    aspect-ratio: 5 / 4;
    max-height: 460px;
  }

  .cm-hero-headline {
    font-size: 52px;
    letter-spacing: -1px;
  }

  .cm-hero-sub {
    font-size: 17px;
  }

  .cm-hero-cta {
    flex-direction: row;
    align-items: center;
  }

  .cm-section-headline {
    font-size: 38px;
  }

  .cm-trust {
    padding: 36px 48px;
  }

  .cm-trust-inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .cm-trust-stat {
    font-size: 36px;
  }

  .cm-usecase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cm-usecase {
    padding: 24px;
  }

  .cm-usecase-title {
    font-size: 17px;
  }

  .cm-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 48px;
  }

  .cm-process-step {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cm-process-step:nth-last-child(2):nth-child(odd),
  .cm-process-step:last-child {
    border-bottom: none;
  }

  .cm-process-num {
    font-size: 36px;
  }

  .cm-process-title {
    font-size: 18px;
  }

  .cm-suppliers-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .cm-projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .cm-form-wrap {
    grid-template-columns: 1fr 1.3fr;
    gap: 56px;
    align-items: start;
  }

  .cm-form {
    padding: 32px;
  }

  .cm-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .cm-field--wide {
    grid-column: 1 / -1;
  }

  .cm-footer {
    padding: 36px 48px;
  }

  .cm-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }

  .cm-footer-switch {
    flex: 0 0 auto;
  }

  .cm-footer-meta {
    text-align: right;
  }
}

@media (min-width: 1440px) {
  .cm-section,
  .cm-hero,
  .cm-trust,
  .cm-footer {
    padding-left: 80px;
    padding-right: 80px;
  }
  .cm-topbar {
    padding-left: 80px;
    padding-right: 80px;
  }
}


/* src/assets/css/components/home-services.css */
/* ======================
   HOME SERVICES SECTION
   ====================== */

.home-services-section {
  min-height: 100svh;
  background: var(--charcoal);
  padding: 14px var(--content-padding-mobile) 48px;
  display: flex;
  flex-direction: column;
}

/* ======================
   SERVICES GRID — gallery style
   ====================== */

.home-services-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.home-service-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-base);
  aspect-ratio: 16 / 9;
  display: block;
}

.home-service-item:hover {
  transform: scale(0.98);
}

.home-service-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.home-service-item:hover .home-service-item-bg {
  transform: scale(1.05);
}

.home-service-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.1) 60%
  );
}

.home-service-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-service-item-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.home-service-item-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.2px;
}

.home-services-section .section-label {
  display: none;
}

.home-services-headline {
  display: block;
  position: relative;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin: 0 0 16px;
  padding-bottom: 10px;
}

.home-services-headline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(240, 204, 58, 0.4) 35%, transparent 75%);
}

.home-services-headline em {
  font-style: italic;
  color: var(--yellow);
}

.home-services-subheadline {
  display: none;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .home-services-section {
    padding: 40px var(--content-padding-desktop) 100px;
    min-height: auto;
  }

  .home-services-headline {
    display: block;
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    margin: 8px 0 12px;
  }

  .home-services-headline em {
    font-style: italic;
    color: var(--yellow);
  }

  .home-services-subheadline {
    display: block;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 40px;
    max-width: 520px;
  }

  .home-services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 500px;
  }

  .home-service-item {
    aspect-ratio: auto;
    height: 100%;
  }

  .home-service-item--featured {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .home-service-item-name {
    font-size: 18px;
  }

  .home-service-item--featured .home-service-item-name {
    font-size: 26px;
  }

  .home-service-item-desc {
    font-size: 13px;
  }
}

@media (min-width: 1440px) {
  .home-services-section {
    padding: 50px var(--content-padding-wide) 120px;
  }
}


/* src/assets/css/components/home-about-process.css */
/* ======================
   ABOUT-PROCESS SECTION
   ====================== */

.about-process {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  padding: 12px var(--content-padding-mobile) 40px;
}

/* --- Headline --- */
.ap-headline {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.ap-headline em {
  font-style: italic;
  color: var(--yellow);
}

.ap-intro {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 480px;
}

/* --- Process Steps --- */
.ap-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}

.ap-steps-headline {
  display: none;
}

.ap-step {
  display: flex;
  gap: 16px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ap-step:last-child {
  border-bottom: none;
}

.ap-step-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
  min-width: 22px;
  padding-top: 2px;
}

.ap-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ap-step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.ap-step-text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Trust Row --- */
.ap-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 0;
  border-top: none;
  margin-top: 24px;
}

.ap-trust--desktop {
  display: none;
}

.ap-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ap-trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(240, 204, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-trust-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--yellow);
  stroke-width: 1.8;
  fill: none;
}

.ap-trust-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.ap-trust-label strong {
  color: var(--white);
  font-weight: 700;
}

/* ======================
   DESKTOP
   ====================== */

@media (min-width: 1024px) {
  .about-process {
    min-height: auto;
    padding: 100px max(var(--content-padding-desktop), calc((100% - var(--max-width)) / 2));
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
  }

  .ap-left {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 620px;
    position: sticky;
    top: 100px;
  }

  .ap-headline {
    font-size: 44px;
    margin-bottom: 18px;
  }

  .ap-intro {
    font-size: 16px;
    line-height: 1.75;
    max-width: none;
    margin-bottom: 32px;
  }

  .ap-right {
    flex: 0 1 auto;
    min-width: 0;
  }

  .ap-trust--mobile {
    display: none;
  }

  .ap-trust--desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 28px 24px;
    margin-top: 90px;
  }

  .ap-trust--desktop .ap-trust-item {
    gap: 14px;
  }

  .ap-trust--desktop .ap-trust-icon {
    width: 44px;
    height: 44px;
  }

  .ap-trust--desktop .ap-trust-icon svg {
    width: 20px;
    height: 20px;
  }

  .ap-trust--desktop .ap-trust-label {
    font-size: 15px;
  }

  .ap-steps-headline {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 16px;
  }

  .ap-steps {
    margin-bottom: 0;
  }

  .ap-step {
    padding: 22px 0;
  }

  .ap-step-title {
    font-size: 16px;
  }

  .ap-step-text {
    font-size: 13px;
  }

  .ap-trust {
    gap: 28px;
    padding-top: 28px;
  }

  .ap-trust-icon {
    width: 32px;
    height: 32px;
  }

  .ap-trust-icon svg {
    width: 14px;
    height: 14px;
  }

  .ap-trust-label {
    font-size: 13px;
  }
}

@media (min-width: 1440px) {
  .about-process {
    padding: 120px max(var(--content-padding-wide), calc((100% - var(--max-width)) / 2));
    gap: 100px;
  }
}


/* src/assets/css/components/process-steps.css */
/* ======================
   PROCESS STEPS SECTION
   ====================== */

.process-steps-section {
  background: var(--charcoal);
  padding: 48px var(--content-padding-mobile) 60px;
}

.ps-header {
  margin-bottom: 20px;
}

.ps-headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}

.ps-headline em {
  font-style: italic;
  color: var(--yellow);
}

.ps-subhead {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.ps-steps {
  display: flex;
  flex-direction: column;
}

.ps-step {
  display: flex;
  gap: 16px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ps-step:last-child {
  border-bottom: none;
}

.ps-step-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
  min-width: 22px;
  padding-top: 2px;
}

.ps-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ps-step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.ps-step-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* ======================
   DESKTOP
   ====================== */

@media (min-width: 1024px) {
  .process-steps-section {
    padding: 100px max(var(--content-padding-desktop), calc((100% - var(--max-width)) / 2));
  }

  .ps-header {
    margin-bottom: 48px;
  }

  .ps-headline {
    font-size: 44px;
  }

  .ps-subhead {
    font-size: 15px;
  }

  .ps-steps {
    flex-direction: row;
    gap: 32px;
    align-items: stretch;
  }

  .ps-step {
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding: 28px 0 0;
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
  }

  /* Arrow between steps */
  .ps-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-top: 1.5px solid rgba(240, 204, 58, 0.5);
    border-right: 1.5px solid rgba(240, 204, 58, 0.5);
    rotate: 45deg;
  }

  .ps-step-number {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .ps-step-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .ps-step-text {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .process-steps-section {
    padding: 120px max(var(--content-padding-wide), calc((100% - var(--max-width)) / 2));
  }

  .ps-steps {
    gap: 48px;
  }

  .ps-step:not(:last-child)::after {
    right: -30px;
  }
}


/* src/assets/css/components/home-about-v2.css */
/* ======================
   HOME ABOUT — ALTERNATIVE V2
   ====================== */

.about-v2-section {
  background: var(--charcoal);
  padding: 14px var(--content-padding-mobile) 48px;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.about-v2-section .section-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Headline */
.about-v2-headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin: 6px 0 20px;
}

.about-v2-headline em {
  font-style: italic;
  color: var(--yellow);
}

/* ======================
   GOOGLE REVIEWS STRIP
   ====================== */

.about-v2-reviews {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 8px 14px;
  margin-bottom: 20px;
}

.about-v2-stars {
  display: flex;
  gap: 1px;
}

.about-v2-stars svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.about-v2-rating {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}

.about-v2-divider {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
}

.about-v2-review-text {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

/* ======================
   IMAGE
   ====================== */

.about-v2-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
}

.about-v2-img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}

.about-v2-est {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

/* ======================
   STATS
   ====================== */

.about-v2-stats {
  display: flex;
  gap: 0;
  margin: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.about-v2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.about-v2-stat + .about-v2-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.about-v2-stat--minor .about-v2-stat-value,
.about-v2-stat--featured .about-v2-stat-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
}

.about-v2-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ======================
   PULL QUOTE
   ====================== */

.about-v2-quote {
  margin: 4px 0 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--yellow);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.about-v2-quote-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px;
}

.about-v2-cite {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-style: normal;
}

/* Body copy */
.about-v2-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-align: left;
}


/* ======================
   DESKTOP
   ====================== */

/* Desktop reviews pill hidden on mobile (duplicate for desktop column) */
.about-v2-reviews--desktop {
  display: none;
}

@media (min-width: 1024px) {
  .about-v2-section {
    padding: 100px var(--content-padding-desktop) 80px;
    min-height: auto;
    justify-content: flex-start;
  }

  .about-v2-headline {
    font-size: 42px;
    margin: 8px 0 28px;
  }

  .about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }

  /* Hide mobile reviews pill, show desktop one */
  .about-v2-left .about-v2-reviews {
    display: none;
  }
  .about-v2-reviews--desktop {
    display: inline-flex;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .about-v2-left {
    display: flex;
    flex-direction: column;
  }

  .about-v2-image-wrap {
    width: 100%;
  }

  .about-v2-img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
  }

  .about-v2-right {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .about-v2-stats {
    margin: 0 0 20px;
  }

  .about-v2-stat-label {
    font-size: 11px;
  }

  .about-v2-body {
    text-align: left;
    margin-top: 20px;
  }

  .about-v2-quote-text {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .about-v2-section {
    padding: 120px var(--content-padding-wide) 100px;
  }
}


/* src/assets/css/components/home-process.css */
/* ======================
   HOME PROCESS SECTION
   ====================== */

.home-process-section {
  background: var(--charcoal);
  min-height: 100svh;
  padding: 14px var(--content-padding-mobile) 48px;
  display: flex;
  flex-direction: column;
}

.home-process-section .section-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-process-header {
  margin-bottom: 32px;
}

.home-process-headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
  margin-top: 6px;
}

.home-process-headline em {
  font-style: italic;
  color: var(--yellow);
}

.home-process-subheadline {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ======================
   TIMELINE STEPS
   ====================== */

.home-process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
}

/* Track: circle + line */
.home-process-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.home-process-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.home-process-dot span {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 400;
  color: var(--yellow);
  letter-spacing: 0.5px;
}

.home-process-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(232, 197, 71, 0.6), rgba(232, 197, 71, 0.05));
  margin: 6px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.home-process-arrow {
  stroke: rgba(232, 197, 71, 0.45);
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: 0;
}

/* Step body */
.home-process-body {
  padding-top: 9px;
  padding-bottom: 12px;
  flex: 1;
}

.home-process-step--last .home-process-body {
  padding-bottom: 0;
}

.home-process-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.home-process-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ======================
   DESKTOP STYLES
   ====================== */

@media (min-width: 1024px) {
  .home-process-section {
    min-height: auto;
    padding: 100px var(--content-padding-desktop);
    display: block;
  }

  .home-process-section .section-container {
    display: block;
  }

  .home-process-header {
    margin-bottom: 48px;
  }

  .home-process-headline {
    font-size: 48px;
    margin-bottom: 12px;
  }

  .home-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .home-process-step {
    flex-direction: column;
    gap: 16px;
    padding: 32px 32px 32px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-process-step:last-child {
    border-right: none;
    padding-right: 0;
  }

  .home-process-step:not(:first-child) {
    padding-left: 32px;
  }

  .home-process-track {
    flex-direction: row;
    width: auto;
    align-items: center;
    gap: 0;
  }

  .home-process-line {
    display: none;
  }

  .home-process-dot {
    width: 44px;
    height: 44px;
  }

  .home-process-dot span {
    font-size: 14px;
  }

  .home-process-body {
    padding-top: 0;
    padding-bottom: 0;
  }

  .home-process-title {
    font-size: 18px;
  }

  .home-process-text {
    font-size: 14px;
  }
}

@media (min-width: 1440px) {
  .home-process-section {
    padding: 120px var(--content-padding-wide);
  }
}


/* src/assets/css/components/home-about.css */
/* ======================
   HOME ABOUT SECTION
   ====================== */

.home-about-section {
  background: var(--charcoal);
  padding: 20px var(--content-padding-mobile) 48px;
}

.home-about-headline {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 16px 0 32px;
}

.home-about-headline em {
  font-style: italic;
}

.about-content {
  max-width: 800px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

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

/* Desktop styles */
@media (min-width: 1024px) {
  .home-about-section {
    padding: 80px var(--content-padding-desktop);
  }

  .home-about-headline {
    font-size: 48px;
    margin: 20px 0 40px;
  }

  .about-content {
    max-width: 900px;
  }

  .about-content p {
    font-size: 20px;
    margin-bottom: 28px;
  }
}

@media (min-width: 1440px) {
  .home-about-section {
    padding: 96px var(--content-padding-wide);
  }

  .home-about-headline {
    font-size: 56px;
    margin: 24px 0 48px;
  }

  .about-content {
    max-width: 1000px;
  }

  .about-content p {
    font-size: 22px;
    line-height: 1.8;
  }
}


/* src/assets/css/components/home-work.css */
/* ======================
   HOME RECENT WORK GRID
   ====================== */

.home-work-section {
  background: var(--white);
  padding: 48px var(--content-padding-mobile);
}

.home-work-headline {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 16px 0 32px;
}

.home-work-headline em {
  font-style: italic;
}

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

.work-card {
  position: relative;
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

.work-card-content {
  position: relative;
  padding: 24px;
  color: var(--white);
  z-index: 1;
}

.work-card-service {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.work-card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 4px;
}

.work-card-location {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

/* Desktop styles */
@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .home-work-section {
    padding: 80px var(--content-padding-desktop);
  }

  .home-work-headline {
    font-size: 48px;
    margin: 20px 0 48px;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .work-card {
    min-height: 280px;
  }

  .work-card-content {
    padding: 32px;
  }

  .work-card-service {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .work-card-title {
    font-size: 26px;
  }

  .work-card-location {
    font-size: 17px;
  }
}

@media (min-width: 1440px) {
  .home-work-section {
    padding: 96px var(--content-padding-wide);
  }

  .home-work-headline {
    font-size: 56px;
    margin: 24px 0 56px;
  }

  .work-grid {
    gap: 32px;
  }

  .work-card {
    min-height: 320px;
  }
}


/* src/assets/css/components/home-areas.css */
/* ======================
   HOME SERVICE AREAS
   ====================== */

.home-areas-section {
  background: var(--charcoal);
  padding: 48px var(--content-padding-mobile);
}

.home-areas-headline {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: 16px 0 32px;
}

.home-areas-headline em {
  font-style: italic;
}

.areas-content {
  max-width: 800px;
}

.areas-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.areas-towns {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin: 0;
}

/* Desktop styles */
@media (min-width: 1024px) {
  .home-areas-section {
    padding: 80px var(--content-padding-desktop);
  }

  .home-areas-headline {
    font-size: 48px;
    margin: 20px 0 40px;
  }

  .areas-content {
    max-width: 900px;
  }

  .areas-intro {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .areas-towns {
    font-size: 18px;
  }
}

@media (min-width: 1440px) {
  .home-areas-section {
    padding: 96px var(--content-padding-wide);
  }

  .home-areas-headline {
    font-size: 56px;
    margin: 24px 0 48px;
  }

  .areas-content {
    max-width: 1000px;
  }

  .areas-intro {
    font-size: 22px;
  }

  .areas-towns {
    font-size: 19px;
  }
}


/* src/assets/css/components/home-contact-cta.css */
/* ======================
   HOME CONTACT CTA
   ====================== */

.home-contact-cta {
  background: var(--white);
  padding: 64px var(--content-padding-mobile);
}

.contact-cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-headline {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.contact-cta-subheadline {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0 0 32px;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  min-width: 200px;
}

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

.btn-primary:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

/* Desktop styles */
@media (min-width: 768px) {
  .contact-cta-actions {
    flex-direction: row;
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .home-contact-cta {
    padding: 96px var(--content-padding-desktop);
  }

  .contact-cta-content {
    max-width: 800px;
  }

  .contact-cta-headline {
    font-size: 48px;
    margin: 0 0 20px;
  }

  .contact-cta-subheadline {
    font-size: 20px;
    margin: 0 0 40px;
  }

  .btn {
    padding: 18px 36px;
    font-size: 17px;
    min-width: 220px;
  }
}

@media (min-width: 1440px) {
  .home-contact-cta {
    padding: 112px var(--content-padding-wide);
  }

  .contact-cta-headline {
    font-size: 56px;
    margin: 0 0 24px;
  }

  .contact-cta-subheadline {
    font-size: 22px;
  }
}


/* src/assets/css/utilities/containers.css */
/* ======================
   CONTAINER UTILITIES
   ====================== */

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

/* Utility classes */
.u-hidden {
  display: none !important;
}

.u-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;
}

