/*
 * Gigi Vi Beauty — site stylesheet
 * Matches site/final_site_preview.html
 *
 * Usage:
 *   <link rel="stylesheet" href="gigivi-site.css" />
 *   <script>document.documentElement.classList.add("wf-anim-js");</script>
 *
 * Page shell:
 *   <main class="site-preview-root"> … sections … </main>
 *
 * Override asset paths from another directory depth, e.g.:
 *   :root { --gv-hero-bg-image: url("../input/hero_reference.jpg"); }
 */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600;700&display=swap");

:root {
  /* Brand palette */
  --gv-gold: #8b6914;
  --gv-gold-light: #a07a1a;
  --gv-gold-accent: #b8972e;
  --gv-gold-bright: #c9a84c;
  --gv-gold-stat: #b8962e;
  --gv-cream: #f5f0e6;
  --gv-cream-warm: #f5f0e8;
  --gv-cream-soft: #faf7f2;
  --gv-brown-dark: #5c4509;
  --gv-brown-text: #3d3228;
  --gv-brown-muted: #7a6a58;
  --gv-brown-nav: #5a4a2a;
  --gv-brown-hero-text: #3a2e1a;
  --gv-white: #ffffff;
  --gv-border: #ddd0b0;

  /* Typography */
  --gv-font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --gv-font-body: "Jost", "Raleway", sans-serif;
  --gv-font-hero: "Georgia", "Times New Roman", serif;
  --gv-font-ui: Arial, Helvetica, sans-serif;

  /* Layout */
  --gv-container-wide: 1320px;
  --gv-container-narrow: 1140px;
  --gv-container-cta: 900px;
  --gv-section-padding-y: 96px;
  --gv-gutter: 80px;
  --gv-gutter-mobile: 40px;

  /* Assets (relative to this CSS file in site/) */
  --gv-hero-bg-image: url("../input/hero_reference.jpg");
  --gv-hero-bg-image-mobile: url("../input/mobilehero.jpg");

  /* Navigation stacking — keep above all page sections and hero content */
  --gv-nav-z: 1000;
  --gv-nav-backdrop-z: 1001;
  --gv-nav-menu-z: 1002;
  --gv-nav-toggle-z: 1003;
}
/* 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: 'Georgia', 'Times New Roman', serif;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.wf-hero__nav {
  background-color: #f5f0e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  position: sticky;
  top: 0;
  z-index: var(--gv-nav-z);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.wf-hero__nav-logo {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #8b6914;
  letter-spacing: 0.02em;
  font-style: italic;
}

.wf-hero__nav-logo a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.wf-hero__nav-logo a:hover {
  color: #a07a1a;
}

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

.wf-hero__nav-links li a {
  text-decoration: none;
  color: #5a4a2a;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

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

.wf-hero__nav-links li a.wf-hero__nav-link--active,
.wf-hero__nav-links li a.wf-hero__nav-link--active.wf-hero__nav-book {
  color: #8b6914 !important;
  font-weight: 600;
  position: relative;
}

.wf-hero__nav-links li a.wf-hero__nav-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background-color: #8b6914;
  border-radius: 1px;
}

.wf-hero__nav-book {
  color: #b8972e !important;
  font-style: italic;
}

.wf-hero__nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: var(--gv-nav-toggle-z);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.25s ease;
}

.wf-hero__nav-toggle:hover {
  background-color: rgba(139, 105, 20, 0.08);
}

.wf-hero__nav-toggle:focus-visible {
  outline: 2px solid #8b6914;
  outline-offset: 3px;
}

.wf-hero__nav-toggle-inner {
  position: relative;
  display: block;
  width: 26px;
  height: 18px;
}

.wf-hero__nav-toggle-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #8b6914;
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    top 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.wf-hero__nav-toggle-line:nth-child(2) {
  top: 8px;
}

.wf-hero__nav-toggle-line:nth-child(3) {
  top: 16px;
}

.wf-hero__nav--open .wf-hero__nav-toggle-line:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.wf-hero__nav--open .wf-hero__nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.wf-hero__nav--open .wf-hero__nav-toggle-line:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.wf-hero__nav-backdrop {
  display: none;
}

.wf-hero__body {
  position: relative;
  flex: 1;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.wf-hero__bg-image {
  position: absolute;
  inset: 0;
  background-image: var(--gv-hero-bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}

.wf-hero__content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin-left: 120px;
  padding: 60px 0 60px 0;
}

.wf-hero__headline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 400;
  color: #8b6914;
  line-height: 1.12;
  margin: 0 0 28px 0;
  letter-spacing: 0.01em;
  font-style: italic;
}

.wf-hero__headline-line {
  display: inline;
}

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

.wf-hero__headline-brand::before {
  content: " ";
}

.wf-hero__subtext {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: #3a2e1a;
  line-height: 1.65;
  margin: 0 0 34px 0;
  max-width: 540px;
  font-weight: 400;
}

.wf-hero__awards {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 38px;
}

.wf-hero__award-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-hero__award-wreath {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wf-hero__award-wreath svg {
  filter: drop-shadow(0 1px 2px rgba(139,105,20,0.15));
  height: 112px;
  width: auto;
}

.wf-hero__award-badge:last-child .wf-hero__award-wreath svg {
  height: 118px;
}

.wf-hero__cta {
  display: inline-block;
  background-color: #8b6914;
  color: #ffffff;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 20px 48px;
  text-transform: uppercase;
  transition: background-color 0.25s, transform 0.15s;
  border: none;
  cursor: pointer;
}

.wf-hero__cta:hover {
  background-color: #a07a1a;
  transform: translateY(-1px);
}

@media (min-width: 1400px) {
  .wf-hero__content {
    margin-left: 200px;
  }
}

@media (min-width: 901px) {
  .wf-hero__subtext {
    font-size: 1.48rem;
    max-width: 580px;
    margin-bottom: 38px;
  }

  .wf-hero__awards {
    gap: 28px;
    margin-bottom: 42px;
  }

  .wf-hero__award-wreath svg {
    height: 128px;
  }

  .wf-hero__award-badge:last-child .wf-hero__award-wreath svg {
    height: 136px;
  }

  .wf-hero__cta {
    font-size: 1.12rem;
    padding: 22px 52px;
  }
}

@media (max-width: 900px) {
  .wf-hero__nav {
    padding: 14px 24px;
  }
  .wf-hero__nav-links {
    gap: 18px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__body {
    min-height: min(92svh, 760px);
    align-items: flex-end;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__bg-image {
    background-image: var(--gv-hero-bg-image-mobile);
    background-position: center top;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(250, 247, 242, 0.96) 0%,
      rgba(250, 247, 242, 0.82) 38%,
      rgba(250, 247, 242, 0.35) 62%,
      transparent 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__content {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    width: 100%;
    padding: 32px 24px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__headline {
    font-size: clamp(1.85rem, 7.2vw, 2.6rem);
    margin-bottom: 18px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__headline-line,
  .wf-hero:not(.wf-hero--nav-only) .wf-hero__headline-brand {
    display: block;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__headline-br {
    display: none;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__headline-brand::before {
    content: none;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__subtext {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 360px;
    margin-bottom: 22px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__awards {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 26px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__award-wreath svg {
    height: 80px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__award-badge:last-child .wf-hero__award-wreath svg {
    height: 84px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__cta {
    display: block;
    width: min(100%, 360px);
    padding: 17px 28px;
    font-size: 0.84rem;
    letter-spacing: 0.1em;
    box-sizing: border-box;
  }
}

@media (max-width: 649px) {
  .wf-hero__nav-logo {
    font-size: 1.5rem;
    position: relative;
    z-index: var(--gv-nav-toggle-z);
  }

  .wf-hero__nav-toggle {
    display: flex;
  }

  .wf-hero__nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(58, 46, 26, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: var(--gv-nav-backdrop-z);
    transition:
      opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .wf-hero__nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 88px 32px 48px;
    background: linear-gradient(180deg, #f5f0e6 0%, #faf7f2 100%);
    z-index: var(--gv-nav-menu-z);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .wf-hero__nav--open .wf-hero__nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wf-hero__nav-links li {
    width: 100%;
    max-width: 320px;
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(1) { transition-delay: 0.06s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(2) { transition-delay: 0.1s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(3) { transition-delay: 0.14s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(4) { transition-delay: 0.18s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(5) { transition-delay: 0.22s; }
  .wf-hero__nav--open .wf-hero__nav-links li:nth-child(6) { transition-delay: 0.26s; }

  .wf-hero__nav-links li a {
    display: block;
    padding: 18px 12px;
    font-size: 1.35rem;
    letter-spacing: 0.04em;
  }

  .wf-hero__nav-links li:last-child a {
    margin-top: 12px;
    font-size: 1.45rem;
  }

  .wf-hero__nav-links li a.wf-hero__nav-link--active::after {
    display: none;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__body {
    min-height: min(100svh, 820px);
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__content {
    padding: 24px 18px 28px;
    width: calc(100% - 32px);
    max-width: 420px;
    margin: 0 auto 20px;
    background: rgba(250, 247, 242, 0.94);
    border: 1px solid rgba(221, 208, 176, 0.65);
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(90, 60, 10, 0.14);
    box-sizing: border-box;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__headline {
    font-size: clamp(1.65rem, 8.8vw, 2.1rem);
    margin-bottom: 14px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__subtext {
    font-size: 0.92rem;
    max-width: 300px;
    margin-bottom: 18px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__awards {
    gap: 8px 14px;
    margin-bottom: 20px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__award-wreath svg {
    height: 68px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__award-badge:last-child .wf-hero__award-wreath svg {
    height: 72px;
  }

  .wf-hero:not(.wf-hero--nav-only) .wf-hero__cta {
    width: 100%;
    max-width: none;
    padding: 15px 20px;
    font-size: 0.78rem;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .wf-hero__nav-toggle-line,
  .wf-hero__nav-links,
  .wf-hero__nav-backdrop,
  .wf-hero__nav-links li {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

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

/* Home page section teasers */
.gv-section-cta {
  display: inline-block;
  margin-top: 28px;
  background-color: var(--gv-gold);
  color: var(--gv-white);
  text-decoration: none;
  font-family: var(--gv-font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 36px;
  text-transform: uppercase;
  transition: background-color 0.25s, transform 0.15s;
}

.gv-section-cta:hover {
  background-color: var(--gv-gold-light);
  transform: translateY(-1px);
}

.gv-section-cta--light {
  background-color: var(--gv-white);
  color: var(--gv-gold);
}

.gv-section-cta--light:hover {
  background-color: var(--gv-cream);
}

.home-section-teaser {
  padding-top: 64px;
  padding-bottom: 64px;
}

.home-section-teaser .about-stats {
  margin-top: 32px;
  padding-top: 24px;
}

.home-section-teaser .gallery-left {
  gap: 32px;
}

.home-section-teaser .services-header {
  margin-bottom: 40px;
}

.home-section-teaser .service-band {
  padding: 32px 48px;
}

.services-container .gv-section-cta {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .home-section-teaser {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .gv-section-cta {
    padding: 14px 28px;
    font-size: 0.85rem;
  }
}

/* === about_v1.css === */
.about-section-v1 {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5F0E8 100%);
  position: relative;
  padding: var(--gv-section-padding-y, 96px) 0;
  overflow: hidden;
  box-sizing: border-box;
}

.about-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 240, 232, 0.72);
  pointer-events: none;
}

