/* ==========================================================================
   Beamers Home & Garden Maintenance — site design system
   --------------------------------------------------------------------------
   Use this stylesheet so new pages match the assembled site exactly.

   Required fonts (load before or via the @import below):
     Cormorant Garamond (700, 800), Lato (400, 500, 600, 700), Dancing Script (400)

   Typical page head:
     <link rel="stylesheet" href="/beamers.css" />

   Asset paths assume document root with /input/ media and /beamers.css.
   Override backgrounds if needed:
     :root { --beamers-hero-image: url("/input/hero_reference.jpg"); }
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700;800&family=Dancing+Script:wght@400;500&family=Lato:wght@400;500;600;700&display=swap");

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --beamers-green-900: #0f2612;
  --beamers-green-800: #1a2a1a;
  --beamers-green-700: #1a3a1a;
  --beamers-green-650: #1a3d1f;
  --beamers-green-600: #1a4a1a;
  --beamers-green-500: #2a5a2a;
  --beamers-green-400: #4a8a2a;

  --beamers-gold-700: #c8860a;
  --beamers-gold-600: #c8972a;
  --beamers-gold-500: #c8a96a;
  --beamers-gold-400: #e0b84a;

  --beamers-cream-100: #faf8f3;
  --beamers-cream-200: #f5f0e0;
  --beamers-cream-card: rgba(245, 240, 225, 0.90);
  --beamers-cream-badge: rgba(245, 240, 225, 0.88);

  --beamers-ink: #2c2c2c;
  --beamers-ink-strong: #2a2a2a;
  --beamers-muted: #5a5a5a;
  --beamers-nav-link: #e8e8e8;
  --beamers-white: #ffffff;

  /* Typography */
  --beamers-font-display: "Cormorant Garamond", Georgia, serif;
  --beamers-font-body: "Lato", sans-serif;
  --beamers-font-script: "Dancing Script", cursive;
  --beamers-font-ui: "Segoe UI", Arial, sans-serif;
  --beamers-font-serif-italic: Georgia, "Times New Roman", serif;

  /* Layout */
  --beamers-max-width: 1280px;
  --beamers-gutter: 40px;
  --beamers-gutter-sm: 16px;
  --beamers-section-y: 80px;
  --beamers-radius-sm: 6px;
  --beamers-radius-md: 8px;
  --beamers-radius-lg: 10px;
  --beamers-radius-xl: 12px;
  --beamers-radius-2xl: 16px;
  --beamers-radius-3xl: 20px;

  /* Assets */
  --beamers-hero-image: url("/input/hero_reference.jpg");

  /* Shadows */
  --beamers-shadow-logo: 0 2px 12px rgba(0, 0, 0, 0.15);
  --beamers-shadow-card: 0 4px 32px rgba(0, 0, 0, 0.18);
  --beamers-shadow-badge: 0 2px 16px rgba(0, 0, 0, 0.13);
  --beamers-shadow-image: 0 8px 40px rgba(15, 38, 18, 0.18);
  --beamers-shadow-gallery: 0 12px 48px rgba(15, 38, 18, 0.20);
  --beamers-shadow-thumb: 0 6px 24px rgba(15, 38, 18, 0.15);
  --beamers-shadow-cta: 0 4px 16px rgba(200, 151, 42, 0.35);
  --beamers-shadow-cta-hover: 0 8px 24px rgba(200, 151, 42, 0.45);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  margin: 0;
  overscroll-behavior: none;
  font-family: var(--beamers-font-body);
  color: var(--beamers-ink);
  background: var(--beamers-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-preview-root,
.beamers-site {
  display: block;
  min-height: auto;
  background: var(--beamers-white);
}

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

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

/* --------------------------------------------------------------------------
   Shared page primitives (for new matching pages)
   -------------------------------------------------------------------------- */
.beamers-container {
  max-width: var(--beamers-max-width);
  margin: 0 auto;
  padding: 0 var(--beamers-gutter);
}

.beamers-section {
  padding: var(--beamers-section-y) 0;
}

.beamers-h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-green-650);
  margin: 0 0 24px 0;
}

