/*
 * HD Decorating — site stylesheet
 *
 * Single source of truth for the assembled HD Decorating site.
 * Copy HTML structure from site/final_site_preview.html and link this file
 * to reproduce the design exactly.
 *
 * Usage (page in site/):
 *   <link rel="stylesheet" href="css/hd-decorating.css" />
 *
 * Optional scroll-in animations (full page):
 *   <script>document.documentElement.classList.add("wf-anim-js");</script>
 *   Wrap content in <main class="site-preview-root"> … </main>
 *
 * Mobile nav (≤887px): include js/hd-nav.js and the .wf-hero__menu-toggle markup.
 *
 * Sections covered:
 *   .wf-hero              — hero + nav
 *   .about-section-v1     — about split + stats row
 *   .about-section-v2     — about image hero + stats band
 *   .about-section-v3     — about image-left + stat cards
 *   .testimonials-section-v1 — testimonial card grid
 *   .testimonials-section-v2 — featured quote + list
 *   .testimonials-section-v3 — testimonials on red band
 *   .services-section-v1 — service bands
 *   .services-section-v2 — service card grid
 *   .services-section-v3 — numbered sidebar layout
 *   .gallery-section-v2   — featured + thumbnails
 *   .gallery-section-v3   — equal card grid
 *   .gallery-section-v4   — mosaic layout
 *   .contact-section-v1    — split layout + action panel
 *   .contact-section-v2    — detail cards + action buttons
 *   .contact-section-v3    — red info band + actions
 *   .cta-section-v1       — call to action
 *   .footer-section-v1    — footer
 *
 * Design tokens are defined in :root (--hd-*). Use them when extending pages.
 * Asset paths assume CSS lives at site/css/ and images at ../../input/
 */

:root {
  /* Brand */
  --hd-red: #B22234;
  --hd-red-hero: #b01c2e;
  --hd-red-dark: #8e1525;
  --hd-ink: #1A1A1A;
  --hd-ink-soft: #4A4A4A;
  --hd-white: #FFFFFF;
  --hd-gray-100: #F5F5F5;
  --hd-gray-500: #8C8C8C;
  --hd-gray-700: #4A4A4A;
  --hd-gray-900: #2C2C2C;

  /* Typography stacks */
  --hd-font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --hd-font-heading: 'Oswald', 'Bebas Neue', sans-serif;
  --hd-font-body: 'Lato', 'Open Sans', sans-serif;
  --hd-font-hero-display: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  --hd-font-hero-body: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  --hd-font-hero-accent: 'Georgia', 'Times New Roman', serif;

  /* Layout */
  --hd-container-max: 1400px;
  --hd-container-narrow: 800px;
  --hd-section-padding-y: 80px;
  --hd-container-padding-x: 48px;
  --hd-radius: 4px;
}

/* preview shell */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  margin: 0;
  overscroll-behavior: none;
}
.site-preview-root {
  display: block;
}

/* Keep hero/nav appearance stable even if sections toggle page theme/color-scheme. */
.wf-assembled-hero-shell,
.wf-assembled-hero-shell * {
  color-scheme: normal !important;
}

/* Hide common model-added fixed “Press D / light–dark” hint UI; document-level key handlers still run */
.site-preview-root [aria-label*="Press D" i],
.site-preview-root [aria-label*="press d" i],
.site-preview-root [title*="Press D" i],
.site-preview-root [title*="light/dark" i],
.site-preview-root [title*="light / dark" i],
.site-preview-root [data-theme-toggle],
.site-preview-root [data-wf-theme-hint],
.site-preview-root .wf-theme-toggle-chip {
  display: none !important;
}

/* === section scroll animations === */
@keyframes wf-section-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/*
 * wf-anim-js is added to <html> by a blocking <head> script before body renders.
 * Without it (no JS), nothing is hidden.
 *
 * Structure per section:
 *   [data-wf-section]     ← outer shell, background, never animated
 *     .wf-section-body    ← passthrough
 *       model root        ← owns background colour, never animated
 *         > children      ← hidden until in-view, then fade+lift
 */
html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
  opacity: 0;
}

.site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
  animation: wf-section-in 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@media (prefers-reduced-motion: reduce) {
  html.wf-anim-js .site-preview-root [data-wf-section]:not(.wf-section--in) .wf-section-body > * > * {
    opacity: 1;
  }
  .site-preview-root [data-wf-section].wf-section--in .wf-section-body > * > * {
    animation: none;
  }
}

/* === hero_preview.css === */
.wf-hero {
  font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
}

.wf-hero__body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../../input/hero_reference.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
}

.wf-hero__nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  --wf-nav-padding-x: 48px;
  padding: 22px var(--wf-nav-padding-x);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.wf-hero__logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  text-decoration: none;
}

.wf-hero__logo-img {
  display: block;
  height: 60px;
  width: auto;
  max-width: min(280px, 62vw);
  object-fit: contain;
}