.about-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  min-width: 0;
}

.about-text h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 32px;
  line-height: 1.2;
  text-wrap: balance;
}

.about-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 400;
  color: var(--gv-brown-text);
  line-height: 1.6;
  margin: 0 0 24px;
  text-wrap: pretty;
}

.about-text p {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0 0 20px;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.about-text p:last-of-type {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gv-border);
  min-width: 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 32px;
  font-weight: 600;
  color: #B8962E;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #7A6A58;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 64px rgba(90, 60, 10, 0.18);
  display: block;
}

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

  .about-container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

  .about-content {
    gap: 48px;
  }
}

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

  .about-container {
    padding-left: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-right, 0px));
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .about-container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .about-text h2 {
    margin-bottom: 24px;
  }

  .about-stats {
    gap: 20px;
    margin-top: 36px;
    padding-top: 24px;
  }
}

/* === about_v2.css — centered story with hero image === */
.about-section-v2 {
  background: var(--gv-white);
  padding: var(--gv-section-padding-y, 96px) 0;
  overflow: hidden;
  box-sizing: border-box;
}

.about-v2-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.about-v2-hero {
  margin: 0 0 56px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.about-v2-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 12px 64px rgba(90, 60, 10, 0.16);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-v2-story {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.about-v2-story h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 28px;
  line-height: 1.15;
  text-wrap: balance;
}

.about-v2-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 400;
  color: var(--gv-brown-text);
  line-height: 1.6;
  margin: 0 0 22px;
  text-wrap: pretty;
}