.beamers-lead {
  font-family: var(--beamers-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--beamers-ink);
  margin: 0;
}

.beamers-script {
  font-family: var(--beamers-font-script);
  font-size: 28px;
  color: var(--beamers-gold-600);
  margin: 0;
  font-style: italic;
}

.beamers-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--beamers-radius-md);
  font-family: var(--beamers-font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  min-width: 200px;
  text-align: center;
  box-sizing: border-box;
}

.beamers-btn--primary {
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
  padding: 16px 40px;
  border: 2px solid var(--beamers-gold-600);
  box-shadow: var(--beamers-shadow-cta);
}

.beamers-btn--primary:hover {
  background: var(--beamers-gold-400);
  border-color: var(--beamers-gold-400);
  box-shadow: var(--beamers-shadow-cta-hover);
}

.beamers-btn--secondary {
  background: transparent;
  color: var(--beamers-gold-600);
  padding: 14px 36px;
  border: 2px solid var(--beamers-gold-600);
}

.beamers-btn--secondary:hover {
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
}

.beamers-btn--dark {
  background: var(--beamers-green-700);
  color: var(--beamers-white);
  padding: 16px 24px;
  border: 2px solid var(--beamers-green-700);
  border-radius: var(--beamers-radius-sm);
  font-size: 1.08rem;
  letter-spacing: 0.06em;
}

.beamers-btn--dark:hover {
  background: var(--beamers-green-500);
  border-color: var(--beamers-green-500);
}

.section-page-cta {
  margin-top: 40px;
  text-align: center;
}

.section-page-cta .beamers-btn {
  min-width: 220px;
}

@media (max-width: 768px) {
  .section-page-cta .beamers-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .beamers-container {
    padding: 0 var(--beamers-gutter-sm);
  }

  .beamers-h2 {
    font-size: 36px;
  }
}

/* --------------------------------------------------------------------------
   Preview / assembly helpers (safe to keep on production pages)
   -------------------------------------------------------------------------- */
.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;
}

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

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

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

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.wf-hero {
  font-family: var(--beamers-font-ui);
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
}

.wf-hero__nav {
  background-color: var(--beamers-green-700);
  width: 100%;
  position: relative;
  z-index: 10050;
  padding: 0;
}

.wf-hero__nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 54px;
  padding: 0 16px;
  position: relative;
  z-index: 10052;
}

.wf-hero__nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 10053;
}

.wf-hero__nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
  font-family: var(--beamers-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--beamers-radius-md);
  border: 2px solid var(--beamers-gold-600);
  box-shadow: var(--beamers-shadow-cta);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.wf-hero__nav-cta:hover {
  background: var(--beamers-gold-400);
  border-color: var(--beamers-gold-400);
  box-shadow: var(--beamers-shadow-cta-hover);
}

.wf-hero__nav-cta--active {
  background: var(--beamers-gold-400);
  border-color: var(--beamers-gold-400);
}

.wf-hero__nav-cta:focus-visible {
  outline: 2px solid var(--beamers-white);
  outline-offset: 2px;
}

.wf-hero__nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10053;
  text-decoration: none;
  line-height: 0;
}

.wf-hero__nav-logo {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--beamers-cream-200);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.wf-hero__menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  color: var(--beamers-white);
  border-radius: 8px;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}

.wf-hero__menu-toggle:focus-visible {
  outline: 2px solid var(--beamers-gold-600);
  outline-offset: 3px;
}

.wf-hero__menu-toggle-box {
  display: block;
  width: 22px;
  height: 16px;
  position: relative;
}