.wf-hero__nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  align-items: center;
}

.wf-hero__nav-links li a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.wf-hero__nav-links li a:hover {
  color: #b01c2e;
}

.wf-hero__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.25s ease;
}

.wf-hero__menu-toggle:hover {
  background: rgba(176, 28, 46, 0.08);
}

.wf-hero__menu-toggle:focus-visible {
  outline: 2px solid #b01c2e;
  outline-offset: 2px;
}

.wf-hero__menu-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 20px;
}

.wf-hero__menu-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: #1a1a1a;
  transition:
    transform 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    bottom 0.42s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    background-color 0.2s ease;
}

.wf-hero__menu-line:nth-child(1) {
  top: 0;
}

.wf-hero__menu-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.wf-hero__menu-line:nth-child(3) {
  bottom: 0;
}

.wf-hero__nav-menu {
  display: flex;
  align-items: center;
}

@media (max-width: 887px) {
  .wf-hero__nav {
    position: relative;
    z-index: 120;
    width: 100%;
    --wf-nav-padding-x: 24px;
    padding: 18px var(--wf-nav-padding-x);
  }

  .wf-hero__nav::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 119;
    background: rgba(26, 26, 26, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .wf-hero__nav--open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .wf-hero__logo {
    position: relative;
    z-index: 122;
  }

  .wf-hero__logo-img {
    height: 50px;
    max-width: min(220px, 56vw);
  }

  .wf-hero__menu-toggle {
    display: flex;
    position: relative;
    z-index: 122;
  }

  .wf-hero__nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 121;
    display: block;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 var(--wf-nav-padding-x);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid rgba(26, 26, 26, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .wf-hero__nav--open .wf-hero__nav-menu {
    max-height: 420px;
    padding: 10px var(--wf-nav-padding-x) 14px;
    pointer-events: auto;
  }

  .wf-hero__nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .wf-hero__nav-links li {
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .wf-hero__nav-links li a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 1.1rem;
    text-align: left;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  }

  .wf-hero__nav-links li:last-child a {
    border-bottom: none;
  }

  .wf-hero__nav--open .wf-hero__menu-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: #b01c2e;
  }

  .wf-hero__nav--open .wf-hero__menu-line:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }

  .wf-hero__nav--open .wf-hero__menu-line:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    background: #b01c2e;
  }
}

body.wf-nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .wf-hero__menu-line,
  .wf-hero__nav-menu,
  .wf-hero__nav::before {
    transition: none !important;
  }
}

.wf-hero__content {
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 48px 80px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.wf-hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  background: radial-gradient(
    ellipse 85% 75% at 50% 48%,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 38%,
    rgba(255, 255, 255, 0.28) 62%,
    transparent 78%
  );
}

.wf-hero__headline {
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4.5625rem);
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(255,255,255,0.3);
}

.wf-hero__headline-line {
  white-space: nowrap;
}

.wf-hero__tagline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1.4rem, 3vw, 3.6875rem);
  font-weight: 700;
  font-style: normal;
  color: #b01c2e;
  margin: 0 0 22px 0;
  letter-spacing: 0.01em;
}

.wf-hero__description {
  font-size: clamp(0.95rem, 1.8vw, 1.5625rem);
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  margin: 0 0 36px 0;
  line-height: 1.6;
  max-width: 680px;
}

.wf-hero__cta {
  display: inline-block;
  background-color: #b01c2e;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.375rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 64px;
  border-radius: 2px;
  transition: background-color 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(176,28,46,0.35);
  font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
}

.wf-hero__cta:hover {
  background-color: #8e1525;
  transform: translateY(-2px);
}

.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

/* Inner pages: nav only, no full-viewport hero */
.wf-hero--nav-only,
.wf-hero--nav-only .wf-hero__body {
  min-height: auto;
}

.wf-hero--nav-only .wf-hero__body {
  background: #ffffff;
}

/* === assembled preview layer (hero bg, sections, rhythm, responsive non-hero) === */
/* ========== Assembled preview: coordinated rest-of-site (variant CSS owns section backgrounds) ========== */
.site-preview-root {
  min-height: auto;
  background: #fff;
}

.wf-assembled-hero-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}
@media (max-width: 900px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    padding-left: max(0rem, env(safe-area-inset-left, 0px));
    padding-right: max(0rem, env(safe-area-inset-right, 0px));
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) img,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) video,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) svg {
    max-width: 100%;
    height: auto;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 768px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) {
    min-width: 0;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display:grid"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction:row"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) [style*="flex-direction: row"] {
    flex-direction: column !important;
  }
}

@media (max-width: 480px) {
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) .button,
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="btn"],
  .site-section-wf--coordinated[data-wf-section]:not([data-wf-section="hero"]) a[class*="cta"] {
    max-width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
}

/* === about_v1.css === */
.about-section-v1 {
  background: #FFFFFF;
  padding: 80px 0;
}