.about-v2-story p {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0 0 18px;
  text-wrap: pretty;
}

.about-v2-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.about-v2-stat {
  background: linear-gradient(135deg, var(--gv-cream-soft) 0%, var(--gv-cream-warm) 100%);
  border: 1px solid var(--gv-border);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
  box-sizing: border-box;
}

.about-v2-stat .stat-number {
  display: block;
  font-family: var(--gv-font-display);
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 600;
  color: var(--gv-gold-stat);
  margin-bottom: 8px;
}

.about-v2-stat .stat-label {
  font-family: var(--gv-font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gv-brown-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === about_v3.css — split panel with pull quote === */
.about-section-v3 {
  background: linear-gradient(135deg, var(--gv-cream-soft) 0%, var(--gv-cream-warm) 100%);
  padding: var(--gv-section-padding-y, 96px) 0 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.about-section-v3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.72);
  pointer-events: none;
}

.about-v3-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.about-v3-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
  min-width: 0;
}

.about-v3-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 12px 64px rgba(90, 60, 10, 0.18);
}

.about-v3-panel {
  border-left: 4px solid var(--gv-gold-bright);
  padding-left: 40px;
  min-width: 0;
}

.about-v3-panel h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 24px;
  line-height: 1.15;
  text-wrap: balance;
}