.wf-hero__menu-toggle-line {
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    top 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.wf-hero__menu-toggle-line:nth-child(1) { top: 0; }
.wf-hero__menu-toggle-line:nth-child(2) { top: 7px; }
.wf-hero__menu-toggle-line:nth-child(3) { top: 14px; }

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

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

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

.wf-hero__nav-list {
  list-style: none;
  margin: 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.wf-hero__nav-link {
  display: block;
  color: var(--beamers-nav-link);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 16px 22px;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.wf-hero__nav-link:hover {
  color: var(--beamers-white);
}

.wf-hero__nav-link--active {
  color: var(--beamers-white);
  font-weight: 600;
}

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

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

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

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

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

.wf-hero__content-wrap {
  position: relative;
  z-index: 10;
  padding: 40px 40px 30px 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.wf-hero__card {
  background: var(--beamers-cream-card);
  border-radius: var(--beamers-radius-lg);
  padding: 30px 38px 28px 38px;
  max-width: 500px;
  width: 100%;
  box-shadow: var(--beamers-shadow-card);
  position: relative;
  padding-top: 90px;
}

.wf-hero__logo-wrap {
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.wf-hero__logo {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--beamers-shadow-logo);
  background: var(--beamers-cream-200);
}

.wf-hero__welcome {
  font-family: var(--beamers-font-serif-italic);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--beamers-gold-700);
  margin: 0 0 4px 0;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}

.wf-hero__headline {
  font-family: var(--beamers-font-ui);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--beamers-green-700);
  margin: 0 0 14px 0;
  line-height: 1.18;
  letter-spacing: -0.01em;
  text-align: center;
}

.wf-hero__desc {
  font-size: 0.97rem;
  color: var(--beamers-ink-strong);
  margin: 0 0 22px 0;
  line-height: 1.6;
  text-align: center;
}

.wf-hero__cta {
  display: block;
  background: var(--beamers-green-700);
  color: var(--beamers-white);
  text-align: center;
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border-radius: var(--beamers-radius-sm);
  margin-bottom: 14px;
  border: 2px solid var(--beamers-green-700);
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

.wf-hero__cta:hover {
  background: var(--beamers-green-500);
  border-color: var(--beamers-green-500);
}

.wf-hero__phone {
  text-align: center;
  font-size: 0.93rem;
  color: var(--beamers-ink-strong);
  margin: 0;
}

.wf-hero__phone-link {
  color: var(--beamers-green-700);
  font-weight: 700;
  text-decoration: none;
}

.wf-hero__phone-link:hover {
  text-decoration: underline;
}

.wf-hero__badges {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--beamers-cream-badge);
  margin: 0 auto 30px auto;
  padding: 18px 48px;
  border-radius: var(--beamers-radius-xl);
  max-width: 580px;
  width: auto;
  box-shadow: var(--beamers-shadow-badge);
}

.wf-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.wf-hero__badge-text {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--beamers-green-800);
  white-space: nowrap;
}

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

@media (max-width: 640px) {
  .wf-hero__content-wrap {
    padding: 24px 16px 28px;
    justify-content: center;
    align-items: flex-end;
  }
  .wf-hero__card {
    padding: 90px 20px 22px 20px;
    max-width: 100%;
  }
  .wf-hero__headline {
    font-size: 1.55rem;
  }
  .wf-hero__badges {
    display: none;
  }
}

/* Mobile hamburger + fullscreen overlay menu */
@media (max-width: 860px) {
  .wf-hero {
    padding-top: 56px;
  }

  .wf-hero__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10050;
  }

  .wf-hero__nav-bar {
    justify-content: space-between;
    min-height: 56px;
    padding: 0 12px;
  }

  .wf-hero__nav-logo {
    width: 36px;
    height: 36px;
  }

  .wf-hero__menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10053;
  }

  .wf-hero__nav-list {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: translateY(-12px) scale(0.985);
    inset: 0;
    z-index: 10051;
    margin: 0;
    padding: max(88px, calc(env(safe-area-inset-top, 0px) + 72px)) 28px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    background:
      radial-gradient(ellipse at top right, rgba(200, 151, 42, 0.16), transparent 42%),
      linear-gradient(165deg, #1a3d1f 0%, #0f2612 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.38s;
  }

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

  .wf-hero__nav-list li {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .wf-hero__nav.is-open .wf-hero__nav-list li {
    opacity: 1;
    transform: none;
  }

  .wf-hero__nav.is-open .wf-hero__nav-list li:nth-child(1) { transition-delay: 0.06s; }
  .wf-hero__nav.is-open .wf-hero__nav-list li:nth-child(2) { transition-delay: 0.11s; }
  .wf-hero__nav.is-open .wf-hero__nav-list li:nth-child(3) { transition-delay: 0.16s; }
  .wf-hero__nav.is-open .wf-hero__nav-list li:nth-child(4) { transition-delay: 0.21s; }
  .wf-hero__nav.is-open .wf-hero__nav-list li:nth-child(5) { transition-delay: 0.26s; }

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

  .wf-hero__nav-link {
    font-family: var(--beamers-font-display);
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.88);
    padding: 14px 8px;
    border-bottom: 1px solid rgba(200, 151, 42, 0.18);
  }

  .wf-hero__nav-link:hover,
  .wf-hero__nav-link:focus-visible {
    color: var(--beamers-gold-400);
  }

  .wf-hero__nav-link--active {
    color: var(--beamers-gold-600);
    font-weight: 800;
  }
}

