/*
 * Cooper Roofing — Site Stylesheet
 * =================================
 * Reference this file from any page in the site/ directory:
 *
 *   <link rel="stylesheet" href="coopers-roofing.css" />
 *
 * Required HTML structure:
 *   <main class="site-preview-root"> … </main>
 *
 * Optional scroll animations (add before </head>):
 *   <script>document.documentElement.classList.add("wf-anim-js");</script>
 *
 * Asset paths in this file are relative to site/ (../input/…).
 * Google Fonts (Oswald, Raleway) are loaded below for section typography.
 */

@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700;800&family=Raleway:wght@400;600;700&display=swap");

/* ── Design tokens ── */
:root {
  /* Brand colours */
  --cr-gold: #c9a84c;
  --cr-gold-light: #e8c96a;
  --cr-gold-dark: #a8862e;
  --cr-gold-mid: #b8932e;

  /* Neutrals */
  --cr-ink: #1a1410;
  --cr-ink-deep: #1a1208;
  --cr-ink-mid: #2a2318;
  --cr-ink-footer: #1e1a14;
  --cr-cream: #f8f6f3;
  --cr-cream-text: #f0e8d8;
  --cr-warm-white: #e8e0d0;
  --cr-muted: #b0a898;

  /* Gradients */
  --cr-gradient-gold: linear-gradient(135deg, #e8c96a 0%, #c9a84c 50%, #a8862e 100%);
  --cr-gradient-gold-cta: linear-gradient(135deg, #c9a84c 0%, #e8c96a 40%, #b8932e 100%);
  --cr-gradient-dark: linear-gradient(135deg, #1a1410 0%, #2a2318 100%);

  /* Typography */
  --cr-font-display: "Oswald", sans-serif;
  --cr-font-body: "Raleway", sans-serif;
  --cr-font-hero: "Arial Black", "Arial", "Helvetica Neue", sans-serif;
  --cr-font-hero-ui: "Arial", "Helvetica Neue", sans-serif;

  /* Layout */
  --cr-container-max: 1400px;
  --cr-container-narrow: 1280px;
  --cr-section-padding-y: 80px;
  --cr-container-padding-x: 48px;
  --cr-nav-height: 80px;

  /* Effects */
  --cr-shadow-gold: 0 6px 24px rgba(201, 168, 76, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  --cr-ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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 {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #1a1208;
  font-family: 'Arial', 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Nav */
.wf-hero__nav {
  position: relative;
  z-index: 20;
  background-color: rgba(20, 14, 5, 0.92);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0 40px;
  flex-shrink: 0;
}

.wf-hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  height: 80px;
}

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

.wf-hero__logo-img {
  display: block;
  height: 52px;
  width: auto;
}

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

.wf-hero__nav-link {
  text-decoration: none;
  color: #e8e0d0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.wf-hero__nav-link:hover {
  color: #c9a84c;
}

.wf-hero__nav-link--active {
  color: #c9a84c;
  border-bottom: 2px solid #c9a84c;
  padding-bottom: 2px;
}

/* Hamburger toggle — hidden on desktop */
.wf-hero__menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 30;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.wf-hero__menu-bar {
  position: absolute;
  left: 50%;
  width: 26px;
  height: 2px;
  margin-left: -13px;
  background: #c9a84c;
  border-radius: 2px;
  transition:
    transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    top 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.22s ease,
    width 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wf-hero__menu-bar:nth-child(1) { top: 14px; }
.wf-hero__menu-bar:nth-child(2) { top: 21px; }
.wf-hero__menu-bar:nth-child(3) { top: 28px; }

.wf-hero__nav.is-open .wf-hero__menu-bar:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.wf-hero__nav.is-open .wf-hero__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.wf-hero__nav.is-open .wf-hero__menu-bar:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.wf-hero__nav-menu {
  display: block;
}

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

body.wf-nav-open .wf-hero {
  overflow: visible;
}

body.wf-nav-open .wf-assembled-hero-shell {
  position: relative;
  z-index: 9999;
}

@media (max-width: 650px) {
  .wf-hero__nav {
    position: relative;
    z-index: 100;
  }

  body.wf-nav-open .wf-hero__nav {
    z-index: 10000;
  }

  body.wf-nav-open .wf-hero__nav-inner {
    position: relative;
    z-index: 10003;
  }

  .wf-hero__menu-toggle {
    display: block;
    position: relative;
    z-index: 10002;
  }

  .wf-hero__nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    box-sizing: border-box;
    background: rgba(10, 8, 3, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      visibility 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

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

  .wf-hero__nav-links {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
    padding: 0 24px;
    transform: translateY(18px);
    opacity: 0;
    transition:
      transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .wf-hero__nav.is-open .wf-hero__nav-links {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.06s;
  }

  .wf-hero__nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition:
      transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .wf-hero__nav.is-open .wf-hero__nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  .wf-hero__nav.is-open .wf-hero__nav-links li:nth-child(1) { transition-delay: 0.1s; }
  .wf-hero__nav.is-open .wf-hero__nav-links li:nth-child(2) { transition-delay: 0.16s; }
  .wf-hero__nav.is-open .wf-hero__nav-links li:nth-child(3) { transition-delay: 0.22s; }
  .wf-hero__nav.is-open .wf-hero__nav-links li:nth-child(4) { transition-delay: 0.28s; }
  .wf-hero__nav.is-open .wf-hero__nav-links li:nth-child(5) { transition-delay: 0.34s; }

  .wf-hero__nav-link {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0.14em;
    padding: 18px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }

  .wf-hero__nav-link--active {
    border-bottom-color: rgba(201, 168, 76, 0.35);
    padding-bottom: 18px;
  }

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

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

/* Hero Body */
.wf-hero__body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.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;
}

/* Content */
.wf-hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 40px 40px;
  flex: 1;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.wf-hero__headline {
  font-family: 'Arial Black', 'Arial', 'Helvetica Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 24px;
  text-shadow: 2px 4px 16px rgba(0,0,0,0.7), 0 2px 8px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wf-hero__headline-line1,
.wf-hero__headline-line2 {
  text-align: center;
}

@media (min-width: 769px) {
  .wf-hero__headline-line2 {
    white-space: nowrap;
  }
}

.wf-hero__subheadline {
  font-size: clamp(1.25rem, 2.8vw, 1.75rem);
  font-weight: 600;
  color: #f0e8d8;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.6;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.7);
  width: 100%;
  max-width: 720px;
}

.wf-hero__cta {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c 0%, #e8c96a 40%, #b8932e 100%);
  color: #1a1208;
  font-family: 'Arial Black', 'Arial', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 18px 52px;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.wf-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201, 168, 76, 0.6), 0 4px 12px rgba(0,0,0,0.5);
}

/* Contact Bar */
.wf-hero__contact-bar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 18px 40px;
  background: rgba(10, 8, 3, 0.65);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.wf-hero__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.wf-hero__contact-item:hover {
  color: #c9a84c;
}

.wf-hero__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-hero__contact-text {
  font-size: 1.05rem;
  font-weight: 500;
}

.wf-hero__contact-check {
  color: #c9a84c;
  font-size: 1rem;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .wf-hero__bg-image {
    background-image: url("../input/mobilehero.jpeg");
    background-position: center top;
  }

  .wf-hero__nav {
    padding: 0 20px;
  }
  .wf-hero__content {
    padding: 40px 20px 30px;
  }
  .wf-hero__contact-bar {
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px;
  }
}

@media (max-width: 768px) and (min-width: 651px) {
  .wf-hero__nav-links {
    gap: 16px;
  }

  .wf-hero__nav-link {
    font-size: 0.75rem;
  }
}

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

/* === 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;
  position: relative;
}

.about-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}

.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 400px;
  gap: 64px;
  align-items: center;
}

.about-section-v1 h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 16px 0;
  line-height: 1.1;
}

.about-section-v1 .about-subhead {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #C9A84C;
  margin: 0 0 32px 0;
  line-height: 1.4;
}

.about-section-v1 p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2A2318;
  margin: 0 0 24px 0;
}

.about-section-v1 .about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.about-section-v1 .stat {
  text-align: center;
}

.about-section-v1 .stat-number {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #C9A84C;
  line-height: 1;
}

.about-section-v1 .stat-label {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.about-section-v1 .about-image {
  position: relative;
}

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

.about-section-v1 .image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  border-radius: 8px;
  z-index: -1;
}

@media (max-width: 1024px) {
  .about-section-v1 .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-section-v1 .about-image {
    order: -1;
  }
  
  .about-section-v1 .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-section-v1 {
    padding: 64px 0;
  }

  .about-section-v1 .about-container {
    padding: 0 24px;
  }

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

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

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

/* === about_v2.css === */
.about-section-v2 {
  background: linear-gradient(135deg, #1A1410 0%, #2A2318 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.about-section-v2::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.about-section-v2 .about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.about-section-v2 .about-content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

.about-section-v2 .about-image {
  position: relative;
}

.about-section-v2 .about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.about-section-v2 .image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 72px;
  height: 72px;
  background: var(--cr-gradient-gold);
  border-radius: 8px;
  z-index: -1;
}

.about-section-v2 h2 {
  font-family: var(--cr-font-display);
  font-size: 48px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
  line-height: 1.1;
}

.about-section-v2 .about-headline-rule {
  width: 80px;
  height: 4px;
  background: var(--cr-gradient-gold);
  margin: 0 0 20px;
  border-radius: 2px;
}

.about-section-v2 .about-subhead {
  font-family: var(--cr-font-body);
  font-size: 20px;
  font-weight: 600;
  color: #E8C96A;
  margin: 0 0 28px;
  line-height: 1.4;
}

.about-section-v2 p {
  font-family: var(--cr-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #B0A898;
  margin: 0 0 20px;
}

.about-section-v2 .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.about-section-v2 .stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-top: 3px solid #C9A84C;
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
}

.about-section-v2 .stat-number {
  display: block;
  font-family: var(--cr-font-display);
  font-size: 28px;
  font-weight: 800;
  color: #E8C96A;
  line-height: 1;
}

.about-section-v2 .stat-label {
  display: block;
  font-family: var(--cr-font-body);
  font-size: 11px;
  font-weight: 600;
  color: #E8E0D0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .about-section-v2 .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .about-section-v2 {
    padding: 64px 0;
  }

  .about-section-v2 .about-container {
    padding: 0 24px;
  }

  .about-section-v2 h2 {
    font-size: 36px;
  }

  .about-section-v2 .about-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* === about_v3.css === */
.about-section-v3 {
  background: #F8F6F3;
  padding: 80px 0;
  position: relative;
}

.about-section-v3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--cr-gradient-gold);
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  opacity: 0.35;
  pointer-events: none;
}

.about-section-v3 .about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.about-section-v3 .about-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.about-section-v3 h2 {
  font-family: var(--cr-font-display);
  font-size: 48px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  line-height: 1.1;
}

.about-section-v3 .about-subhead {
  font-family: var(--cr-font-body);
  font-size: 20px;
  font-weight: 600;
  color: #C9A84C;
  margin: 0;
  line-height: 1.4;
}

.about-section-v3 .about-image-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
}

.about-section-v3 .about-image-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 20, 16, 0.12);
}

.about-section-v3 .image-accent {
  position: absolute;
  bottom: -24px;
  right: 32px;
  width: 100px;
  height: 100px;
  background: var(--cr-gradient-gold);
  border-radius: 12px;
  z-index: -1;
}

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

.about-section-v3 p {
  font-family: var(--cr-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #2A2318;
  margin: 0;
}

.about-section-v3 .about-stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  background: #1A1410;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 20, 16, 0.15);
}

.about-section-v3 .stat {
  flex: 1 1 160px;
  text-align: center;
  padding: 28px 20px;
  position: relative;
}

.about-section-v3 .stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 168, 76, 0.3);
}

.about-section-v3 .stat-number {
  display: block;
  font-family: var(--cr-font-display);
  font-size: 36px;
  font-weight: 800;
  color: #E8C96A;
  line-height: 1;
}

.about-section-v3 .stat-label {
  display: block;
  font-family: var(--cr-font-body);
  font-size: 13px;
  font-weight: 600;
  color: #B0A898;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

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

@media (max-width: 768px) {
  .about-section-v3 {
    padding: 64px 0;
  }

  .about-section-v3 .about-container {
    padding: 0 24px;
  }

  .about-section-v3 h2 {
    font-size: 36px;
  }

  .about-section-v3 .about-image-wrap img {
    height: 280px;
  }

  .about-section-v3 .stat:not(:last-child)::after {
    display: none;
  }

  .about-section-v3 .about-stats-bar {
    flex-direction: column;
  }

  .about-section-v3 .stat {
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  }

  .about-section-v3 .stat:last-child {
    border-bottom: none;
  }
}

/* === about comparison labels (preview only) === */
.about-variation-label,
.section-variation-label {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: #1A1410;
  color: #E8C96A;
  font-family: var(--cr-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 2px solid #C9A84C;
}

.wf-hero--nav-only {
  min-height: auto;
}

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

.services-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--cr-gradient-gold);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.35;
  pointer-events: none;
}

.services-section-v1 .services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.services-section-v1 .services-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.services-section-v1 h2 {
  font-family: var(--cr-font-display);
  font-size: 50px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.05;
}

.services-section-v1 .services-header p {
  font-family: var(--cr-font-body);
  font-size: 19px;
  font-weight: 600;
  color: #C9A84C;
  margin: 0;
  line-height: 1.5;
}

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

.services-section-v1 .service-card {
  background: #F8F6F3;
  border-radius: 12px;
  padding: 32px 28px;
  border-top: 4px solid #C9A84C;
  box-shadow: 0 4px 20px rgba(26, 20, 16, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-section-v1 .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 20, 16, 0.1);
}

.services-section-v1 .service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cr-gradient-gold);
  border-radius: 8px;
  font-family: var(--cr-font-display);
  font-size: 16px;
  font-weight: 800;
  color: #1A1410;
  margin-bottom: 20px;
}