.about-v3-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(17px, 1.8vw, 19px);
  font-weight: 400;
  color: var(--gv-brown-text);
  line-height: 1.6;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.about-v3-panel p {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.6vw, 17px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0 0 18px;
  text-wrap: pretty;
}

.about-v3-quote {
  margin: 28px 0;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
  border-left: 3px solid var(--gv-gold);
}

.about-v3-quote p {
  font-family: var(--gv-font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: var(--gv-gold);
  line-height: 1.45;
  margin: 0;
  text-wrap: balance;
}

.about-v3-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  background: var(--gv-gold);
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about-v3-stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  box-sizing: border-box;
}

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

.about-v3-stat .stat-number {
  display: block;
  font-family: var(--gv-font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  color: var(--gv-white);
  margin-bottom: 8px;
}

.about-v3-stat .stat-label {
  font-family: var(--gv-font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--gv-cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-section-v2,
  .about-section-v3 {
    padding-top: 72px;
  }

  .about-section-v3 {
    padding-bottom: 0;
  }

  .about-v2-container,
  .about-v3-container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

  .about-v2-hero {
    margin-bottom: 40px;
  }

  .about-v2-story {
    margin-bottom: 40px;
  }

  .about-v3-grid {
    gap: 40px;
  }

  .about-v3-stats {
    margin-top: 56px;
  }
}

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

  .about-v2-container,
  .about-v3-container {
    padding-left: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-right, 0px));
  }

  .about-v2-stats,
  .about-v3-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-v3-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-v3-panel {
    padding-left: 24px;
  }

  .about-v3-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-v3-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-v3-stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .about-section-v2,
  .about-section-v3 {
    padding-top: 48px;
  }

  .about-v2-container,
  .about-v3-container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .about-v2-hero {
    margin-bottom: 32px;
  }

  .about-v2-story {
    margin-bottom: 32px;
    text-align: left;
  }

  .about-v2-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-v2-stat {
    padding: 22px 18px;
  }

  .about-v3-panel {
    padding-left: 18px;
    border-left-width: 3px;
  }

  .about-v3-quote {
    margin: 22px 0;
    padding: 18px 20px;
  }

  .about-v3-stats {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .about-v3-stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 28px 20px;
  }

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