.about-section-v1 .about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-section-v1 .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.about-section-v1 .about-heading {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.about-section-v1 .about-subhead {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #B22234;
  font-style: italic;
  margin-bottom: 32px;
}

.about-section-v1 .about-text p {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1A1A1A;
  margin-bottom: 24px;
}

.about-section-v1 .about-image {
  height: 400px;
}

.about-section-v1 .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.about-section-v1 .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-section-v1 .stat-number {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #B22234;
  text-transform: uppercase;
}

.about-section-v1 .stat-label {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-section-v1--compact {
  padding: 48px 0;
}

.about-section-v1--compact .about-content {
  gap: 40px;
  margin-bottom: 40px;
}

.about-section-v1--compact .about-heading {
  font-size: 36px;
}

.about-section-v1--compact .about-subhead {
  font-size: 20px;
  margin-bottom: 20px;
}

.about-section-v1--compact .about-text p {
  font-size: 16px;
  margin-bottom: 0;
}

.about-section-v1--compact .about-image {
  height: 280px;
}

.about-section-v1--compact .about-stats {
  gap: 24px;
}

.about-section-v1--compact .stat-number {
  font-size: 28px;
}

@media (max-width: 887px) {
  .about-section-v1 .about-container,
  .about-section-v2 .about-container,
  .about-section-v3 .about-container,
  .about-section-v2 .about-stats,
  .testimonials-section-v1 .testimonials-container,
  .testimonials-section-v2 .testimonials-container,
  .testimonials-section-v3 .testimonials-container,
  .testimonials-section-v3 .testimonials-band,
  .services-section-v1 .services-container,
  .services-section-v2 .services-container,
  .services-section-v3 .services-container,
  .gallery-section-v2 .gallery-container,
  .gallery-section-v3 .gallery-container,
  .gallery-section-v4 .gallery-container,
  .contact-section-v1 .contact-container,
  .contact-section-v2 .contact-container,
  .contact-section-v3 .contact-container,
  .contact-section-v3 .contact-info-band,
  .cta-section-v1 .cta-container,
  .footer-section-v1 .footer-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .wf-hero__content {
    justify-content: flex-start;
    padding: 48px 20px 40px;
    flex: 1 0 auto;
    overflow: hidden;
    max-width: 100%;
  }

  .wf-hero__body {
    overflow: hidden;
  }

  .wf-hero__bg-image {
    background-image: url("../../input/mobileherobg.jpeg");
    background-position: top center;
  }

  .wf-hero__headline {
    font-size: clamp(1.5rem, 6.8vw, 2rem);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }

  .wf-hero__headline-line {
    white-space: normal;
    display: block;
  }

  .wf-hero__tagline {
    font-size: clamp(1.0625rem, 4.2vw, 1.375rem);
    margin-bottom: 14px;
  }

  .wf-hero__description {
    font-size: clamp(0.875rem, 3.5vw, 1rem);
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 22rem;
    color: #1a1a1a;
    text-shadow: none;
  }

  .wf-hero__description br {
    display: none;
  }

  .wf-hero__cta {
    font-size: 0.8125rem;
    padding: 14px 28px;
    letter-spacing: 0.08em;
    width: 100%;
    max-width: 20rem;
    box-sizing: border-box;
    box-shadow: 0 3px 14px rgba(176, 28, 46, 0.3);
  }

  .wf-hero__content::before {
    border-radius: 10px;
    background: radial-gradient(
      ellipse 90% 70% at 50% 35%,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.72) 38%,
      rgba(255, 255, 255, 0.28) 62%,
      transparent 78%
    );
  }
}

@media (max-width: 768px) {
  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-section-v1 .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* === about_v2.css === */
.about-section-v2 {
  background: var(--hd-gray-100);
  padding: var(--hd-section-padding-y) 0;
}

.about-section-v2 .about-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.about-section-v2 .about-hero-image {
  width: 100%;
  height: clamp(220px, 42vw, 480px);
  margin-bottom: 56px;
  border-radius: var(--hd-radius);
  overflow: hidden;
}

.about-section-v2 .about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section-v2 .about-prose {
  max-width: var(--hd-container-narrow);
  margin: 0 auto;
  text-align: center;
}

.about-section-v2 .about-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.about-section-v2 .about-subhead {
  font-family: var(--hd-font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--hd-red);
  margin: 0 0 32px;
}

.about-section-v2 .about-prose p {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--hd-ink);
  margin: 0 0 24px;
}

.about-section-v2 .about-prose p:last-child {
  margin-bottom: 0;
}

.about-section-v2 .about-stats-band {
  background: var(--hd-red);
  margin-top: 64px;
  padding: 48px 0;
}

.about-section-v2 .about-stats {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-section-v2 .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-section-v2 .stat-number {
  font-family: var(--hd-font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--hd-white);
  text-transform: uppercase;
  line-height: 1.1;
}

.about-section-v2 .stat-label {
  font-family: var(--hd-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .about-section-v2 .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .about-section-v2 .about-stats-band {
    margin-top: 48px;
    padding: 40px 0;
  }
}

/* === about_v3.css === */
.about-section-v3 {
  background: var(--hd-white);
  padding: var(--hd-section-padding-y) 0;
}

.about-section-v3 .about-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.about-section-v3 .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}

.about-section-v3 .about-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.about-section-v3 .about-subhead {
  font-family: var(--hd-font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--hd-red);
  margin: 0 0 32px;
}

.about-section-v3 .about-text p {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--hd-ink);
  margin: 0 0 24px;
}

.about-section-v3 .about-text p:last-child {
  margin-bottom: 0;
}

.about-section-v3 .about-image {
  height: clamp(280px, 38vw, 440px);
}

.about-section-v3 .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--hd-radius);
  display: block;
}