.services-section-v1 .service-card h3 {
  font-family: var(--cr-font-display);
  font-size: 20px;
  font-weight: 700;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 12px;
  line-height: 1.2;
}

.services-section-v1 .service-card p {
  font-family: var(--cr-font-body);
  font-size: 15px;
  line-height: 1.65;
  color: #2A2318;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-section-v1 .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .services-section-v1 .services-container {
    padding: 0 24px;
  }

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

  .services-section-v1 .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* === services_v2.css === */
.services-section-v2 {
  background: #F8F6F3;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-section-v2::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: var(--cr-gradient-gold);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.services-section-v2 .services-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

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

.services-section-v2 h2 {
  font-family: var(--cr-font-display);
  font-size: 50px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.05;
}

.services-section-v2 .services-header p {
  font-family: var(--cr-font-body);
  font-size: 19px;
  font-weight: 600;
  color: #C9A84C;
  margin: 0;
  line-height: 1.5;
}

.services-section-v2 .services-timeline {
  position: relative;
  padding-left: 48px;
}

.services-section-v2 .services-timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #C9A84C 8%, #C9A84C 92%, transparent);
  opacity: 0.45;
}

.services-section-v2 .service-item {
  position: relative;
  padding-bottom: 40px;
}

.services-section-v2 .service-item:last-child {
  padding-bottom: 0;
}