/* === services_v1.css === */
.services-section-v1 {
  background: #8B6914;
  padding: var(--gv-section-padding-y, 96px) 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.services-section-v1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="60" cy="40" r="0.5" fill="%23ffffff" opacity="0.015"/><circle cx="80" cy="80" r="1.5" fill="%23ffffff" opacity="0.025"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.services-container {
  max-width: var(--gv-container-narrow, 1140px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.services-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  box-sizing: border-box;
}

.services-header h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #FFFFFF;
  margin: 0 0 24px;
  line-height: 1.15;
  text-wrap: balance;
}

.services-intro {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  color: #F5F0E8;
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.services-bands {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
}

.service-band {
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.service-band.primary {
  background: rgba(245, 240, 232, 0.15);
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.service-band.accent {
  background: rgba(201, 168, 76, 0.2);
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
}

.service-band h3 {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 20px;
  line-height: 1.2;
  width: 100%;
  text-wrap: balance;
}

.service-band p {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: clamp(15px, 1.6vw, 16px);
  font-weight: 300;
  color: #F5F0E8;
  line-height: 1.7;
  max-width: 600px;
  width: 100%;
  margin: 0;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

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

  .services-container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

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

  .service-band {
    padding: 40px 32px;
    max-width: 100%;
  }
}

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

  .services-container {
    padding-left: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-right, 0px));
  }

  .services-header {
    margin-bottom: 40px;
  }

  .service-band {
    padding: 32px 24px;
  }

  .service-band h3 {
    margin-bottom: 16px;
  }
}

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

  .services-container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

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

  .services-header h2 {
    margin-bottom: 16px;
  }

  .service-band {
    padding: 28px 18px;
  }

  .service-band + .service-band {
    margin-top: 0;
  }

  .service-band.primary,
  .service-band.accent {
    border-left: none;
    border-right: none;
  }
}

/* === services comparison markers (services page preview) === */
.gv-variation-marker {
  width: 100%;
  box-sizing: border-box;
  padding: 18px max(20px, env(safe-area-inset-right, 0px)) 18px max(20px, env(safe-area-inset-left, 0px));
  background: var(--gv-brown-text);
  border-top: 3px solid var(--gv-gold-bright);
  text-align: center;
}

.gv-variation-marker span {
  font-family: var(--gv-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gv-cream);
}

/* === services_v2.css — card grid on cream === */
.services-section-v2 {
  background: linear-gradient(135deg, var(--gv-cream-soft) 0%, var(--gv-cream-warm) 100%);
  padding: var(--gv-section-padding-y, 96px) 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.services-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.72);
  pointer-events: none;
}

.services-v2-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.services-v2-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.services-v2-header h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 24px;
  line-height: 1.15;
  text-wrap: balance;
}

.services-v2-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.services-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.services-v2-card {
  background: var(--gv-white);
  padding: 32px 28px 28px;
  border-top: 3px solid var(--gv-gold-bright);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(90, 60, 10, 0.1);
  box-sizing: border-box;
  min-width: 0;
  scroll-margin-top: 80px;
}

