@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,400..700;1,400..700&family=Source+Serif+4:ital,opsz,wght@0,8..60,400..700;1,8..60,400..700&display=swap');

:root {
  --wf-font-heading: 'Source Serif 4', 'Iowan Old Style', 'Palatino Linotype', serif;
  --wf-font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --wf-gold: #D6CAB0;
  --wf-gold-dark: #97896D;
  --wf-gold-deep: #86795F;
  --wf-gold-light: #EDE6D6;
  --wf-gold-mid: #C8BCA2;
  --wf-gold-rgb: 214, 202, 176;
}

.site-preview-root h1,
.site-preview-root h2,
.site-preview-root h3,
.site-preview-root h4,
.site-preview-root h5,
.site-preview-root h6 {
  font-family: var(--wf-font-heading);
}

.site-preview-root button,
.site-preview-root input,
.site-preview-root textarea,
.site-preview-root select {
  font-family: inherit;
}

/* preview shell */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}
body {
  margin: 0;
  overscroll-behavior: none;
  font-family: var(--wf-font-body);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.site-preview-root {
  display: block;
  font-family: var(--wf-font-body);
  font-weight: 600;
}

/* 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: 1;
  transform: translateY(14px);
}

.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%; font-family: var(--wf-font-heading); box-sizing: border-box; } .wf-hero *, .wf-hero *::before, .wf-hero *::after { box-sizing: border-box; } .wf-hero__body { position: relative; min-height: 100vh; overflow: hidden; } .wf-hero__bg-image { position: absolute; inset: 0; background-image: url(/input/hero_reference.jpg); background-size: cover; background-position: center top; z-index: 0; } .wf-hero__overlay { position: absolute; inset: 0; background: rgba(255,252,248,0.55); z-index: 1; } .wf-hero__nav { position: relative; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 72px; background: rgba(255,255,255,0.97); border-bottom: 1px solid #e8ddd0; } .wf-hero__nav-brand { font-size: 1.1rem; font-weight: 800; letter-spacing: 0.04em; white-space: nowrap; font-family: var(--wf-font-heading); } .wf-hero__brand-first { color: var(--wf-gold); } .wf-hero__brand-rest { color: #2a2a2a; } .wf-hero__nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; } .wf-hero__nav-links li a { text-decoration: none; color: #3a3a3a; font-family: var(--wf-font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; } .wf-hero__nav-links li a:hover { color: var(--wf-gold); } .wf-hero__nav-cta { display: inline-block; border: 2px solid var(--wf-gold); color: var(--wf-gold); padding: 9px 22px; font-family: var(--wf-font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s; } .wf-hero__nav-cta:hover { background: var(--wf-gold); color: var(--wf-gold-dark); } .wf-hero__content { position: relative; z-index: 5; display: grid; grid-template-columns: 280px 1fr 260px; grid-template-rows: auto; gap: 20px; padding: 36px 40px 48px; align-items: center; min-height: calc(100vh - 72px); } .wf-hero__content > div:first-child { display: flex; flex-direction: column; gap: 20px; align-self: center; } .wf-hero__card--left-top { border: 2px solid var(--wf-gold-mid); background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 18px rgba(var(--wf-gold-rgb), 0.22); } .wf-hero__card-inner { background: #1a1a1a; padding: 14px 14px 10px; } .wf-hero__card-inner.wf-hero__card--dark { background: #18181a; } .wf-hero__card-tagline { color: #fff; font-family: var(--wf-font-heading); font-size: 0.88rem; font-style: normal; margin: 0 0 4px; } .wf-hero__card-tagline em { color: var(--wf-gold-mid); font-style: italic; } .wf-hero__card-sub { color: #aaa; font-size: 0.65rem; margin: 0; font-family: var(--wf-font-body); } .wf-hero__faces-placeholder { width: 100%; height: 130px; background: linear-gradient(135deg, #2c2c2e 0%, #3a2e28 50%, #2c2c2e 100%); display: flex; align-items: center; justify-content: center; color: #666; font-size: 0.7rem; text-align: center; } .wf-hero__card-footer { background: #fff; padding: 10px 14px; } .wf-hero__card-motto { margin: 0; font-family: var(--wf-font-body); font-size: 0.78rem; font-weight: 800; color: #2a2a2a; letter-spacing: 0.04em; line-height: 1.5; } .wf-hero__card--left-bottom { border: 2px solid var(--wf-gold-mid); background: linear-gradient(135deg, var(--wf-gold-mid) 0%, var(--wf-gold-deep) 40%, var(--wf-gold-mid) 100%); border-radius: 4px; padding: 24px 20px; text-align: center; box-shadow: 0 4px 18px rgba(var(--wf-gold-rgb), 0.28); } .wf-hero__award { display: flex; flex-direction: column; align-items: center; gap: 8px; } .wf-hero__award-icon { font-size: 2.4rem; filter: brightness(0) saturate(100%) invert(100%); opacity: 0.9; } .wf-hero__award-text { color: #fff; font-family: var(--wf-font-body); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-align: center; margin: 0; line-height: 1.6; text-transform: uppercase; } .wf-hero__center { text-align: center; padding: 0 20px; } .wf-hero__headline { font-family: var(--wf-font-heading); font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 800; color: var(--wf-gold); letter-spacing: 0.03em; line-height: 1.0; margin: 0 0 10px; text-shadow: 1px 2px 8px rgba(var(--wf-gold-rgb), 0.22); } .wf-hero__sub-cursive { font-family: var(--wf-font-heading); font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-style: italic; color: var(--wf-gold-deep); margin: 0 0 22px; } .wf-hero__welcome { font-family: var(--wf-font-heading); font-size: clamp(1.1rem, 2.2vw, 1.65rem); font-weight: 800; color: var(--wf-gold-dark); letter-spacing: 0.02em; line-height: 1.35; margin: 0 0 16px; } .wf-hero__welcome em { font-style: italic; color: var(--wf-gold); } .wf-hero__desc { font-family: var(--wf-font-body); font-size: 0.95rem; color: #4a4040; line-height: 1.6; margin: 0 0 28px; } .wf-hero__cta-btn { display: inline-block; border: 2px solid var(--wf-gold); color: var(--wf-gold-dark); background: rgba(255,255,255,0.88); padding: 14px 36px; font-family: var(--wf-font-body); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; transition: background 0.2s, color 0.2s; } .wf-hero__cta-btn:hover { background: var(--wf-gold); color: var(--wf-gold-dark); } .wf-hero__cards-right { display: flex; flex-direction: column; gap: 20px; align-self: center; } .wf-hero__card--right-top, .wf-hero__card--right-bottom { border: 2px solid var(--wf-gold-mid); background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 4px 18px rgba(var(--wf-gold-rgb), 0.22); } .wf-hero__card-img { width: 100%; height: 150px; background-color: #e8d8c8; background-size: cover; background-position: center; } .wf-hero__card-img--nails { background: linear-gradient(135deg, #f5e6d8 0%, #e8cdb8 50%, #d4b898 100%); display: flex; align-items: center; justify-content: center; color: #9a7a5a; font-size: 0.7rem; } .wf-hero__card-img--spa { background: linear-gradient(135deg, #f0e8d8 0%, #e0d0c0 50%, #d8c8b0 100%); display: flex; align-items: center; justify-content: center; color: #9a7a5a; font-size: 0.7rem; } .wf-hero__card-label { padding: 10px 14px; font-family: var(--wf-font-body); font-size: 0.78rem; font-weight: 800; color: #2a2a2a; letter-spacing: 0.04em; line-height: 1.5; margin: 0; text-transform: uppercase; background: #fff; } .wf-hero__card-label em { font-style: italic; text-transform: none; font-weight: 500; display: block; color: #555; } @media (max-width: 900px) { .wf-hero__content { grid-template-columns: 1fr; } .wf-hero__cards-right { flex-direction: row; } }

/* Web Foundation: hero concept image as section background */
.wf-hero__nav-links a[aria-current="page"],
.wf-hero__nav-cta[aria-current="page"],
.wf-hero__mobile-link[aria-current="page"],
.wf-hero__mobile-cta[aria-current="page"] {
  color: var(--wf-gold);
}

.wf-hero__headline-line,
.wf-hero__welcome-line {
  display: block;
}

@media (max-width: 900px) {
  .wf-hero__headline-line,
  .wf-hero__welcome-line {
    white-space: nowrap;
  }

  .wf-hero__headline {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
    letter-spacing: 0.02em;
  }

  .wf-hero__welcome {
    font-size: clamp(0.92rem, 3.4vw, 1.15rem);
    letter-spacing: 0.01em;
  }
}

.wf-hero__body {
  position: relative;
}
.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;
}