.services-section-v2 .service-marker {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 32px;
  height: 32px;
  background: var(--cr-gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cr-font-display);
  font-size: 12px;
  font-weight: 800;
  color: #1A1410;
  box-shadow: 0 0 0 4px #F8F6F3;
}

.services-section-v2 .service-info {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 4px 24px rgba(26, 20, 16, 0.06);
  border-left: 3px solid #C9A84C;
}

.services-section-v2 .service-info h3 {
  font-family: var(--cr-font-display);
  font-size: 22px;
  font-weight: 700;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 10px;
  line-height: 1.2;
}

.services-section-v2 .service-info p {
  font-family: var(--cr-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #2A2318;
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v2 {
    padding: 64px 0;
  }

  .services-section-v2 .services-container {
    padding: 0 24px;
  }

  .services-section-v2 h2 {
    font-size: 36px;
  }

  .services-section-v2 .services-timeline {
    padding-left: 40px;
  }

  .services-section-v2 .service-marker {
    left: -40px;
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .services-section-v2 .services-timeline::before {
    left: 13px;
  }

  .services-section-v2 .service-info {
    padding: 22px 20px;
  }

  .services-section-v2 .service-info h3 {
    font-size: 18px;
  }
}

/* === services_v3.css === */
.services-section-v3 {
  background: linear-gradient(135deg, #1A1410 0%, #2A2318 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.services-section-v3::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  border-radius: 50%;
  opacity: 0.05;
}

.services-section-v3::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  transform: rotate(45deg);
  opacity: 0.05;
}

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

.services-section-v3 .services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-section-v3 h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
  line-height: 1.05;
}

.services-section-v3 .services-header p {
  font-family: 'Raleway', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #E8C96A;
  margin: 0;
  line-height: 1.5;
}

.services-section-v3 .services-flow {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.services-section-v3 .flow-separator {
  background: linear-gradient(to bottom, transparent, #C9A84C, transparent);
  height: 100%;
  min-height: 400px;
  opacity: 0.3;
}

.services-section-v3 .flow-column {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.services-section-v3 .service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.services-section-v3 .service-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #1A1410;
  margin-top: 4px;
}

.services-section-v3 .service-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E8C96A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.services-section-v3 .service-info p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #B0A898;
  margin: 0;
}

@media (max-width: 1024px) {
  .services-section-v3 .services-flow {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .services-section-v3 .flow-separator {
    display: none;
  }
  
  .services-section-v3 .flow-column {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .services-section-v3 {
    padding: 64px 0;
  }

  .services-section-v3 .services-container {
    padding: 0 24px;
  }

  .services-section-v3 h2 {
    font-size: 36px;
  }

  .services-section-v3 .services-header {
    margin-bottom: 48px;
  }

  .services-section-v3 .service-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .services-section-v3 .service-number {
    align-self: center;
  }
}

/* === gallery_v1.css === */
.gallery-section-v1 {
  background: #FFFFFF;
  padding: 80px 0;
  position: relative;
}

.gallery-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--cr-gradient-gold);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.35;
  pointer-events: none;
}

.gallery-section-v1 .gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.gallery-section-v1 .gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-section-v1 h2 {
  font-family: var(--cr-font-display);
  font-size: 46px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.gallery-section-v1 .gallery-header p {
  font-family: var(--cr-font-body);
  font-size: 18px;
  color: #2A2318;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

.gallery-section-v1 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-section-v1 .gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(26, 20, 16, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-section-v1 .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 20, 16, 0.14);
}

.gallery-section-v1 .gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-section-v1 .gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-section-v1 .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: border-color 0.25s ease;
  pointer-events: none;
}

.gallery-section-v1 .gallery-item:hover::after {
  border-color: rgba(201, 168, 76, 0.65);
}

@media (max-width: 1024px) {
  .gallery-section-v1 .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section-v1 {
    padding: 64px 0;
  }

  .gallery-section-v1 .gallery-container {
    padding: 0 24px;
  }

  .gallery-section-v1 h2 {
    font-size: 36px;
  }

  .gallery-section-v1 .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* === gallery_v2.css === */
.gallery-section-v2 {
  background: linear-gradient(135deg, #1A1410 0%, #2A2318 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.gallery-section-v2::before {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: var(--cr-gradient-gold);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.gallery-section-v2 .gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

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

.gallery-section-v2 h2 {
  font-family: var(--cr-font-display);
  font-size: 46px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.gallery-section-v2 .gallery-header p {
  font-family: var(--cr-font-body);
  font-size: 18px;
  font-weight: 600;
  color: #E8C96A;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

.gallery-section-v2 .gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}

.gallery-section-v2 .gallery-tile {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-section-v2 .gallery-tile:hover {
  transform: scale(1.02);
  border-color: rgba(201, 168, 76, 0.45);
  z-index: 1;
}

.gallery-section-v2 .gallery-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section-v2 .gallery-tile--wide {
  grid-column: span 2;
}

.gallery-section-v2 .gallery-tile--tall {
  grid-row: span 2;
}

.gallery-section-v2 .gallery-tile--hero {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-section-v2 .gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 8, 3, 0.75));
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-section-v2 .gallery-tile:hover .gallery-tile-overlay {
  opacity: 1;
}

.gallery-section-v2 .gallery-tile-label {
  font-family: var(--cr-font-body);
  font-size: 12px;
  font-weight: 600;
  color: #E8C96A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .gallery-section-v2 .gallery-mosaic {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
  }

  .gallery-section-v2 .gallery-tile--hero {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-section-v2 .gallery-tile--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .gallery-section-v2 {
    padding: 64px 0;
  }

  .gallery-section-v2 .gallery-container {
    padding: 0 24px;
  }

  .gallery-section-v2 h2 {
    font-size: 36px;
  }

  .gallery-section-v2 .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 110px;
    gap: 10px;
  }

  .gallery-section-v2 .gallery-tile--hero,
  .gallery-section-v2 .gallery-tile--wide,
  .gallery-section-v2 .gallery-tile--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section-v2 .gallery-tile:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-section-v2 .gallery-tile-overlay {
    opacity: 1;
  }
}

/* === gallery_v3.css === */
.gallery-section-v3 {
  background: #F8F6F3;
  padding: 80px 0;
  position: relative;
}

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

.gallery-section-v3 .gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-section-v3 h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.gallery-section-v3 .gallery-header p {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #2A2318;
  margin: 0;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-section-v3 .showcase-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.gallery-section-v3 .showcase-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}

.gallery-section-v3 .showcase-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.gallery-section-v3 .main-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 20, 16, 0.9));
  padding: 60px 32px 32px;
  color: #FFFFFF;
}

.gallery-section-v3 .main-caption h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #E8C96A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}

.gallery-section-v3 .main-caption p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.5;
}

.gallery-section-v3 .showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gallery-section-v3 .grid-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.gallery-section-v3 .grid-item:hover {
  transform: scale(1.05);
}

.gallery-section-v3 .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-section-v3 .item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 20, 16, 0.8);
  color: #E8C96A;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 8px;
  text-align: center;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .gallery-section-v3 .showcase-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .gallery-section-v3 .showcase-main {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .gallery-section-v3 .showcase-main img {
    height: 400px;
  }
  
  .gallery-section-v3 .showcase-grid {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .gallery-section-v3 {
    padding: 64px 0;
  }

  .gallery-section-v3 .gallery-container {
    padding: 0 24px;
  }

  .gallery-section-v3 h2 {
    font-size: 36px;
  }

  .gallery-section-v3 .gallery-header {
    margin-bottom: 40px;
  }

  .gallery-section-v3 .showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .gallery-section-v3 .grid-item:nth-child(4),
  .gallery-section-v3 .grid-item:nth-child(5) {
    grid-column: span 1;
  }
  
  .gallery-section-v3 .grid-item:nth-child(5) {
    grid-column: 2 / span 1;
  }
}

/* === contact_v2.css === */
.contact-section-v2 {
  background: #F8F6F3;
  padding: 80px 0;
  position: relative;
}

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

.contact-section-v2 .contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-section-v2 h2 {
  font-family: var(--cr-font-display);
  font-size: 48px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  line-height: 1.1;
}

.contact-section-v2 .contact-intro {
  font-family: var(--cr-font-body);
  font-size: 18px;
  font-weight: 600;
  color: #C9A84C;
  margin: 0 0 32px;
  line-height: 1.5;
}

.contact-section-v2 .trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-section-v2 .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cr-font-body);
  font-size: 15px;
  font-weight: 600;
  color: #2A2318;
}