.services-v2-card h3 {
  font-family: var(--gv-font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--gv-gold);
  margin: 0 0 14px;
  line-height: 1.2;
  text-wrap: balance;
}

.services-v2-card p {
  font-family: var(--gv-font-body);
  font-size: clamp(15px, 1.5vw, 16px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0 0 20px;
  text-wrap: pretty;
}

.services-v2-book {
  display: inline-block;
  font-family: var(--gv-font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gv-gold);
  border-bottom: 1px solid var(--gv-gold-bright);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.services-v2-book:hover {
  color: var(--gv-gold-light);
  border-color: var(--gv-gold-light);
}

/* === services_v3.css — editorial numbered list === */
.services-section-v3 {
  background: var(--gv-white);
  padding: var(--gv-section-padding-y, 96px) 0;
  overflow: hidden;
  box-sizing: border-box;
}

.services-v3-container {
  max-width: var(--gv-container-narrow, 1140px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.services-v3-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.services-v3-header h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 24px;
  line-height: 1.15;
  text-wrap: balance;
}

.services-v3-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

.services-v3-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gv-border);
}

.services-v3-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 24px 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--gv-border);
  box-sizing: border-box;
  min-width: 0;
  scroll-margin-top: 80px;
}

.services-v3-item:nth-child(even) {
  background: linear-gradient(90deg, transparent 0%, rgba(245, 240, 232, 0.45) 8%, rgba(245, 240, 232, 0.45) 92%, transparent 100%);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.services-v3-index {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--gv-gold-stat);
  line-height: 1;
  padding-top: 4px;
}

.services-v3-body h3 {
  font-family: var(--gv-font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--gv-gold);
  margin: 0 0 12px;
  line-height: 1.2;
  text-wrap: balance;
}

.services-v3-body p {
  font-family: var(--gv-font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
  text-wrap: pretty;
}

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

  .services-v2-container,
  .services-v3-container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

  .services-v2-header,
  .services-v3-header {
    margin-bottom: 40px;
  }
}

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

  .services-v2-container,
  .services-v3-container {
    padding-left: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-right, 0px));
  }

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

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

  .services-v3-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px 24px;
    padding: 28px 0;
  }

  .services-v3-item:nth-child(even) {
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
  }
}

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

  .services-v2-container,
  .services-v3-container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .services-v2-header,
  .services-v3-header {
    margin-bottom: 32px;
  }

  .services-v2-header h2,
  .services-v3-header h2 {
    margin-bottom: 16px;
  }

  .services-v2-card {
    padding: 24px 18px 20px;
  }

  .services-v3-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .services-v3-index {
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gv-brown-muted);
    padding-top: 0;
  }

  .services-v3-item:nth-child(even) {
    margin-left: -8px;
    margin-right: -8px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* === gallery_v3.css === */
.gallery-section-v3 {
  background: var(--gv-white);
  padding: var(--gv-section-padding-y, 96px) 0;
  overflow: hidden;
  box-sizing: border-box;
}

.gallery-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.gallery-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.gallery-left {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.gallery-text h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: #8B6914;
  margin-bottom: 24px;
  line-height: 1.2;
}

.gallery-text p {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #3D3228;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.gallery-grid-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(139, 105, 20, 0.12);
  transition: transform 0.3s ease;
}

.grid-item:hover {
  transform: scale(1.02);
}

.grid-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-caption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(139, 105, 20, 0.9);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.gallery-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-image {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 64px rgba(90, 60, 10, 0.18);
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(139, 105, 20, 0.3) 60%, rgba(139, 105, 20, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
}

.hero-caption {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
}

.secondary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.secondary-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(139, 105, 20, 0.12);
  transition: transform 0.3s ease;
}

.secondary-item:hover {
  transform: scale(1.02);
}

.secondary-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.secondary-caption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(184, 150, 46, 0.9);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

  .gallery-container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

  .gallery-content {
    gap: 48px;
  }
}

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

  .gallery-container {
    padding-left: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-right, 0px));
  }

  .gallery-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-left {
    gap: 32px;
  }

  .gallery-grid-left {
    gap: 16px;
  }

  .hero-image {
    height: 300px;
  }

  .secondary-images {
    gap: 16px;
  }
}

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

  .gallery-container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .gallery-text h2 {
    margin-bottom: 16px;
  }

  .hero-image {
    height: 240px;
  }

  .hero-overlay {
    padding: 20px;
  }

  .hero-caption {
    font-size: 18px;
  }
}

