    /* ================================
       ACCESSIBILITY UTILITIES
       ================================ */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Visible keyboard-focus indicator (2.4.11). Mouse clicks don't trigger
       :focus-visible, so this only shows for keyboard/AT users. */
    :focus-visible {
      outline: 3px solid var(--accent-text);
      outline-offset: 3px;
      border-radius: 2px;
    }
    /* Inputs set outline:none at higher specificity — restore a ring for them. */
    .contact__field input:focus-visible,
    .contact__field select:focus-visible,
    .contact__field textarea:focus-visible {
      outline: 3px solid var(--accent-text);
      outline-offset: 2px;
    }

    /* Respect reduced-motion: drop reveal/scroll/ken-burns animations (2.3.3). */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .reveal {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ================================
       COLOR TOKENS — tweak here only
       ================================ */
    :root {
      color-scheme: light dark;
      --bg:               hsl(210, 22%, 7%);
      --bg-section:       hsl(210, 18%, 10%);
      --bg-card:          hsl(210, 16%, 13%);
      --bg-card-hover:    hsl(210, 16%, 16%);
      --border:           hsl(210, 14%, 20%);

      --accent:           hsl(47, 100%, 45%);
      --accent-light:     hsl(47, 100%, 65%);
      --accent-dim:       hsl(47, 100%, 18%);
      /* accent used as TEXT — gold reads fine on dark surfaces (8:1+).
         In light mode this is overridden to a dark amber that passes 4.5:1. */
      --accent-text:      hsl(47, 100%, 45%);
      /* ghost-button border — needs 3:1 non-text contrast (1.4.11). */
      --ghost-border:     hsl(210, 14%, 45%);

      --text:             hsl(0, 0%, 96%);
      --unchanged-text:        hsl(0, 0%, 96%);
      --text-muted:       hsl(210, 10%, 60%);
      --unchanged-muted:       hsl(210, 10%, 60%);
      --text-faint:       hsl(210, 12%, 56%); /* was 40% — failed 4.5:1 on every dark surface */

      --overlay-color:    hsl(210, 30%, 6%);
      --overlay-opacity:  0.55;
      --gradient-color:   hsl(210, 30%, 5%);

      --btn-bg:           hsl(47, 100%, 45%);
      --btn-text:         hsl(210, 30%, 6%);
      --btn-hover:        hsl(47, 100%, 65%);

      --pricing-featured: hsl(47, 100%, 12%);
      --pricing-border:   hsl(47, 100%, 35%);

      --input-bg:         hsl(210, 16%, 13%);
      --input-border:     hsl(210, 14%, 22%);
      --input-focus:      hsl(47, 100%, 45%);

      /* form feedback — tuned to pass 4.5:1 on dark --bg-section */
      --danger:           hsl(6, 80%, 64%);
      --success:          hsl(145, 52%, 58%);

      /* ================================
       Light mode options
       ================================ */

      /* Light Mode */
      --light-bg:               hsl(0, 0%, 98%);
      --light-bg-section:       hsl(0, 0%, 95%);
      --light-bg-card:          hsl(0, 0%, 100%);
      --light-bg-card-hover:    hsl(210, 20%, 96%);
      --light-border:           hsl(210, 15%, 85%);

      --light-accent:           hsl(47, 100%, 45%);
      --light-accent-light:     hsl(47, 100%, 55%);
      --light-accent-dim:       hsl(47, 80%, 92%);
      --light-accent-text:      hsl(40, 100%, 28%); /* dark amber — gold is illegible as text on light (1.7:1) */
      --light-ghost-border:     hsl(210, 15%, 50%);

      --light-text:             hsl(210, 15%, 15%);
      --light-text-muted:       hsl(210, 10%, 42%); /* was 45% — failed 4.5:1 on section bg */
      --light-text-faint:       hsl(210, 10%, 40%); /* was 65% — failed 4.5:1 everywhere */

      --light-overlay-color:    hsl(210, 20%, 20%);
      --light-overlay-opacity:  0.65;
      --light-gradient-color:   hsl(210, 25%, 25%);

      --light-btn-bg:           hsl(47, 100%, 45%);
      --light-btn-text:         hsl(210, 20%, 10%);
      --light-btn-hover:        hsl(47, 100%, 40%);

      --light-pricing-featured: hsl(47, 80%, 92%);
      --light-pricing-border:   hsl(47, 100%, 60%);

      --light-input-bg:         hsl(0, 0%, 100%);
      --light-input-border:     hsl(210, 15%, 85%);
      --light-input-focus:      hsl(47, 100%, 45%);

      --font-display: "Forum", serif;
      --font-body:    "Montserrat", sans-serif;


      --section-pad: 5rem 1.5rem;
      --radius: 12px;
    }

    /* ================================
       RESET
       ================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }
    ul { list-style: none; }

    body {
      font-family: var(--font-body);
      background: var(--bg);
      color: var(--text);
      font-size: 1rem;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ================================
       SHARED UTILITIES
       ================================ */
    .section-label {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent-text);
      margin-bottom: 0.75rem;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 8vw, 3.25rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .section-title em {
      font-style: italic;
      font-weight: 400;
      color: var(--accent-text);
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--text-muted);
      max-width: 42ch;
      line-height: 1.75;
    }

    .contact-sub {
      display: inline-block
    }

    .divider {
      width: 40px;
      height: 2px;
      background: var(--accent);
      margin: 1.5rem 0;
    }

    .contact-divider {
      width: 100%;
    }

    /* Scroll-reveal: elements start hidden, JS adds .visible */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ================================
       NAV (sticky)
       ================================ */
    .nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.1rem 1.5rem;
      transition: background 0.3s, backdrop-filter 0.3s;
    }

    .nav.scrolled {
      background: var(--bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }

    /* Subpages (e.g. /gallery) have no dark hero behind the fixed nav, so the
       transparent "over-hero" state would be invisible in light mode. Pin the
       solid, theme-aware appearance regardless of scroll position. */
    body.subpage .nav {
      background: var(--bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    body.subpage .nav__logo,
    body.subpage .nav__theme-toggle,
    body.subpage .nav__links a { color: var(--text); }

    .nav__logo {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--unchanged-text);
      letter-spacing: -0.02em;
      transition: color 0.3s;
    }

    .nav__logo.scrolled {
      color: var(--text);
    }

    .nav__right {
      display: flex;
      justify-content: flex-end;
      gap: 2rem;
    }

    /* --- Theme toggle icons --- */
    .nav__theme-toggle {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .nav__ld {
      position: absolute;
      inset: 0;
      /* color: var(--unchanged-text); */
      cursor: pointer;
      transition: color 0.2s, opacity 0.25s, transform 0.25s;
      user-select: none;
      line-height: 1;
    }

    .nav__theme-toggle {
      color:var(--unchanged-text);
      transition: color 0.3s;
    }

    .nav__theme-toggle:hover {
      color: var(--accent);
    } 

    .nav__theme-toggle.scrolled {
      color: var(--text);
    }

    /* Dark mode = default: show sun (switch TO light), hide moon */
    .nav__light { opacity: 1;  transform: scale(1);    pointer-events: auto;  }
    .nav__dark  { opacity: 0;  transform: scale(0.6);  pointer-events: none;  }

    /* Light mode active: show moon (switch TO dark), hide sun */
    body.light .nav__light { opacity: 0; transform: scale(0.6); pointer-events: none; }
    body.light .nav__dark  { opacity: 1; transform: scale(1);   pointer-events: auto; }

    /* --- Language / flag toggle --- */
    .nav__lang-toggle {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      cursor: pointer;
    }

    .nav__flag {
      position: absolute;
      inset: 0;
      font-size: 1.35rem;
      line-height: 24px;
      text-align: center;
      transition: opacity 0.25s, transform 0.25s;
      user-select: none;
    }

    /* English default: show PR flag (tap = switch to Spanish), hide US flag */
    .nav__flag--pr { opacity: 1; transform: scale(1);   pointer-events: auto; }
    .nav__flag--us { opacity: 0; transform: scale(0.6); pointer-events: none; }

    /* Spanish active: show US flag (tap = switch to English), hide PR flag */
    body.es .nav__flag--pr { opacity: 0; transform: scale(0.6); pointer-events: none; }
    body.es .nav__flag--us { opacity: 1; transform: scale(1);   pointer-events: auto; }


    .nav__links {
      display: none;
      align-items: center;
      gap: 2rem;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: color 0.3s;
    }

    .nav__links a { color: var(--unchanged-text); transition: color 0.2s; }
    .nav__links a:hover, .nav__links.scrolled a:hover{ color: var(--accent); }

    .nav__links.scrolled a{
      color: var(--text);
    }
    
    .nav__cta {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--accent) !important;
    }

    .nav__hamburger {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }

    .nav__hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--unchanged-text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s, background 0.3s;
    }

    .nav__hamburger.scrolled span { background: var(--text);}

    .nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__hamburger.open span:nth-child(2) { opacity: 0; }
    .nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile menu drawer */
    .nav__drawer {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--bg);
      z-index: 99;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }

    .nav__drawer.open { opacity: 1; pointer-events: all; }
    .nav__drawer a { color: var(--text); transition: color 0.2s; }
    .nav__drawer a:hover { color: var(--accent); }

    @media (min-width: 768px) {
      .nav__links { display: flex; }
      .nav__hamburger { display: none; }
    }

    /* ================================
       HERO
       ================================ */
    .hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 1.5rem;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      animation: kenburns 18s ease-in-out infinite alternate;
      z-index: 0;
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: var(--overlay-color);
      opacity: var(--overlay-opacity);
      z-index: 1;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 45%;
      background: linear-gradient(to top, var(--gradient-color), transparent);
      z-index: 2;
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 600px;
      animation: fadeUp 0.7s ease both;
    }

    .hero__eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .hero__title {
      font-family: var(--font-display);
      font-size: clamp(3.2rem, 14vw, 6.5rem);
      font-weight: 800;
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--unchanged-text);
      margin-bottom: 1.25rem;
    }

    .hero__title em {
      font-style: italic;
      font-weight: 400;
      display: block;
    }

    .hero__desc {
      font-size: 0.95rem;
      line-height: 1.75;
      color: hsl(0, 0%, 78%);
      max-width: 38ch;
      margin-bottom: 2rem;
    }

    /* .hero__note {
      font-size: 0.72rem;
      color: hsl(0, 0%, 60%);
      margin-top: 0.85rem;
      letter-spacing: 0.05em;
    } */

    .hero__scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
    }

    .hero__scroll-line {
      display: block;
      width: 1.5px;
      height: 48px;
      background: linear-gradient(to bottom, transparent, var(--accent));
      animation: scrollPulse 1.8s ease-in-out infinite;
    }

    /* ================================
       BUTTON
       ================================ */
    .btn {
      display: inline-block;
      background: var(--btn-bg);
      color: var(--btn-text);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      padding: 0.9em 2.25em;
      border-radius: 100px;
      cursor: pointer;
      border: none;
      transition: background 0.2s, transform 0.15s;
    }
    .btn:hover  { background: var(--btn-hover); }
    .btn:active { transform: scale(0.97); }

    .btn--ghost {
      background: transparent;
      color: var(--text);
      border: 1.5px solid var(--ghost-border);
    }
    .btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: transparent; }

    /* ================================
       ABOUT
       ================================ */
    .about {
      padding: var(--section-pad);
      background: var(--bg-section);
    }

    .about__inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .about__body  {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .about__stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      width: 50%;
    }

    .about__stat {
      background: var(--bg-card);
      padding: 0.5rem 0.25rem;
      text-align: center;
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
    }

    .about__stat-img {
      border-radius: var(--radius);
      /* object-fit: cover; */
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about__stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--accent-text);
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .about__stat-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      font-weight: 600;
    }

    .about__cta {
      margin-top: 2.5rem;
      text-align: center;
    }
    .about__cta .btn { text-decoration: none; }

    @media (max-width: 768px) {
      .about__stat-grid {
        width: 100%;
        height: 80%;
      }
    }

    @media (min-width: 768px) {
      .about__body { flex-direction: row; align-items: flex-start; }
      .about__text { flex: 1; }
      .about__photo { flex: 1;}
    }

    /* ================================
       PRICING
       ================================ */
    .pricing {
      padding: var(--section-pad);
      background: var(--bg);
    }

    .pricing__header {
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .pricing__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
      transition: border-color 0.2s;
    }

    .pricing-card:hover { border-color: hsl(210, 14%, 30%); }

    .pricing-card--featured {
      background: var(--pricing-featured);
      border-color: var(--pricing-border);
    }

    .pricing-card--featured:hover { border-color: var(--accent-light); }

    .pricing-card__badge {
      position: absolute;
      top: -1px;
      right: 1.25rem;
      background: var(--accent);
      color: var(--btn-text);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3em 0.8em;
      border-radius: 0 0 8px 8px;
    }

    .pricing-card__tier {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent-text);
      margin-bottom: 0.75rem;
    }

    .pricing-card__price {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .pricing-card__price sup {
      font-size: 1.2rem;
      vertical-align: super;
    }

    .pricing-card__period {
      font-size: 0.78rem;
      color: var(--text-muted);
      margin-bottom: 1.5rem;
    }

    .pricing-card__divider {
      width: 100%;
      height: 1px;
      background: var(--border);
      margin-bottom: 1.5rem;
    }

    .pricing-card__features {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 2rem;
      flex: 1;
    }

    .pricing-card__features li {
      font-size: 0.875rem;
      color: var(--text-muted);
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
    }

    .pricing-card__features li::before {
      content: '✓';
      color: var(--accent-text);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 0.05em;
    }

    .pricing-card__features li.off {
      opacity: 0.4;
    }

    .pricing-card__features li.off::before {
      content: '–';
      color: var(--text-faint);
    }

    @media (min-width: 640px) {
      .pricing__grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 900px) {
      .pricing__grid { grid-template-columns: 1fr 1fr 1fr; }
    }

    /* Single centered special-offer card */
    .pricing__grid--single {
      max-width: 440px;
    }

    @media (min-width: 640px) {
      .pricing__grid--single { grid-template-columns: 1fr; }
    }

    @media (min-width: 900px) {
      .pricing__grid--single { grid-template-columns: 1fr; }
    }

    .pricing-card__price-row {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      margin-bottom: 0.25rem;
    }

    .pricing-card__regular {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-faint);
      text-decoration: line-through;
      text-decoration-thickness: 2px;
    }

    .pricing-card__urgency {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--accent-light);
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }

    /* ================================
          CONTACT
          ================================ */
    .contact {
      padding: var(--section-pad);
      background: var(--bg-section);
    }

    .contact__inner {
      max-width: 540px;
      margin: 0 auto;
      text-align: center;
    }

    .contact__form {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 2rem;
      text-align: left;
    }

    .contact__field {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .contact__field label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .contact__field input,
    .contact__field select,
    .contact__field textarea {
      width: 100%;
      background: var(--input-bg);
      border: 1px solid var(--input-border);
      border-radius: 8px;
      color: var(--text);
      font-family: var(--font-body);
      font-size: 0.9rem;
      padding: 0.75em 1em;
      outline: none;
      transition: border-color 0.2s;
      -webkit-appearance: none;
      appearance: none;
    }

    .contact__field input:focus,
    .contact__field select:focus,
    .contact__field textarea:focus {
      border-color: var(--input-focus);
    }

    .contact__field input::placeholder,
    .contact__field textarea::placeholder {
      color: var(--text-muted); /* was --text-faint — failed 4.5:1 in both themes */
    }

    .contact__field textarea {
      resize: vertical;
      min-height: 100px;
    }

    .contact__field select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1em center;
      padding-right: 2.5em;
      cursor: pointer;
    }

    .contact__optional {
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
      color: var(--text-faint);
      margin-left: 0.45em;
    }

    .contact__field input[aria-invalid="true"],
    .contact__field textarea[aria-invalid="true"] {
      border-color: var(--danger);
    }

    .contact__error {
      font-size: 0.78rem;
      line-height: 1.3;
      color: var(--danger);
    }
    .contact__error:empty { display: none; }

    .contact__submit {
      width: 100%;
      margin-top: 0.5rem;
      padding: 1em;
      font-size: 0.9rem;
    }
    .contact__submit:disabled { opacity: 0.65; cursor: progress; }

    .contact__status {
      font-size: 0.9rem;
      margin-top: 0.85rem;
      text-align: center;
    }
    .contact__status:empty { display: none; }
    .contact__status--success { color: var(--success); font-weight: 600; }
    .contact__status--error   { color: var(--danger); }
    .contact__status--pending { color: var(--text-muted); }

    .contact__btns {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.85rem;
      margin-top: 2rem;
    }

    .contact__or {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
    }

    .contact__btns-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      width: 100%;
    }

    .contact__btns-row .btn {
      flex: 1;
      text-align: center;
      padding: 1em;
      font-size: 0.9rem;
      min-width: 120px;
    }


    /* ================================
       GALLERY (/gallery)
       ================================ */
    .gallery {
      padding: 8rem 1.5rem 5rem; /* extra top clears the fixed nav */
      background: var(--bg-section);
    }

    .gallery__inner {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
    }

    .gallery .divider { margin-left: auto; margin-right: auto; }

    .gallery .section-sub {
      max-width: 580px;
      margin: 1rem auto 0;
    }

    .gallery__grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1rem;
      margin-top: 2.75rem;
    }

    .gallery__item {
      margin: 0;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: var(--bg-card);
    }

    .gallery__item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .gallery__item:hover img { transform: scale(1.05); }

    @media (prefers-reduced-motion: reduce) {
      .gallery__item img { transition: none; }
      .gallery__item:hover img { transform: none; }
    }

    .gallery__cta {
      margin-top: 3rem;
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .gallery__cta .btn { text-decoration: none; }

    .gallery__noscript {
      margin-top: 2rem;
      color: var(--text-muted);
    }
    .gallery__noscript a { color: var(--accent-text); }


    /* ================================
       FOOTER
       ================================ */
    .footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 3rem 1.5rem 2rem;
    }

    .footer__inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .footer__top {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .footer__brand .footer__logo {
      font-family: var(--font-display);
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 0.6rem;
      display: block;
    }

    .footer__brand p {
      font-size: 0.82rem;
      color: var(--text-muted);
      max-width: 28ch;
      line-height: 1.7;
    }

    .footer__links-group h4 {
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 1rem;
    }

    .footer__links-group ul {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }

    .footer__links-group a {
      font-size: 0.875rem;
      color: var(--text-muted);
      transition: color 0.2s;
    }

    .footer__links-group a:hover { color: var(--text); }

    .footer__cols {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer__bottom {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      border-top: 1px solid var(--border);
      padding-top: 1.75rem;
      align-items: flex-start;
    }

    .footer__copy {
      font-size: 0.75rem;
      color: var(--text-faint);
    }

    .footer__socials {
      display: flex;
      gap: 1rem;
    }

    .footer__socials a {
      font-size: 0.75rem;
      color: var(--text-faint);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .footer__socials a:hover { color: var(--accent-text); }

    @media (min-width: 640px) {
      .footer__top { flex-direction: row; justify-content: space-between; }
      .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    }

    /* ================================
       SERVICE AREA
       ================================ */
    .service-area {
      padding: var(--section-pad);
      background: var(--bg-section);
    }

    .service-area__inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .service-area__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 2rem;
    }

    .area-chip {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      padding: 0.45em 1em;
      border-radius: 100px;
      border: 1px solid var(--border);
      color: var(--text-muted);
      background: var(--bg-card);
      transition: border-color 0.2s, color 0.2s;
    }

    .area-chip:hover {
      border-color: var(--accent-text);
      color: var(--accent-text);
    }

    .area-group {
      margin-top: 2rem;
    }

    .area-group__title {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-faint);
      margin-bottom: 0.85rem;
    }

    .area-group__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .service-area__note {
      margin-top: 1.75rem;
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* ================================
       TESTIMONIALS
       ================================ */
    .testimonials {
      padding: var(--section-pad);
      background: var(--bg);
    }

    .testimonials__header {
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .testimonials__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 900px;
      margin: 0 auto;
    }

    @media (min-width: 640px) {
      .testimonials__grid { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 900px) {
      .testimonials__grid { grid-template-columns: 1fr 1fr 1fr; }
    }

    .testimonial-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: border-color 0.2s;
    }

    .testimonial-card:hover { border-color: hsl(210, 14%, 30%); }

    .testimonial-card__stars {
      color: var(--accent-text);
      font-size: 0.9rem;
      letter-spacing: 0.08em;
    }

    .testimonial-card__quote {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.75;
      flex: 1;
      font-style: italic;
    }

    .testimonial-card__name {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--text);
      display: block;
    }

    .testimonial-card__vehicle {
      font-size: 0.7rem;
      color: var(--text-faint);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      display: block;
      margin-top: 0.2rem;
    }

    /* ================================
       WHATSAPP BUTTON
       ================================ */
    .whatsapp-btn {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 200;
      width: 54px;
      height: 54px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .whatsapp-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    }

    .whatsapp-btn svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    /* ================================
       ANIMATIONS
       ================================ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }

    @keyframes kenburns {
      from { transform: scale(1.0) translate(0, 0); }
      to   { transform: scale(1.08) translate(-1%, 1%); }
    }

    @keyframes scrollPulse {
      0%, 100% { opacity: 0.3; }
      50%       { opacity: 1; }
    }

    /* ================================
       LIGHT MODE OVERRIDES
       ================================ */
    body.light {
      --bg:               var(--light-bg);
      --bg-section:       var(--light-bg-section);
      --bg-card:          var(--light-bg-card);
      --bg-card-hover:    var(--light-bg-card-hover);
      --border:           var(--light-border);
      --accent:           var(--light-accent);
      --accent-light:     var(--light-accent-light);
      --accent-dim:       var(--light-accent-dim);
      --accent-text:      var(--light-accent-text);
      --ghost-border:     var(--light-ghost-border);
      --text:             var(--light-text);
      --text-muted:       var(--light-text-muted);
      --text-faint:       var(--light-text-faint);
      /* --overlay-color:    var(--light-overlay-color);
      --overlay-opacity:  var(--light-overlay-opacity);
      --gradient-color:   var(--light-gradient-color); */
      --btn-bg:           var(--light-btn-bg);
      --btn-text:         var(--light-btn-text);
      --btn-hover:        var(--light-btn-hover);
      --pricing-featured: var(--light-pricing-featured);
      --pricing-border:   var(--light-pricing-border);
      --input-bg:         var(--light-input-bg);
      --input-border:     var(--light-input-border);
      --input-focus:      var(--light-input-focus);

      /* darker variants to pass 4.5:1 on light --bg-section */
      --danger:           hsl(0, 72%, 42%);
      --success:          hsl(145, 63%, 30%);

      transition: background 0.35s ease, color 0.35s ease;
    }

    body.light {
      background: hsl(210, 22%, 93%, 0.88);
    }