.contact-section-v2 .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--cr-gradient-gold);
  color: #1A1410;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-section-v2 .contact-panel {
  background: linear-gradient(135deg, #1A1410 0%, #2A2318 100%);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 16px 48px rgba(26, 20, 16, 0.2);
}

.contact-section-v2 .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-section-v2 .contact-method {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-section-v2 .contact-method:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-section-v2 .contact-method-label {
  font-family: var(--cr-font-display);
  font-size: 12px;
  font-weight: 700;
  color: #E8C96A;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-section-v2 .contact-method a,
.contact-section-v2 .contact-method span {
  font-family: var(--cr-font-body);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1.4;
}

.contact-section-v2 .contact-method a:hover {
  color: #E8C96A;
}

.contact-section-v2 .contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-section-v2 .contact-primary {
  display: block;
  text-align: center;
  background: var(--cr-gradient-gold);
  color: #1A1410;
  font-family: var(--cr-font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: var(--cr-shadow-gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-section-v2 .contact-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.55);
}

.contact-section-v2 .contact-secondary {
  display: block;
  text-align: center;
  background: transparent;
  color: #C9A84C;
  border: 2px solid #C9A84C;
  font-family: var(--cr-font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-section-v2 .contact-secondary:hover {
  background: rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .contact-section-v2 .contact-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .contact-section-v2 .contact-container {
    padding: 0 24px;
  }

  .contact-section-v2 h2 {
    font-size: 36px;
  }

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

/* === contact_v3.css === */
.contact-section-v3 {
  background: #FFFFFF;
  padding: 80px 0;
  position: relative;
}

.contact-section-v3::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: var(--cr-gradient-gold);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  opacity: 0.35;
  pointer-events: none;
}

.contact-section-v3 .contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}

.contact-section-v3 .contact-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.contact-section-v3 h2 {
  font-family: var(--cr-font-display);
  font-size: 50px;
  font-weight: 800;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  line-height: 1.05;
}

.contact-section-v3 .contact-header p {
  font-family: var(--cr-font-body);
  font-size: 18px;
  font-weight: 600;
  color: #C9A84C;
  margin: 0;
  line-height: 1.5;
}

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

.contact-section-v3 .contact-card {
  background: #F8F6F3;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-section-v3 .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 20, 16, 0.08);
}

.contact-section-v3 .contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--cr-gradient-gold);
  border-radius: 50%;
  font-family: var(--cr-font-display);
  font-size: 22px;
  font-weight: 800;
  color: #1A1410;
  margin-bottom: 20px;
}

.contact-section-v3 .contact-card h3 {
  font-family: var(--cr-font-display);
  font-size: 18px;
  font-weight: 700;
  color: #1A1410;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

.contact-section-v3 .contact-card a,
.contact-section-v3 .contact-card p {
  font-family: var(--cr-font-body);
  font-size: 16px;
  font-weight: 600;
  color: #2A2318;
  text-decoration: none;
  margin: 0;
  line-height: 1.5;
}

.contact-section-v3 .contact-card a:hover {
  color: #C9A84C;
}

.contact-section-v3 .contact-card-note {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #B0A898;
  margin-top: 8px;
}

.contact-section-v3 .contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.contact-section-v3 .contact-primary {
  background: var(--cr-gradient-gold);
  color: #1A1410;
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 6px;
  box-shadow: var(--cr-shadow-gold);
  transition: transform 0.25s ease;
}

.contact-section-v3 .contact-primary:hover {
  transform: translateY(-2px);
}

.contact-section-v3 .contact-secondary {
  background: transparent;
  color: #C9A84C;
  border: 2px solid #C9A84C;
  font-family: var(--cr-font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 6px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-section-v3 .contact-secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-2px);
}

.contact-section-v3 .trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  padding: 28px 32px;
  background: #1A1410;
  border-radius: 12px;
}

.contact-section-v3 .trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cr-font-body);
  font-size: 14px;
  font-weight: 600;
  color: #B0A898;
}