/* === portfolio_v2.css — uniform grid === */
.portfolio-section-v2 {
  background: linear-gradient(135deg, var(--gv-cream-soft) 0%, var(--gv-cream-warm) 100%);
  padding: var(--gv-section-padding-y, 96px) 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.portfolio-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.72);
  pointer-events: none;
}

.portfolio-v2-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.portfolio-v2-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.portfolio-v2-header h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 24px;
  line-height: 1.15;
  text-wrap: balance;
}

.portfolio-v2-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty;
}

.portfolio-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  min-width: 0;
}

.portfolio-v2-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 32px rgba(90, 60, 10, 0.12);
  min-width: 0;
}

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

.portfolio-v2-item:hover img {
  transform: scale(1.04);
}

.portfolio-v2-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(92, 69, 9, 0.92) 0%, rgba(92, 69, 9, 0.55) 70%, transparent 100%);
  font-family: var(--gv-font-display);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  color: var(--gv-white);
  letter-spacing: 0.02em;
}

/* === portfolio_v3.css — featured hero + thumb grid === */
.portfolio-section-v3 {
  background: var(--gv-white);
  padding: var(--gv-section-padding-y, 96px) 0;
  overflow: hidden;
  box-sizing: border-box;
}

.portfolio-v3-container {
  max-width: var(--gv-container-wide, 1320px);
  margin: 0 auto;
  padding: 0 var(--gv-gutter, 80px);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.portfolio-v3-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.portfolio-v3-header h2 {
  font-family: var(--gv-font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--gv-gold);
  margin: 0 0 20px;
  line-height: 1.15;
  text-wrap: balance;
}

.portfolio-v3-intro {
  font-family: var(--gv-font-body);
  font-size: clamp(16px, 1.8vw, 17px);
  font-weight: 300;
  color: var(--gv-brown-text);
  line-height: 1.7;
  margin: 0;
  text-wrap: pretty;
}

.portfolio-v3-featured {
  position: relative;
  width: 100%;
  min-height: 420px;
  max-height: 560px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 64px rgba(90, 60, 10, 0.18);
  margin-bottom: 24px;
}

.portfolio-v3-featured img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.portfolio-v3-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 105, 20, 0.15) 0%, rgba(139, 105, 20, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.portfolio-v3-featured-caption {
  font-family: var(--gv-font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--gv-white);
  line-height: 1.2;
  max-width: 480px;
  text-wrap: balance;
}

.portfolio-v3-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  min-width: 0;
}

.portfolio-v3-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  box-shadow: 0 4px 24px rgba(139, 105, 20, 0.12);
  min-width: 0;
}

.portfolio-v3-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-v3-thumb:hover img {
  transform: scale(1.05);
}