@media (max-width: 860px) and (prefers-reduced-motion: reduce) {
  .wf-hero__menu-toggle-line,
  .wf-hero__nav-list,
  .wf-hero__nav-list li {
    transition: none;
  }

  .wf-hero__nav-list {
    transform: none;
  }

  .wf-hero__nav-list li {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */


/* Non-hero pages: clear fixed mobile nav */
@media (max-width: 860px) {
  .beamers-site:not(:has(.wf-hero)) {
    padding-top: 56px;
  }
}

/* About v2 — centred story, cream ground, wide image */
.about-section-v2 {
  background: var(--beamers-cream-100);
  padding: var(--beamers-section-y) 0;
}

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

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

.about-section-v2 h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-green-650);
  margin: 0 0 16px 0;
}

.about-section-v2 .about-script {
  font-family: var(--beamers-font-script);
  font-size: 28px;
  color: var(--beamers-gold-600);
  margin: 0 0 24px 0;
  font-style: italic;
}

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

.about-section-v2 .about-image {
  margin: 0 auto 48px;
  max-width: 960px;
}

.about-section-v2 .about-image img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--beamers-radius-3xl);
  box-shadow: var(--beamers-shadow-gallery);
}

.about-section-v2 .about-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

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

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

.about-section-v2 .about-areas {
  background: var(--beamers-white);
  border-left: 4px solid var(--beamers-gold-600);
  padding: 28px 28px 28px 32px;
  border-radius: 0 var(--beamers-radius-lg) var(--beamers-radius-lg) 0;
  box-shadow: var(--beamers-shadow-badge);
}

.about-section-v2 .about-areas h3 {
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--beamers-green-650);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.about-section-v2 .about-areas p {
  font-family: var(--beamers-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--beamers-ink);
  margin: 0;
}

.about-section-v2 .about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 151, 42, 0.28);
}

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

.about-section-v2 .stat-number {
  display: block;
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--beamers-green-650);
  line-height: 1;
}

.about-section-v2 .stat-label {
  display: block;
  font-family: var(--beamers-font-body);
  font-size: 14px;
  color: var(--beamers-muted);
  font-weight: 500;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .about-section-v2 .about-container {
    padding: 0 var(--beamers-gutter-sm);
  }

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

  .about-section-v2 .about-image img {
    height: 280px;
    border-radius: var(--beamers-radius-2xl);
  }

  .about-section-v2 .about-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-section-v2 .about-stats {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 40px;
    padding-top: 32px;
  }
}


/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */

.services-section-v3 {
  background: var(--beamers-cream-100);
  padding: var(--beamers-section-y) 0;
}

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

.services-section-v3 .services-header {
  max-width: 720px;
  margin: 0 0 56px 0;
}