.contact-section-v3 .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--cr-gradient-gold);
  color: #1A1410;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .contact-section-v3 .contact-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .contact-section-v3 {
    padding: 64px 0;
  }

  .contact-section-v3 .contact-container {
    padding: 0 24px;
  }

  .contact-section-v3 h2 {
    font-size: 36px;
  }

  .contact-section-v3 .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-section-v3 .contact-primary,
  .contact-section-v3 .contact-secondary {
    text-align: center;
  }

  .contact-section-v3 .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
}

/* === cta_v1.css === */
.cta-section-v1 {
  background: #1A1410;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
}

.cta-section-v1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  clip-path: polygon(0% 100%, 0% 0%, 100% 100%);
}

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

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

.cta-section-v1 h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 32px 0;
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.cta-section-v1 .cta-content p {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #E8C96A;
  margin: 0 0 48px 0;
  line-height: 1.5;
}

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

.cta-section-v1 .cta-primary {
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  color: #1A1410;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45), 0 2px 8px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
  display: inline-block;
}

.cta-section-v1 .cta-primary:hover {
  background: linear-gradient(135deg, #F0D880 0%, #E8C96A 50%, #C9A84C 100%);
  box-shadow: 0 6px 32px rgba(201,168,76,0.65), 0 4px 12px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.cta-section-v1 .cta-secondary {
  background: transparent;
  color: #C9A84C;
  border: 2px solid #C9A84C;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 6px;
  transition: all 0.25s ease;
  display: inline-block;
}

.cta-section-v1 .cta-secondary:hover {
  background: rgba(201,168,76,0.12);
  transform: translateY(-2px);
}

.cta-section-v1 .trust-indicators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section-v1 .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B0A898;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.cta-section-v1 .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  color: #1A1410;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.cta-section-v1 .cta-accent {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .cta-section-v1 {
    padding: 64px 0;
  }

  .cta-section-v1 .cta-container {
    padding: 0 24px;
  }

  .cta-section-v1 h2 {
    font-size: 42px;
  }
  
  .cta-section-v1 .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-section-v1 .trust-indicators {
    grid-template-columns: 1fr;
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #1E1A14;
  color: #B0A898;
  padding: 64px 0 0;
}

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

.footer-section-v1 .footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 2px solid #C9A84C;
}