@media (max-width: 1300px) {
  .wf-hero__bg-image {
    background-image: url("/input/mobilebghero.png");
  }
}

.wf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}
.wf-hero__nav,
.wf-hero__content,
.wf-hero__text-col,
.wf-hero__tablet-preview {
  position: relative;
  z-index: 2;
}

.wf-hero__menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--wf-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10002;
}

.wf-hero__menu-toggle-line,
.wf-hero__menu-toggle-line::before,
.wf-hero__menu-toggle-line::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--wf-gold-dark);
  transition:
    transform 0.32s cubic-bezier(0.65, 0, 0.35, 1),
    opacity 0.2s ease,
    background 0.2s ease;
}

.wf-hero__menu-toggle-line {
  position: relative;
}

.wf-hero__menu-toggle-line::before,
.wf-hero__menu-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
}

.wf-hero__menu-toggle-line::before {
  transform: translateY(-7px);
}

.wf-hero__menu-toggle-line::after {
  transform: translateY(7px);
}

.wf-hero__mobile-menu {
  display: none;
}

@media (max-width: 1280px) {
  .wf-hero__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 72px;
    box-shadow: 0 8px 28px rgba(90, 60, 10, 0.12);
  }

  .wf-hero__body {
    padding-top: 72px;
  }

  .wf-hero__nav-links,
  .wf-hero__nav-cta {
    display: none;
  }

  .wf-hero__menu-toggle {
    display: inline-flex;
  }

  .wf-hero__mobile-menu {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 9999;
    flex-direction: column;
    gap: 14px;
    padding: 24px clamp(20px, 6vw, 56px) 30px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 247, 242, 0.96) 100%);
    border-bottom: 1px solid #e8ddd0;
    box-shadow: 0 24px 48px rgba(90, 60, 10, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition:
      opacity 0.28s ease,
      transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .wf-hero__mobile-menu::before {
    content: "";
    position: fixed;
    inset: 72px 0 0;
    z-index: -1;
    background: rgba(42, 42, 42, 0.16);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .wf-hero__mobile-link,
  .wf-hero__mobile-cta {
    transform: translateY(-8px);
    opacity: 0;
    transition:
      opacity 0.26s ease,
      transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
      background 0.2s ease,
      color 0.2s ease;
  }

  .wf-hero__mobile-link {
    color: #3a3a3a;
    font-family: var(--wf-font-body);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--wf-gold-rgb), 0.22);
  }

  .wf-hero__mobile-link:hover {
    color: var(--wf-gold);
  }

  .wf-hero__mobile-cta {
    align-self: flex-start;
    border: 2px solid var(--wf-gold);
    color: var(--wf-gold-dark);
    background: rgba(255, 255, 255, 0.9);
    padding: 13px 28px;
    font-family: var(--wf-font-body);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
  }

  .wf-hero__mobile-cta:hover {
    background: var(--wf-gold);
    color: var(--wf-gold-dark);
  }

  .wf-hero__mobile-menu {
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .wf-hero__mobile-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 0 10px;
    border-bottom: 1px solid rgba(var(--wf-gold-rgb), 0.14);
  }

  .wf-hero__mobile-group-label {
    font-family: var(--wf-font-body);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wf-gold);
    padding: 4px 0 4px;
  }

  .wf-hero__mobile-sublink {
    color: #4a4a4a;
    font-family: var(--wf-font-body);
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    text-transform: none;
    padding: 5px 0 5px 10px;
    border-left: 2px solid rgba(var(--wf-gold-rgb), 0.28);
    transition: color 0.2s ease, border-color 0.2s ease;
  }

  .wf-hero__mobile-sublink:hover {
    color: var(--wf-gold-dark);
    border-left-color: var(--wf-gold);
  }

  .wf-hero__nav.wf-hero__nav--open .wf-hero__menu-toggle-line {
    background: transparent;
  }

  .wf-hero__nav.wf-hero__nav--open .wf-hero__menu-toggle-line::before {
    transform: rotate(45deg);
  }

  .wf-hero__nav.wf-hero__nav--open .wf-hero__menu-toggle-line::after {
    transform: rotate(-45deg);
  }

  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu::before {
    opacity: 1;
  }

  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-link,
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group,
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .wf-hero__mobile-group {
    transform: translateY(-8px);
    opacity: 0;
    transition:
      opacity 0.26s ease,
      transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-link { transition-delay: 0.04s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(1) { transition-delay: 0.06s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(2) { transition-delay: 0.08s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(3) { transition-delay: 0.1s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(4) { transition-delay: 0.12s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(5) { transition-delay: 0.14s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(6) { transition-delay: 0.16s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-group:nth-of-type(7) { transition-delay: 0.18s; }
  .wf-hero__nav.wf-hero__nav--open + .wf-hero__mobile-menu .wf-hero__mobile-cta { transition-delay: 0.22s; }
}

@media (min-width: 1281px) and (max-width: 1540px) {
  .wf-hero__nav {
    padding: 0 18px;
  }

  .wf-hero__nav-brand {
    font-size: 0.95rem;
  }

  .wf-hero__nav-links {
    gap: 12px;
  }

  .wf-hero__nav-links li a {
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  .wf-hero__nav-cta {
    padding: 8px 14px;
    font-size: 0.66rem;
  }
}

@media (max-width: 470px) {
  .wf-hero__nav-brand {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wf-hero__menu-toggle-line,
  .wf-hero__menu-toggle-line::before,
  .wf-hero__menu-toggle-line::after,
  .wf-hero__mobile-menu,
  .wf-hero__mobile-menu::before,
  .wf-hero__mobile-link,
  .wf-hero__mobile-cta {
    transition: none;
  }
}

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

.wf-template-nav-shell {
  min-height: 72px;
}

.site-section-wf {
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-top: none;
  background: transparent;
  color: inherit;
}

/* === reusable public page content === */
.wf-page {
  background: #FAF7F2;
  color: #4A3D2E;
  font-family: var(--wf-font-body);
}

.wf-page-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(var(--wf-gold-rgb), 0.2) 0%, transparent 34%),
    linear-gradient(135deg, #FAF7F2 0%, #F5F0E8 100%);
  border-bottom: 1px solid #E8DFD0;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 80px);
  text-align: center;
}

.wf-page-eyebrow {
  color: var(--wf-gold);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.wf-page-title {
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-heading);
  font-size: clamp(34px, 5vw, 68px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0 auto 22px;
  max-width: 980px;
  text-transform: uppercase;
}

.wf-page-lede {
  color: #4A3D2E;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 880px;
}

.wf-page-section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 80px);
}

.wf-page-section:nth-of-type(even) {
  background: #FFFFFF;
}

.wf-page-container {
  margin: 0 auto;
  max-width: 1180px;
}

.wf-page-kicker {
  color: var(--wf-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.wf-page-heading {
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-heading);
  font-size: clamp(26px, 3.5vw, 44px);
  line-height: 1.18;
  margin: 0 0 20px;
}

.wf-page-subheading {
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-heading);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.22;
  margin: 28px 0 16px;
}

.wf-page-text {
  color: #4A3D2E;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 18px;
}

.wf-page-grid {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-auto-rows: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.wf-page-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-page-card {
  align-self: stretch;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #E8DFD0;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(90, 60, 10, 0.08);
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  padding: 28px;
}

.wf-page-card h2,
.wf-page-card h3 {
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-heading);
  font-size: 24px;
  line-height: 1.22;
  margin: 0 0 16px;
}

.wf-page-card > p {
  color: #4A3D2E;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.wf-page-card > p:not(:last-child) {
  flex: 1;
  margin-bottom: 24px;
}

.wf-page-card > p:last-child {
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 8px;
}

.wf-page-card .wf-page-list {
  margin: 0;
}

.wf-page-card .wf-page-list li:last-child {
  margin-bottom: 0;
}

.wf-page-card > p:last-child .wf-page-button {
  margin: 0;
}

.wf-page-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.wf-page-list li {
  background: rgba(250, 247, 242, 0.82);
  border-left: 3px solid var(--wf-gold);
  color: #4A3D2E;
  line-height: 1.55;
  padding: 14px 16px;
}

.wf-page-divider {
  border: 0;
  border-top: 1px solid #E8DFD0;
  margin: 48px 0;
}

.wf-page-feature-image {
  border: 1px solid #E8DFD0;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(90, 60, 10, 0.08);
  margin-top: 34px;
  overflow: hidden;
}

.wf-page-feature-image img {
  display: block;
  height: auto;
  min-height: clamp(180px, 28vw, 320px);
  object-fit: cover;
  width: 100%;
}

.wf-page-feature-image figcaption {
  background: rgba(250, 247, 242, 0.95);
  color: #8C7B68;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-transform: uppercase;
}

.wf-page-journey {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.wf-page-journey-step {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #E8DFD0;
  border-left: 4px solid var(--wf-gold);
  border-radius: 8px;
  padding: 24px 28px;
}

.wf-page-journey-step h3 {
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-heading);
  font-size: 22px;
  margin: 0 0 8px;
}

.wf-page-journey-step p {
  color: #4A3D2E;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.wf-page-band {
  background: linear-gradient(135deg, var(--wf-gold-light) 0%, var(--wf-gold-deep) 100%);
  color: #FFFFFF;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 80px);
}

.wf-page-band .wf-page-heading,
.wf-page-band .wf-page-text,
.wf-page-band .wf-page-kicker {
  color: #FFFFFF;
}

.wf-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.wf-page-button {
  border: 2px solid var(--wf-gold);
  color: var(--wf-gold-dark);
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
}

.wf-page-button--filled {
  background: var(--wf-gold);
  color: var(--wf-gold-dark);
}

.wf-page-note {
  background: #FFFFFF;
  border: 1px solid #E8DFD0;
  color: #8C7B68;
  font-size: 14px;
  line-height: 1.65;
  margin-top: 30px;
  padding: 18px 20px;
}

.wf-page-image-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.wf-page-image-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wf-page-image-card {
  background: #FFFFFF;
  border: 1px solid #E8DFD0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(90, 60, 10, 0.1);
  margin: 0;
  overflow: hidden;
}

.wf-page-image-card img {
  display: block;
  height: clamp(220px, 28vw, 340px);
  object-fit: cover;
  width: 100%;
}

.wf-page-image-card figcaption {
  color: var(--wf-gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.45;
  padding: 14px 16px;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .wf-page-grid,
  .wf-page-grid--two,
  .wf-page-image-grid,
  .wf-page-image-grid--two {
    grid-template-columns: 1fr;
  }
}

@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-color: #FAF7F2;
  background-image: radial-gradient(circle at 20% 20%, rgba(245, 240, 232, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(var(--wf-gold-rgb), 0.1) 0%, transparent 40%);
  padding: 80px 0;
}

.about-section-v1 .about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

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

.about-section-v1 .about-heading {
  font-family: var(--wf-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--wf-gold-dark);
  margin-bottom: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-section-v1 .about-heading em {
  font-family: var(--wf-font-heading);
  font-style: italic;
  color: var(--wf-gold);
  text-transform: none;
  font-weight: 500;
}

.about-section-v1 .about-intro,
.about-section-v1 .about-story,
.about-section-v1 .about-mission {
  font-family: var(--wf-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #4A3D2E;
  margin-bottom: 16px;
}

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

.about-section-v1 .about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(90, 60, 10, 0.18);
}

.about-section-v1 .about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid #E8DFD0;
}

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

.about-section-v1 .stat-number {
  display: block;
  font-family: var(--wf-font-heading);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--wf-gold);
  margin-bottom: 4px;
}

.about-section-v1 .stat-label {
  font-family: var(--wf-font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8C7B68;
}

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

@media (max-width: 480px) {
  .about-section-v1 .about-stats {
    grid-template-columns: 1fr;
  }
}

/* === services_v2.css === */
.services-section-v2 {
  background-color: #FFFFFF;
  border-top: 3px solid var(--wf-gold);
  padding: 80px 0;
}

.services-section-v2 .services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.services-section-v2 .services-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-section-v2 .services-heading {
  font-family: var(--wf-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--wf-gold-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.services-section-v2 .services-heading em {
  font-family: var(--wf-font-heading);
  font-style: italic;
  color: var(--wf-gold);
  text-transform: none;
  font-weight: 500;
}

.services-section-v2 .services-intro {
  font-family: var(--wf-font-body);
  font-size: 16px;
  color: #8C7B68;
  line-height: 1.6;
  margin-bottom: 0;
}

.services-section-v2 .services-bands {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.services-section-v2 .service-band {
  display: grid;
  grid-template-columns: 1fr 120px;
  min-height: 120px;
  align-items: center;
}

.services-section-v2 .service-band-right {
  grid-template-columns: 120px 1fr;
}

.services-section-v2 .service-content {
  padding: 32px;
  background: #FAF7F2;
}

.services-section-v2 .service-band-right .service-content {
  background: #F5F0E8;
}

.services-section-v2 .service-accent {
  background: linear-gradient(135deg, var(--wf-gold-light) 0%, var(--wf-gold) 100%);
  height: 100%;
  min-height: 120px;
}

.services-section-v2 .service-title {
  font-family: var(--wf-font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--wf-gold-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-section-v2 .service-description {
  font-family: var(--wf-font-body);
  font-size: 14px;
  color: #4A3D2E;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .services-section-v2 .service-band,
  .services-section-v2 .service-band-right {
    grid-template-columns: 1fr;
  }
  
  .services-section-v2 .service-accent {
    min-height: 60px;
    order: -1;
  }
  
  .services-section-v2 .service-content {
    padding: 24px;
  }
}

/* === gallery_v1.css === */
.gallery-section-v1 {
  background-color: #F5F0E8;
  background-image: radial-gradient(circle at 30% 20%, rgba(var(--wf-gold-rgb), 0.08) 0%, transparent 50%);
  padding: 80px 0;
}

.gallery-section-v1 .gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.gallery-section-v1 .gallery-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-section-v1 .gallery-heading {
  font-family: var(--wf-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--wf-gold-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.gallery-section-v1 .gallery-heading em {
  font-family: var(--wf-font-heading);
  font-style: italic;
  color: var(--wf-gold);
  text-transform: none;
  font-weight: 500;
}

.gallery-section-v1 .gallery-intro {
  font-family: var(--wf-font-body);
  font-size: 16px;
  color: #8C7B68;
  line-height: 1.6;
  margin-bottom: 0;
}

.gallery-section-v1 .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-section-v1 .gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-section-v1 .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(90, 60, 10, 0.10);
  transition: all 0.25s ease;
}

.gallery-section-v1 .gallery-item:hover {
  box-shadow: 0 8px 32px rgba(90, 60, 10, 0.18);
  transform: translateY(-2px);
}

.gallery-section-v1 .gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-section-v1 .gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-section-v1 .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 16px;
  font-family: var(--wf-font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-section-v1 .gallery-item:hover .image-caption {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery-section-v1 .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  
  .gallery-section-v1 .gallery-large,
  .gallery-section-v1 .gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.wf-contact-gallery.gallery-section-v1 {
  background: transparent;
  margin-top: 40px;
  padding: 0;
}

.wf-contact-gallery .gallery-container {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* === cta_v2.css === */
.cta-section-v2 {
  background: linear-gradient(135deg, var(--wf-gold-light) 0%, var(--wf-gold-deep) 100%);
  padding: 80px 0;
  position: relative;
}

.cta-section-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-section-v2 .cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
  position: relative;
  z-index: 2;
}

.cta-section-v2 .cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-section-v2 .cta-heading {
  font-family: var(--wf-font-heading);
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--wf-gold-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-shadow: none;
}

.cta-section-v2 .cta-heading em {
  font-family: var(--wf-font-heading);
  font-style: italic;
  color: var(--wf-gold-deep);
  text-transform: none;
  font-weight: 500;
}

.cta-section-v2 .cta-description {
  font-family: var(--wf-font-body);
  font-size: 16px;
  color: #4A3D2E;
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-section-v2 .cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-section-v2 .cta-button {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 4px;
  font-family: var(--wf-font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 2px solid var(--wf-gold-dark);
}

.cta-section-v2 .cta-primary {
  background: var(--wf-gold-dark);
  color: #FFFFFF;
}

.cta-section-v2 .cta-primary:hover {
  background: transparent;
  color: var(--wf-gold-dark);
  box-shadow: 0 6px 24px rgba(var(--wf-gold-rgb), 0.25);
}

.cta-section-v2 .cta-secondary {
  background: transparent;
  color: var(--wf-gold-dark);
}

.cta-section-v2 .cta-secondary:hover {
  background: rgba(var(--wf-gold-rgb), 0.2);
}

.cta-section-v2 .cta-trust-panel {
  background: rgba(255, 255, 255, 0.55);
  padding: 32px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
}

.cta-section-v2 .trust-title {
  font-family: var(--wf-font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--wf-gold-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.cta-section-v2 .trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-section-v2 .trust-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.cta-section-v2 .trust-text {
  font-family: var(--wf-font-body);
  font-size: 14px;
  color: #4A3D2E;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .cta-section-v2 .cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .cta-section-v2 .cta-actions {
    flex-direction: column;
  }
}

/* === footer_v3.css === */
.footer-section-v3 {
  background-color: #F2EDE5;
  background-image: radial-gradient(circle at 70% 30%, rgba(var(--wf-gold-rgb), 0.12) 0%, transparent 50%);
  padding: 64px 0 24px;
}

.footer-section-v3 .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 80px);
}

.footer-section-v3 .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E8DFD0;
}

.footer-section-v3 .brand-name {
  font-family: var(--wf-font-heading);
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--wf-gold-dark);
  margin-bottom: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-section-v3 .brand-subtitle {
  font-family: var(--wf-font-body);
  font-size: 13px;
  color: #8C7B68;
  margin: 0;
  font-weight: 600;
}

.footer-section-v3 .footer-contact-quick {
  display: flex;
  gap: 12px;
}

.footer-section-v3 .contact-button {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--wf-gold);
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-section-v3 .contact-button:hover {
  background: var(--wf-gold);
  color: var(--wf-gold-dark);
}

.footer-section-v3 .footer-middle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 40px 48px;
  margin-bottom: 32px;
  align-items: start;
}

.footer-section-v3 .footer-description p {
  font-family: var(--wf-font-body);
  font-size: 14px;
  color: #4A3D2E;
  line-height: 1.6;
  margin: 0;
}

.footer-section-v3 .footer-quick-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.footer-section-v3 .quick-link-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.footer-section-v3 .group-label {
  font-family: var(--wf-font-body);
  font-size: 11px;
  font-weight: 700;
  color: #8C7B68;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-width: unset;
}

.footer-section-v3 .quick-link {
  font-family: var(--wf-font-body);
  font-size: 13px;
  color: #4A3D2E;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer-section-v3 .quick-link:hover {
  color: var(--wf-gold);
}

.footer-section-v3 .quick-link:not(:last-child)::after {
  content: '•';
  margin-left: 8px;
  color: #E8DFD0;
}

.footer-section-v3 .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #E8DFD0;
}

.footer-section-v3 .location-info,
.footer-section-v3 .copyright-line {
  font-family: var(--wf-font-body);
  font-size: 11px;
  color: #8C7B68;
  margin: 0;
  line-height: 1.4;
}

.footer-section-v3 .copyright-line {
  margin-top: 4px;
}

.footer-section-v3 .footer-credit {
  font-family: var(--wf-font-body);
  font-size: 11px;
  color: #8C7B68;
  margin: 6px 0 0;
  line-height: 1.4;
}

.footer-section-v3 .footer-credit a {
  color: #8C7B68;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section-v3 .footer-credit a:hover {
  color: var(--wf-gold-dark);
  text-decoration: underline;
}

.footer-section-v3 .footer-social-minimal {
  display: flex;
  gap: 8px;
}

.footer-section-v3 .social-minimal {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(var(--wf-gold-rgb), 0.18);
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-body);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.footer-section-v3 .social-minimal:hover {
  background: var(--wf-gold);
  color: var(--wf-gold-dark);
}

@media (max-width: 768px) {
  .footer-section-v3 .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-section-v3 .footer-contact-quick {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-section-v3 .footer-middle {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  
  .footer-section-v3 .footer-quick-links {
    grid-template-columns: 1fr;
  }

  .footer-section-v3 .quick-link-group {
    align-items: center;
  }
  
  .footer-section-v3 .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === cookie consent banner === */
.sfb-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sfb-cookie-banner--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.sfb-cookie-banner__inner {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid #E8DFD0;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(90, 60, 10, 0.16);
}

.sfb-cookie-banner__kicker {
  margin: 0 0 8px;
  color: var(--wf-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sfb-cookie-banner__text {
  margin: 0;
  color: #4A3D2E;
  font-family: var(--wf-font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.sfb-cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.sfb-cookie-banner__btn {
  appearance: none;
  cursor: pointer;
  border: 2px solid var(--wf-gold);
  background: transparent;
  color: var(--wf-gold-dark);
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 22px;
  transition: background 0.2s ease, color 0.2s ease;
}

.sfb-cookie-banner__btn--filled {
  background: var(--wf-gold);
  color: var(--wf-gold-dark);
}

.sfb-cookie-banner__btn:hover {
  background: var(--wf-gold);
  color: var(--wf-gold-dark);
}

.sfb-cookie-banner__btn--ghost:hover {
  background: rgba(var(--wf-gold-rgb), 0.28);
}

@media (max-width: 768px) {
  .sfb-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 20px;
  }

  .sfb-cookie-banner__actions {
    justify-content: center;
  }
}