.about-section-v3 .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-section-v3 .stat-item {
  background: var(--hd-gray-100);
  border-top: 4px solid var(--hd-red);
  border-radius: var(--hd-radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  box-sizing: border-box;
}

.about-section-v3 .stat-number {
  font-family: var(--hd-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--hd-red);
  text-transform: uppercase;
  line-height: 1.1;
}

.about-section-v3 .stat-label {
  font-family: var(--hd-font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--hd-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .about-section-v3 .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section-v3 .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-section-v1,
  .about-section-v2,
  .about-section-v3 {
    padding: 56px 0;
  }
}

/* === testimonials_v1.css === */
.testimonials-section-v1 {
  background: var(--hd-gray-100);
  padding: var(--hd-section-padding-y) 0;
}

.testimonials-section-v1 .testimonials-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.testimonials-section-v1 .testimonials-intro {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-section-v1 .testimonials-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.testimonials-section-v1 .testimonials-description {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-section-v1 .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials-section-v1 .testimonial-card {
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  padding: 32px 28px 28px;
  box-shadow: 0 2px 14px rgba(26, 26, 26, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

.testimonials-section-v1 .testimonial-mark {
  font-family: var(--hd-font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--hd-red);
  margin: 0;
}

.testimonials-section-v1 .testimonial-quote {
  font-family: var(--hd-font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--hd-ink);
  margin: 0;
  flex: 1;
}

.testimonials-section-v1 .testimonial-author {
  border-top: 1px solid var(--hd-gray-100);
  padding-top: 20px;
  margin: 0;
}

.testimonials-section-v1 .testimonial-name {
  display: block;
  font-family: var(--hd-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--hd-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.testimonials-section-v1 .testimonial-project {
  display: block;
  font-family: var(--hd-font-body);
  font-size: 14px;
  color: var(--hd-ink-soft);
}

.testimonials-section-v1 cite,
.testimonials-section-v2 cite,
.testimonials-section-v3 cite {
  font-style: normal;
}

/* === testimonials_v2.css === */
.testimonials-section-v2 {
  background: var(--hd-white);
  padding: var(--hd-section-padding-y) 0;
}

.testimonials-section-v2 .testimonials-container {
  max-width: var(--hd-container-narrow);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.testimonials-section-v2 .testimonials-intro {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-section-v2 .testimonials-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.testimonials-section-v2 .testimonials-description {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  margin: 0;
}

.testimonials-section-v2 .testimonial-featured {
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hd-gray-100);
}

.testimonials-section-v2 .testimonial-featured .testimonial-mark {
  font-family: var(--hd-font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--hd-red);
  margin: 0 0 16px;
}

.testimonials-section-v2 .testimonial-featured .testimonial-quote {
  font-family: var(--hd-font-hero-accent);
  font-size: clamp(1.25rem, 2.8vw, 1.625rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--hd-ink);
  margin: 0 0 24px;
}

.testimonials-section-v2 .testimonial-featured .testimonial-name {
  font-family: var(--hd-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hd-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-section-v2 .testimonial-featured .testimonial-project {
  font-family: var(--hd-font-body);
  font-size: 15px;
  color: var(--hd-ink-soft);
  margin-top: 4px;
}

.testimonials-section-v2 .testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.testimonials-section-v2 .testimonial-item {
  border-left: 4px solid var(--hd-red);
  padding: 0 0 0 24px;
  margin-bottom: 32px;
}

.testimonials-section-v2 .testimonial-item:last-child {
  margin-bottom: 0;
}

.testimonials-section-v2 .testimonial-item .testimonial-quote {
  font-family: var(--hd-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--hd-ink);
  margin: 0 0 12px;
}

.testimonials-section-v2 .testimonial-item .testimonial-name {
  font-family: var(--hd-font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--hd-ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-section-v2 .testimonial-item .testimonial-project {
  font-family: var(--hd-font-body);
  font-size: 14px;
  color: var(--hd-ink-soft);
  margin-top: 2px;
}

/* === testimonials_v3.css === */
.testimonials-section-v3 {
  background: var(--hd-white);
  padding: 0;
}

.testimonials-section-v3 .testimonials-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: var(--hd-section-padding-y) var(--hd-container-padding-x) 0;
}

.testimonials-section-v3 .testimonials-intro {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-section-v3 .testimonials-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.testimonials-section-v3 .testimonials-description {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-section-v3 .testimonials-band {
  background: var(--hd-red);
  padding: 56px 0;
  margin-top: 0;
}

.testimonials-section-v3 .testimonials-grid {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}

.testimonials-section-v3 .testimonial-card {
  text-align: center;
  color: var(--hd-white);
}

.testimonials-section-v3 .testimonial-mark {
  font-family: var(--hd-font-display);
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 16px;
}

.testimonials-section-v3 .testimonial-quote {
  font-family: var(--hd-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--hd-white);
  margin: 0 0 20px;
}

.testimonials-section-v3 .testimonial-name {
  display: block;
  font-family: var(--hd-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hd-white);
  margin-bottom: 4px;
}

.testimonials-section-v3 .testimonial-project {
  display: block;
  font-family: var(--hd-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 960px) {
  .testimonials-section-v1 .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-section-v3 .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }

  .testimonials-section-v3 .testimonials-band {
    padding: 48px 0;
  }
}

@media (max-width: 600px) {
  .testimonials-section-v3 .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .testimonials-section-v1,
  .testimonials-section-v2,
  .testimonials-section-v3 .testimonials-container {
    padding-top: 56px;
    padding-bottom: 0;
  }

  .testimonials-section-v2 {
    padding: 56px 0;
  }

  .testimonials-section-v1 .testimonial-card {
    padding: 28px 24px;
  }
}

/* === services_v1.css === */
.services-section-v1 {
  background: #F5F5F5;
  padding: 80px 0;
}

.services-section-v1 .services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.services-section-v1 .services-header {
  text-align: center;
  margin-bottom: 64px;
}

.services-section-v1 .services-heading {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.services-section-v1 .services-intro {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto;
}

.services-section-v1 .services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-section-v1 .service-band {
  padding: 40px 0;
  border-bottom: 1px solid #8C8C8C;
}

.services-section-v1 .service-band.primary {
  background: transparent;
}

.services-section-v1 .service-band.secondary {
  background: rgba(178, 34, 52, 0.02);
}

.services-section-v1 .service-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-section-v1 .service-band h3 {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #B22234;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.services-section-v1 .service-band p {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1A1A1A;
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v1 .service-band {
    padding: 32px 0;
  }
}

.services-section-v1--compact {
  padding: 48px 0;
}

.services-section-v1--compact .services-header {
  margin-bottom: 32px;
}

.services-section-v1--compact .services-heading {
  font-size: 36px;
}

.services-section-v1--compact .services-intro {
  font-size: 16px;
}

.services-section-v1--compact .service-band {
  padding: 24px 0;
}

.services-section-v1--compact .service-band h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.services-section-v1--compact .service-band p {
  font-size: 16px;
}

/* === shared home page section CTAs === */
.section-actions {
  text-align: center;
  margin-top: 40px;
}

.section-cta {
  display: inline-block;
  background-color: #b01c2e;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 48px;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 18px rgba(176, 28, 46, 0.35);
}

.section-cta:hover {
  background-color: #8e1525;
  transform: translateY(-2px);
}

/* === services comparison (services page preview) === */
.services-comparison-banner {
  background: var(--hd-ink);
  color: var(--hd-white);
  text-align: center;
  padding: 20px 24px;
}

.services-comparison-banner p {
  margin: 0;
  font-family: var(--hd-font-body);
  font-size: 16px;
  line-height: 1.5;
  max-width: 640px;
  margin-inline: auto;
}

.services-comparison-label {
  background: var(--hd-red);
  color: var(--hd-white);
  text-align: center;
  padding: 14px 24px;
  font-family: var(--hd-font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* === services_v2.css === */
.services-section-v2 {
  background: var(--hd-white);
  padding: var(--hd-section-padding-y) 0;
}

.services-section-v2 .services-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.services-section-v2 .services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-section-v2 .services-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.services-section-v2 .services-intro {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.services-section-v2 .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-section-v2 .service-card {
  background: var(--hd-gray-100);
  border-top: 4px solid var(--hd-red);
  border-radius: var(--hd-radius);
  padding: 32px 28px;
  box-sizing: border-box;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.services-section-v2 .service-card:hover {
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}

.services-section-v2 .service-card h3 {
  font-family: var(--hd-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--hd-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 12px;
  line-height: 1.25;
}

.services-section-v2 .service-card p {
  font-family: var(--hd-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--hd-ink);
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v2 .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-section-v2 .service-card {
    padding: 28px 24px;
  }
}

/* === services_v3.css === */
.services-section-v3 {
  background: var(--hd-gray-100);
  padding: var(--hd-section-padding-y) 0;
}

.services-section-v3 .services-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.services-section-v3 .services-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 64px;
  align-items: start;
}

.services-section-v3 .services-sidebar {
  position: sticky;
  top: 32px;
}

.services-section-v3 .services-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.services-section-v3 .services-intro {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  margin: 0;
}

.services-section-v3 .services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
}

.services-section-v3 .service-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--hd-gray-100);
  align-items: start;
}

.services-section-v3 .service-item:last-child {
  border-bottom: none;
}

.services-section-v3 .service-number {
  font-family: var(--hd-font-display);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: var(--hd-red);
  letter-spacing: 0.02em;
}

.services-section-v3 .service-item h3 {
  font-family: var(--hd-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--hd-ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
  line-height: 1.25;
}

.services-section-v3 .service-item p {
  font-family: var(--hd-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--hd-ink-soft);
  margin: 0;
}

@media (max-width: 960px) {
  .services-section-v3 .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-section-v3 .services-sidebar {
    position: static;
    text-align: center;
  }

  .services-section-v3 .services-intro {
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .services-section-v3 .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 28px 24px;
  }

  .services-section-v3 .service-number {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .services-section-v1,
  .services-section-v2,
  .services-section-v3 {
    padding: 56px 0;
  }
}

/* === gallery_v2.css === */
.gallery-section-v2 {
  background: #FFFFFF;
  padding: 80px 0;
}

.gallery-section-v2 .gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.gallery-section-v2 .gallery-intro {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-section-v2 .gallery-heading {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.gallery-section-v2 .gallery-description {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #4A4A4A;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section-v2 .gallery-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.gallery-section-v2 .featured-image {
  position: relative;
}

.gallery-section-v2 .featured-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-section-v2 .featured-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: #FFFFFF;
  padding: 48px 32px 32px;
  border-radius: 0 0 4px 4px;
}

.gallery-section-v2 .featured-caption h3 {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.gallery-section-v2 .featured-caption p {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.gallery-section-v2 .gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-section-v2 .thumb-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #F5F5F5;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.gallery-section-v2 .thumb-item:hover {
  background: rgba(178, 34, 52, 0.05);
}

.gallery-section-v2 .thumb-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 2px;
}

.gallery-section-v2 .thumb-label {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #1A1A1A;
  flex: 1;
}

@media (max-width: 768px) {
  .gallery-section-v2 .gallery-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-section-v2 .featured-image img {
    height: 300px;
  }
}

/* === gallery_v3.css === */
.gallery-section-v3 {
  background: var(--hd-gray-100);
  padding: var(--hd-section-padding-y) 0;
}

.gallery-section-v3 .gallery-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.gallery-section-v3 .gallery-intro {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-section-v3 .gallery-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.gallery-section-v3 .gallery-description {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section-v3 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-section-v3 .gallery-card {
  background: var(--hd-white);
  border-radius: var(--hd-radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(26, 26, 26, 0.06);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.gallery-section-v3 .gallery-card:hover {
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.1);
  transform: translateY(-2px);
}

.gallery-section-v3 .gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-section-v3 .gallery-card-body {
  padding: 20px 24px 24px;
  border-top: 3px solid var(--hd-red);
}

.gallery-section-v3 .gallery-card-body h3 {
  font-family: var(--hd-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hd-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  line-height: 1.25;
}

.gallery-section-v3 .gallery-card-body p {
  font-family: var(--hd-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--hd-ink-soft);
  margin: 0;
}

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

@media (max-width: 600px) {
  .gallery-section-v3 .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === gallery_v4.css === */
.gallery-section-v4 {
  background: var(--hd-white);
  padding: var(--hd-section-padding-y) 0;
}

.gallery-section-v4 .gallery-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.gallery-section-v4 .gallery-intro {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-section-v4 .gallery-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.gallery-section-v4 .gallery-description {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section-v4 .gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}

.gallery-section-v4 .mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--hd-radius);
  min-height: 200px;
  margin: 0;
}

.gallery-section-v4 .mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.gallery-section-v4 .mosaic-item--hero {
  grid-column: span 4;
  grid-row: span 2;
  min-height: 420px;
}

.gallery-section-v4 .mosaic-item--tall {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 420px;
}

.gallery-section-v4 .mosaic-item--wide {
  grid-column: span 3;
  min-height: 220px;
}

.gallery-section-v4 .mosaic-item--small {
  grid-column: span 2;
  min-height: 200px;
}

.gallery-section-v4 .mosaic-item--full {
  grid-column: span 6;
  min-height: 240px;
}

.gallery-section-v4 .mosaic-caption {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: var(--hd-white);
  padding: 40px 20px 18px;
}

.gallery-section-v4 .mosaic-caption h3 {
  font-family: var(--hd-font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 4px;
  line-height: 1.25;
}

.gallery-section-v4 .mosaic-caption p {
  font-family: var(--hd-font-body);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

@media (max-width: 960px) {
  .gallery-section-v4 .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-section-v4 .mosaic-item--hero,
  .gallery-section-v4 .mosaic-item--tall,
  .gallery-section-v4 .mosaic-item--wide,
  .gallery-section-v4 .mosaic-item--small,
  .gallery-section-v4 .mosaic-item--full {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 240px;
  }

  .gallery-section-v4 .mosaic-item--hero {
    grid-column: span 2;
    min-height: 280px;
  }

  .gallery-section-v4 .mosaic-item--full {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .gallery-section-v4 .gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-section-v4 .mosaic-item--hero {
    grid-column: span 1;
    min-height: 260px;
  }

  .gallery-section-v2,
  .gallery-section-v3,
  .gallery-section-v4 {
    padding: 56px 0;
  }
}

/* === contact_v1.css === */
.contact-section-v1 {
  background: var(--hd-white);
  padding: var(--hd-section-padding-y) 0;
}

.contact-section-v1 .contact-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.contact-section-v1 .contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.25fr);
  gap: 64px;
  align-items: start;
}

.contact-section-v1 .contact-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.contact-section-v1 .contact-intro {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  margin: 0 0 40px;
}

.contact-section-v1 .contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-section-v1 .contact-detail {
  border-left: 4px solid var(--hd-red);
  padding-left: 20px;
}

.contact-section-v1 .contact-detail-label {
  display: block;
  font-family: var(--hd-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hd-red);
  margin-bottom: 6px;
}

.contact-section-v1 .contact-detail-value,
.contact-section-v1 .contact-detail-value a {
  font-family: var(--hd-font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--hd-ink);
  text-decoration: none;
}

.contact-section-v1 .contact-detail-value a:hover {
  color: var(--hd-red);
}

.contact-section-v1 .contact-actions-panel,
.contact-section-v2 .contact-actions-panel {
  background: var(--hd-gray-100);
  border-radius: var(--hd-radius);
  padding: 36px 32px;
  box-sizing: border-box;
}

.contact-section-v2 .contact-actions-panel {
  background: var(--hd-white);
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.06);
  text-align: center;
}

.contact-section-v1 .contact-actions-title,
.contact-section-v2 .contact-actions-title,
.contact-section-v3 .contact-actions-title {
  font-family: var(--hd-font-heading);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--hd-ink);
  margin: 0 0 12px;
}

.contact-section-v1 .contact-actions-text,
.contact-section-v2 .contact-actions-text,
.contact-section-v3 .contact-actions-text {
  font-family: var(--hd-font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  margin: 0 0 28px;
}

.contact-section-v1 .contact-actions,
.contact-section-v2 .contact-actions,
.contact-section-v3 .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-section-v2 .contact-actions {
  justify-content: center;
}

.contact-section-v1 .contact-btn,
.contact-section-v2 .contact-btn,
.contact-section-v3 .contact-btn {
  display: inline-block;
  font-family: var(--hd-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: var(--hd-radius);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  text-align: center;
}

.contact-section-v1 .contact-btn--primary,
.contact-section-v2 .contact-btn--primary,
.contact-section-v3 .contact-btn--primary {
  background: var(--hd-red);
  color: var(--hd-white);
  box-shadow: 0 4px 16px rgba(178, 34, 52, 0.25);
}

.contact-section-v1 .contact-btn--primary:hover,
.contact-section-v2 .contact-btn--primary:hover,
.contact-section-v3 .contact-btn--primary:hover {
  background: var(--hd-red-dark);
  transform: translateY(-1px);
}

.contact-section-v1 .contact-btn--secondary,
.contact-section-v2 .contact-btn--secondary,
.contact-section-v3 .contact-btn--secondary {
  background: transparent;
  color: var(--hd-red);
  border: 2px solid var(--hd-red);
}

.contact-section-v1 .contact-btn--secondary:hover,
.contact-section-v2 .contact-btn--secondary:hover,
.contact-section-v3 .contact-btn--secondary:hover {
  background: rgba(178, 34, 52, 0.06);
  transform: translateY(-1px);
}

/* === contact_v2.css === */
.contact-section-v2 {
  background: var(--hd-gray-100);
  padding: var(--hd-section-padding-y) 0;
}

.contact-section-v2 .contact-container {
  max-width: var(--hd-container-narrow);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
}

.contact-section-v2 .contact-intro-block {
  text-align: center;
  margin-bottom: 40px;
}

.contact-section-v2 .contact-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.contact-section-v2 .contact-intro {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--hd-ink-soft);
  margin: 0;
}

.contact-section-v2 .contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.contact-section-v2 .contact-card {
  background: var(--hd-white);
  border-top: 4px solid var(--hd-red);
  border-radius: var(--hd-radius);
  padding: 24px 20px;
  text-align: center;
  box-sizing: border-box;
}

.contact-section-v2 .contact-card-label {
  display: block;
  font-family: var(--hd-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hd-red);
  margin-bottom: 8px;
}

.contact-section-v2 .contact-card-value,
.contact-section-v2 .contact-card-value a {
  font-family: var(--hd-font-body);
  font-size: 15px;
  line-height: 1.45;
  color: var(--hd-ink);
  text-decoration: none;
}

.contact-section-v2 .contact-card-value a:hover {
  color: var(--hd-red);
}

/* === contact_v3.css === */
.contact-section-v3 {
  background: var(--hd-white);
  padding: 0;
}

.contact-section-v3 .contact-container {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: var(--hd-section-padding-y) var(--hd-container-padding-x) 0;
}

.contact-section-v3 .contact-info-band {
  background: var(--hd-red);
  padding: 48px 0;
}

.contact-section-v3 .contact-info-grid {
  max-width: var(--hd-container-max);
  margin: 0 auto;
  padding: 0 var(--hd-container-padding-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.contact-section-v3 .contact-info-item-label {
  display: block;
  font-family: var(--hd-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.contact-section-v3 .contact-info-item-value,
.contact-section-v3 .contact-info-item-value a {
  font-family: var(--hd-font-body);
  font-size: 17px;
  line-height: 1.45;
  color: var(--hd-white);
  text-decoration: none;
}

.contact-section-v3 .contact-info-item-value a:hover {
  text-decoration: underline;
}

.contact-section-v3 .contact-body {
  max-width: var(--hd-container-narrow);
  margin: 0 auto;
  padding: 56px var(--hd-container-padding-x) var(--hd-section-padding-y);
  box-sizing: border-box;
}

.contact-section-v3 .contact-heading {
  font-family: var(--hd-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--hd-ink);
  margin: 0 0 16px;
}

.contact-section-v3 .contact-intro {
  font-family: var(--hd-font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--hd-ink-soft);
  margin: 0 0 28px;
}

@media (max-width: 960px) {
  .contact-section-v1 .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section-v2 .contact-cards,
  .contact-section-v3 .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .contact-section-v1,
  .contact-section-v2 {
    padding: 56px 0;
  }

  .contact-section-v3 .contact-container {
    padding-top: 56px;
  }

  .contact-section-v3 .contact-body {
    padding-top: 40px;
    padding-bottom: 56px;
  }

  .contact-section-v1 .contact-actions-panel,
  .contact-section-v2 .contact-actions-panel {
    padding: 28px 24px;
  }

  .contact-section-v1 .contact-actions,
  .contact-section-v2 .contact-actions,
  .contact-section-v3 .contact-actions {
    flex-direction: column;
  }

  .contact-section-v1 .contact-btn,
  .contact-section-v2 .contact-btn,
  .contact-section-v3 .contact-btn {
    width: 100%;
  }
}

/* === cta_v1.css === */
.cta-section-v1 {
  background: #B22234;
  padding: 80px 0;
}

.cta-section-v1 .cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}

.cta-section-v1 .cta-content {
  color: #FFFFFF;
}

.cta-section-v1 .cta-heading {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.cta-section-v1 .cta-description {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section-v1 .cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-section-v1 .cta-primary {
  background: #FFFFFF;
  color: #B22234;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 48px;
  border-radius: 4px;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.cta-section-v1 .cta-primary:hover {
  background: #F5F5F5;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.cta-section-v1 .cta-secondary {
  background: transparent;
  color: #FFFFFF;
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 44px;
  border: 2px solid #FFFFFF;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta-section-v1 .cta-secondary:hover {
  background: rgba(255,255,255,0.12);
}

.cta-section-v1 .cta-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.cta-section-v1 .trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-section-v1 .trust-icon {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: bold;
}

.cta-section-v1 .trust-text {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
  .cta-section-v1 .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-section-v1 .cta-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #2C2C2C;
  padding: 64px 0 32px;
  color: #FFFFFF;
}

.footer-section-v1 .footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-section-v1 .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section-v1 .footer-brand {
  max-width: 400px;
}

.footer-section-v1 .brand-name {
  font-family: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.footer-section-v1 .brand-tagline {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #B22234;
  font-style: italic;
  margin-bottom: 16px;
}

.footer-section-v1 .brand-description {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.footer-section-v1 .link-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-section-v1 .link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section-v1 .link-list li {
  margin-bottom: 8px;
}

.footer-section-v1 .link-list a {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section-v1 .link-list a:hover {
  color: #B22234;
}

.footer-section-v1 .contact-title {
  font-family: 'Oswald', 'Bebas Neue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-section-v1 .contact-item {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-section-v1 .contact-label {
  color: rgba(255,255,255,0.7);
  margin-right: 8px;
}

.footer-section-v1 .contact-item a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section-v1 .contact-item a:hover {
  color: #B22234;
}

.footer-section-v1 .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #4A4A4A;
}

.footer-section-v1 .copyright,
.footer-section-v1 .footer-tagline {
  font-family: 'Lato', 'Open Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

.footer-section-v1 .footer-tagline {
  font-style: italic;
}

@media (max-width: 768px) {
  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-section-v1 .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