.footer-section-v1 .footer-brand h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #E8C96A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
}

.footer-section-v1 .footer-brand p {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #B0A898;
  margin: 0 0 32px 0;
  max-width: 400px;
}

.footer-section-v1 .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section-v1 .contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
}

.footer-section-v1 .contact-label {
  font-weight: 600;
  color: #C9A84C;
  min-width: 60px;
}

.footer-section-v1 .contact-item a {
  color: #B0A898;
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.footer-section-v1 .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-section-v1 .link-group h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #E8C96A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;
}

.footer-section-v1 .link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-section-v1 .link-group a {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: #B0A898;
  text-decoration: none;
  transition: color 0.25s ease;
  padding: 4px 0;
}

.footer-section-v1 .link-group a:hover {
  color: #E8C96A;
}

.footer-section-v1 .footer-bottom {
  position: relative;
  padding: 32px 0;
  text-align: center;
}

.footer-section-v1 .footer-accent {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
  transform: translateX(-50%);
}

.footer-section-v1 .footer-bottom p {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: #B0A898;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-section-v1 .footer-links {
    grid-template-columns: repeat(2, 1fr);
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .footer-section-v1 .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-section-v1 .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .footer-section-v1 .contact-label {
    min-width: auto;
  }
}

/* === Home page section previews === */
.section-view-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.section-view-cta {
  display: inline-block;
  background: linear-gradient(135deg, #E8C96A 0%, #C9A84C 50%, #A8862E 100%);
  color: #1A1410;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-view-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.5);
}

.section-view-cta--outline {
  background: transparent;
  color: #C9A84C;
  border: 2px solid #C9A84C;
  box-shadow: none;
}

.section-view-cta--outline:hover {
  background: rgba(201, 168, 76, 0.12);
  box-shadow: none;
}

.about-section-v1.home-section-preview {
  padding: 64px 0;
}

.about-section-v1.home-section-preview .about-stats {
  margin-top: 32px;
}

.about-section-v1.home-section-preview .section-view-cta-wrap {
  justify-content: flex-start;
}

.services-section-v3.home-section-preview {
  padding: 64px 0;
}

.services-section-v3.home-section-preview .services-header {
  margin-bottom: 48px;
}

.services-section-v3.home-section-preview .services-flow--preview {
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 0;
}

.gallery-section-v1.home-section-preview {
  padding: 64px 0;
}

.gallery-section-v1.home-section-preview .gallery-header {
  margin-bottom: 40px;
}

.cta-section-v1.home-section-preview {
  padding: 64px 0;
}

.cta-section-v1.home-section-preview .cta-content p {
  margin-bottom: 32px;
}

.cta-section-v1.home-section-preview .cta-actions {
  margin-bottom: 32px;
}

.cta-section-v1.home-section-preview .trust-indicators {
  margin-bottom: 0;
}