.portfolio-v3-thumb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: rgba(139, 105, 20, 0.88);
  font-family: var(--gv-font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gv-white);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .portfolio-section-v2,
  .portfolio-section-v3 {
    padding: 72px 0;
  }

  .portfolio-v2-container,
  .portfolio-v3-container {
    padding-left: max(32px, env(safe-area-inset-left, 0px));
    padding-right: max(32px, env(safe-area-inset-right, 0px));
  }

  .portfolio-v2-header {
    margin-bottom: 40px;
  }

  .portfolio-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .portfolio-v3-featured {
    min-height: 360px;
  }

  .portfolio-v3-featured img {
    min-height: 360px;
  }

  .portfolio-v3-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}

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

  .portfolio-v2-container,
  .portfolio-v3-container {
    padding-left: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--gv-gutter-mobile, 40px), env(safe-area-inset-right, 0px));
  }

  .portfolio-v3-featured-overlay {
    padding: 28px;
  }

  .portfolio-v3-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .portfolio-section-v2,
  .portfolio-section-v3 {
    padding: 48px 0;
  }

  .portfolio-v2-container,
  .portfolio-v3-container {
    padding-left: max(20px, env(safe-area-inset-left, 0px));
    padding-right: max(20px, env(safe-area-inset-right, 0px));
  }

  .portfolio-v2-header {
    margin-bottom: 32px;
  }

  .portfolio-v2-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .portfolio-v2-item {
    aspect-ratio: 16 / 10;
  }

  .portfolio-v3-header {
    margin-bottom: 28px;
  }

  .portfolio-v3-featured {
    min-height: 280px;
    margin-bottom: 16px;
  }

  .portfolio-v3-featured img {
    min-height: 280px;
  }

  .portfolio-v3-featured-overlay {
    padding: 20px;
  }

  .portfolio-v3-thumbs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portfolio-v3-thumb {
    aspect-ratio: 16 / 10;
  }
}

/* === cta_v3.css === */
.cta-section-v3 {
  background: linear-gradient(135deg, #C9A84C 0%, #8B6914 100%);
  position: relative;
  padding: 96px 0;
}

.cta-section-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 240, 232, 0.72);
  pointer-events: none;
}

.cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

.cta-urgency {
  position: relative;
}

.urgency-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  padding: 12px 24px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 16px;
}

.badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.urgency-content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 24px;
  line-height: 1.1;
}

.urgency-text {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #F5F0E8;
  line-height: 1.5;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.action-row {
  margin-bottom: 56px;
}

.primary-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.action-btn {
  padding: 18px 44px;
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  min-width: 260px;
  display: inline-block;
  text-align: center;
}

.action-btn.primary {
  background: #8B6914;
  color: #FFFFFF;
  border: none;
  box-shadow: 0 6px 28px rgba(139, 105, 20, 0.40);
}

.action-btn.primary:hover {
  background: #C9A84C;
  box-shadow: 0 8px 32px rgba(139, 105, 20, 0.60);
  transform: translateY(-2px);
}

.action-btn.secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.action-btn.secondary:hover {
  background: #FFFFFF;
  color: #8B6914;
  transform: translateY(-2px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 40px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-point {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-point strong {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.benefit-point span {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #F5F0E8;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cta-container {
    padding: 0 40px;
  }
  
  .primary-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .action-btn {
    min-width: 240px;
    padding: 16px 32px;
  }
}

/* === footer_v1.css === */
.footer-section-v1 {
  background: #5C4509;
  padding: 64px 0 32px;
  color: #F5F0E8;
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}

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

.footer-brand h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #C9A84C;
  margin-bottom: 20px;
  font-style: italic;
}

.brand-description {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #F5F0E8;
  margin-bottom: 24px;
}

.brand-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.award {
  background: rgba(201, 168, 76, 0.2);
  color: #C9A84C;
  padding: 6px 12px;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.footer-contact h4,
.footer-services h4,
.footer-info h4 {
  font-family: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  color: #C9A84C;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.contact-label {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #7A6A58;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span:last-child {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #F5F0E8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #C9A84C;
}

.services-links,
.info-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-links li,
.info-links li {
  margin-bottom: 12px;
}

.services-links a,
.info-links a {
  font-family: 'Jost', 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #F5F0E8;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.services-links a:hover,
.info-links a:hover {
  color: #C9A84C;
}

.services-links a.footer-link--active,
.info-links a.footer-link--active {
  color: #C9A84C;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #7A6A58;
  margin: 0;
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: #C9A84C;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 0 40px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