.services-section-v3 h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-green-650);
  margin: 0 0 16px 0;
}

.services-section-v3 .services-script {
  font-family: var(--beamers-font-script);
  font-size: 26px;
  color: var(--beamers-gold-600);
  margin: 0 0 20px 0;
  font-style: italic;
}

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

.services-section-v3 .services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-section-v3 .services-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid rgba(200, 151, 42, 0.28);
}

.services-section-v3 .services-list li:last-child {
  border-bottom: 1px solid rgba(200, 151, 42, 0.28);
}

.services-section-v3 .service-num {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  color: var(--beamers-gold-600);
}

.services-section-v3 .service-copy h3 {
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--beamers-green-650);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.services-section-v3 .service-copy p {
  font-family: var(--beamers-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--beamers-ink);
  margin: 0;
  max-width: 720px;
}

@media (max-width: 768px) {
  .services-section-v3 .services-container {
    padding: 0 var(--beamers-gutter-sm);
  }

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

  .services-section-v3 .services-list li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .services-section-v3 .service-num {
    font-size: 32px;
  }

  .services-section-v3 .service-copy h3 {
    font-size: 24px;
  }
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-section-v1 {
  background: var(--beamers-cream-100);
  padding: var(--beamers-section-y) 0;
}

.gallery-section-v1 .gallery-container {
  max-width: var(--beamers-max-width);
  margin: 0 auto;
  padding: 0 var(--beamers-gutter);
}

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

.gallery-section-v1 h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-green-650);
  margin: 0 0 16px 0;
}

.gallery-section-v1 .gallery-script {
  font-family: var(--beamers-font-script);
  font-size: 26px;
  color: var(--beamers-gold-600);
  margin: 0 0 20px 0;
  font-style: italic;
}

.gallery-section-v1 .gallery-intro {
  font-family: var(--beamers-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--beamers-ink);
  margin: 0 auto;
  max-width: 680px;
}

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

.gallery-section-v1 .mosaic-item {
  margin: 0;
}

.gallery-section-v1 .mosaic-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--beamers-radius-2xl);
  box-shadow: var(--beamers-shadow-thumb);
  transition: transform 0.3s ease;
}

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

.gallery-section-v1 .mosaic-item figcaption {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--beamers-green-650);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

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

@media (max-width: 768px) {
  .gallery-section-v1 .gallery-container {
    padding: 0 var(--beamers-gutter-sm);
  }

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

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

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


/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.cta-section-v1 {
  background: linear-gradient(135deg, var(--beamers-green-650) 0%, var(--beamers-green-900) 100%);
  padding: var(--beamers-section-y) 0;
}

.cta-section-v1 .cta-container {
  max-width: var(--beamers-max-width);
  margin: 0 auto;
  padding: 0 var(--beamers-gutter);
}

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

.cta-section-v1 h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-white);
  margin: 0 0 24px 0;
}

.cta-section-v1 p {
  font-family: var(--beamers-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--beamers-white);
  margin: 0 0 40px 0;
  opacity: 0.9;
}

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

.cta-section-v1 .cta-button {
  display: inline-block;
  text-decoration: none;
  border-radius: var(--beamers-radius-md);
  font-family: var(--beamers-font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  min-width: 200px;
  text-align: center;
}

.cta-section-v1 .cta-button.primary {
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
  padding: 16px 40px;
  border: 2px solid var(--beamers-gold-600);
  box-shadow: var(--beamers-shadow-cta);
}

.cta-section-v1 .cta-button.primary:hover {
  background: var(--beamers-gold-400);
  border-color: var(--beamers-gold-400);
  box-shadow: var(--beamers-shadow-cta-hover);
}

.cta-section-v1 .cta-button.secondary {
  background: transparent;
  color: var(--beamers-gold-600);
  padding: 14px 36px;
  border: 2px solid var(--beamers-gold-600);
}

.cta-section-v1 .cta-button.secondary:hover {
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
}

.cta-section-v1 .trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-section-v1 .badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-section-v1 .badge-icon {
  color: var(--beamers-gold-600);
  font-weight: 600;
  font-size: 16px;
}

.cta-section-v1 .badge-text {
  color: var(--beamers-white);
  font-family: var(--beamers-font-body);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .cta-section-v1 .cta-container {
    padding: 0 var(--beamers-gutter-sm);
  }

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

  .cta-section-v1 .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section-v1 .trust-badges {
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-section-v3 {
  background: var(--beamers-white);
  padding: var(--beamers-section-y) 0;
}

.contact-section-v3 .contact-container {
  max-width: var(--beamers-max-width);
  margin: 0 auto;
  padding: 0 var(--beamers-gutter);
}

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

.contact-section-v3 h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-green-650);
  margin: 0 0 16px 0;
}

.contact-section-v3 .contact-script {
  font-family: var(--beamers-font-script);
  font-size: 26px;
  color: var(--beamers-gold-600);
  margin: 0 0 20px 0;
  font-style: italic;
}

.contact-section-v3 .contact-header p {
  font-family: var(--beamers-font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--beamers-ink);
  margin: 0;
}

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

.contact-section-v3 .contact-col {
  text-align: center;
  padding: 0 12px;
}

.contact-section-v3 .contact-col-label {
  display: block;
  font-family: var(--beamers-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--beamers-gold-600);
  margin-bottom: 12px;
}

.contact-section-v3 .contact-col h3 {
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--beamers-green-650);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.contact-section-v3 .contact-col h3 a {
  color: inherit;
  text-decoration: none;
}

.contact-section-v3 .contact-col h3 a:hover {
  color: var(--beamers-gold-700);
}

.contact-section-v3 .contact-col p {
  font-family: var(--beamers-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--beamers-muted);
  margin: 0;
}

.contact-section-v3 .contact-col-whatsapp {
  margin-top: 12px;
}

.contact-section-v3 .contact-col-whatsapp a {
  color: var(--beamers-green-650);
  font-weight: 700;
  text-decoration: none;
}

.contact-section-v3 .contact-col-whatsapp a:hover {
  color: var(--beamers-gold-700);
  text-decoration: underline;
}

.contact-section-v3 .contact-col-address {
  font-family: var(--beamers-font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--beamers-muted);
  font-style: normal;
  margin: 0;
}

.contact-section-v3 .contact-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section-v3 .contact-btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--beamers-font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  min-width: 220px;
  padding: 16px 32px;
  border-radius: var(--beamers-radius-md);
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.contact-section-v3 .contact-btn--primary {
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
  border: 2px solid var(--beamers-gold-600);
  box-shadow: var(--beamers-shadow-cta);
}

.contact-section-v3 .contact-btn--primary:hover {
  background: var(--beamers-gold-400);
  border-color: var(--beamers-gold-400);
  box-shadow: var(--beamers-shadow-cta-hover);
}

.contact-section-v3 .contact-btn--secondary {
  background: transparent;
  color: var(--beamers-green-650);
  border: 2px solid var(--beamers-green-650);
}

.contact-section-v3 .contact-btn--secondary:hover {
  background: var(--beamers-green-650);
  color: var(--beamers-white);
}

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

@media (max-width: 768px) {
  .contact-section-v3 .contact-container {
    padding: 0 var(--beamers-gutter-sm);
  }

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

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

  .contact-section-v3 .contact-columns {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }

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

  .contact-section-v3 .contact-btn {
    min-width: 0;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonials-section-v1 {
  background: var(--beamers-cream-100);
  padding: var(--beamers-section-y) 0;
}

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

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

.testimonials-section-v1 h2 {
  font-family: var(--beamers-font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.1;
  color: var(--beamers-green-650);
  margin: 0 0 16px 0;
}

.testimonials-section-v1 .testimonials-script {
  font-family: var(--beamers-font-script);
  font-size: 26px;
  color: var(--beamers-gold-600);
  margin: 0;
  font-style: italic;
}

.testimonials-section-v1 .testimonial-featured {
  max-width: 840px;
  margin: 0 auto 56px;
  text-align: center;
}

.testimonials-section-v1 .testimonial-featured blockquote {
  margin: 0 0 24px 0;
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  color: var(--beamers-green-650);
}

.testimonials-section-v1 .testimonial-featured cite {
  font-family: var(--beamers-font-body);
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  color: var(--beamers-muted);
  letter-spacing: 0.04em;
}

.testimonials-section-v1 .testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 151, 42, 0.28);
}

.testimonials-section-v1 .testimonial-mini blockquote {
  margin: 0 0 16px 0;
  font-family: var(--beamers-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--beamers-ink);
}

.testimonials-section-v1 .testimonial-mini cite {
  font-family: var(--beamers-font-body);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--beamers-gold-600);
}

@media (max-width: 768px) {
  .testimonials-section-v1 .testimonials-container {
    padding: 0 var(--beamers-gutter-sm);
  }

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

  .testimonials-section-v1 .testimonial-featured blockquote {
    font-size: 26px;
  }

  .testimonials-section-v1 .testimonials-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-section-v1 {
  background: var(--beamers-green-900);
  padding: 64px 0 32px 0;
}

.footer-section-v1 .footer-container {
  max-width: var(--beamers-max-width);
  margin: 0 auto;
  padding: 0 var(--beamers-gutter);
}

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

.footer-section-v1 h3 {
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--beamers-white);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.footer-section-v1 h4 {
  font-family: var(--beamers-font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--beamers-gold-600);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section-v1 .footer-brand p {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-section-v1 .contact-item {
  margin-bottom: 12px;
}

.footer-section-v1 .contact-label {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  display: inline-block;
  width: 100px;
}

.footer-section-v1 .contact-link {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  color: var(--beamers-gold-600);
  text-decoration: none;
  font-weight: 600;
}

.footer-section-v1 .contact-link:hover {
  color: var(--beamers-gold-400);
}

.footer-section-v1 .contact-text {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section-v1 li a {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section-v1 li a:hover {
  color: var(--beamers-gold-600);
}

.footer-section-v1 .footer-bottom {
  border-top: 1px solid rgba(200, 151, 42, 0.3);
  padding-top: 24px;
  text-align: center;
}

.footer-section-v1 .footer-bottom p {
  font-family: var(--beamers-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 8px 0;
}

.footer-section-v1 .footer-tagline {
  font-family: var(--beamers-font-script);
  font-size: 14px;
  color: var(--beamers-gold-600);
  font-style: italic;
}

.footer-section-v1 .footer-credit {
  margin-bottom: 0;
}

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

.footer-section-v1 .footer-credit a:hover {
  color: var(--beamers-gold-600);
}

.footer-section-v1 .footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 8px 0;
}

.footer-section-v1 .footer-legal-btn {
  font-family: var(--beamers-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.footer-section-v1 .footer-legal-btn:hover {
  color: var(--beamers-gold-600);
}

.footer-section-v1 .footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  user-select: none;
}

@media (max-width: 768px) {
  .footer-section-v1 .footer-container {
    padding: 0 var(--beamers-gutter-sm);
  }

  .footer-section-v1 .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


/* --------------------------------------------------------------------------
   Legal modals (Terms & Privacy)
   -------------------------------------------------------------------------- */
body.beamers-modal-open {
  overflow: hidden;
}

.beamers-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}

.beamers-modal[hidden] {
  display: none;
}

.beamers-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 38, 18, 0.78);
  border: none;
  cursor: pointer;
}

.beamers-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: min(85vh, 720px);
}

.beamers-modal__panel {
  background: var(--beamers-cream-100);
  border-radius: var(--beamers-radius-lg);
  box-shadow: var(--beamers-shadow-card);
  border: 1px solid rgba(200, 151, 42, 0.25);
  display: flex;
  flex-direction: column;
  max-height: min(85vh, 720px);
  overflow: hidden;
}

.beamers-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 0 28px;
  border-bottom: 1px solid rgba(200, 151, 42, 0.2);
  padding-bottom: 20px;
  margin-bottom: 0;
}

.beamers-modal__title {
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--beamers-green-800);
  margin: 0;
}

.beamers-modal__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(200, 151, 42, 0.35);
  border-radius: var(--beamers-radius-sm);
  background: transparent;
  color: var(--beamers-gold-700);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.beamers-modal__close:hover {
  background: var(--beamers-gold-600);
  border-color: var(--beamers-gold-600);
  color: var(--beamers-white);
}

.beamers-modal__body {
  overflow-y: auto;
  padding: 24px 28px;
  flex: 1;
}

.beamers-modal__body h3 {
  font-family: var(--beamers-font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--beamers-gold-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 24px 0 8px 0;
}

.beamers-modal__body h3:first-child {
  margin-top: 0;
}

.beamers-modal__body p {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--beamers-muted);
  margin: 0 0 12px 0;
}

.beamers-modal__body p:last-child {
  margin-bottom: 0;
}

.beamers-modal__body a {
  color: var(--beamers-gold-700);
  font-weight: 600;
  text-decoration: none;
}

.beamers-modal__body a:hover {
  color: var(--beamers-gold-600);
  text-decoration: underline;
}

.beamers-modal__footer {
  padding: 16px 28px 24px 28px;
  border-top: 1px solid rgba(200, 151, 42, 0.2);
  text-align: center;
}

.beamers-modal__footer .beamers-btn {
  min-width: 140px;
  padding: 12px 28px;
  font-size: 13px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .beamers-modal__header,
  .beamers-modal__body,
  .beamers-modal__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .beamers-modal__title {
    font-size: 24px;
  }
}


/* --------------------------------------------------------------------------
   Cookie consent banner
   -------------------------------------------------------------------------- */
.beamers-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  padding: 16px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.beamers-cookie.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.beamers-cookie[hidden] {
  display: none;
}

.beamers-cookie__panel {
  max-width: 720px;
  margin: 0 auto;
  background: var(--beamers-cream-100);
  border: 1px solid rgba(200, 151, 42, 0.35);
  border-radius: var(--beamers-radius-lg);
  box-shadow: var(--beamers-shadow-card);
  padding: 24px 28px;
}

.beamers-cookie__title {
  font-family: var(--beamers-font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--beamers-green-800);
  margin: 0 0 10px 0;
}

.beamers-cookie__text {
  font-family: var(--beamers-font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--beamers-muted);
  margin: 0 0 20px 0;
}

.beamers-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.beamers-cookie__accept {
  display: inline-block;
  border: 2px solid var(--beamers-gold-600);
  border-radius: var(--beamers-radius-md);
  background: var(--beamers-gold-600);
  color: var(--beamers-white);
  font-family: var(--beamers-font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: var(--beamers-shadow-cta);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.beamers-cookie__accept:hover {
  background: var(--beamers-gold-400);
  border-color: var(--beamers-gold-400);
  box-shadow: var(--beamers-shadow-cta-hover);
}

.beamers-cookie__decline {
  border: none;
  background: none;
  color: var(--beamers-muted);
  font-family: var(--beamers-font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.beamers-cookie__decline:hover {
  color: var(--beamers-green-700);
}

@media (max-width: 640px) {
  .beamers-cookie {
    padding: 12px;
  }

  .beamers-cookie__panel {
    padding: 20px;
  }

  .beamers-cookie__accept,
  .beamers-cookie__decline {
    width: 100%;
    text-align: center;
  }
}


/* --------------------------------------------------------------------------
   Floating WhatsApp button
   -------------------------------------------------------------------------- */
.beamers-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1090;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--beamers-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.beamers-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.beamers-whatsapp:focus-visible {
  outline: 2px solid var(--beamers-gold-600);
  outline-offset: 3px;
}

.beamers-whatsapp svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .beamers-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .beamers-whatsapp svg {
    width: 28px;
    height: 28px;
  }
}
