    /* ── Brand tokens ── */
    :root {
      --navy:        #0D2053;
      --navy-dark:   #09153B;
      --orange:      #EE6108;
      --orange-lt:   #FB8913;
      --green:       #659733;
      --teal:        #305963;
      --slate:       #67718B;
      --off-white:   #FDFDFD;
      --white:       #FFFFFF;
    }

    .form-actions {
      display: grid;
      gap: .75rem;
      margin-top: 1.25rem;
    }
    .form-actions .form-submit {
      margin-top: 0;
    }
    @media(min-width:640px) {
      .form-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    .cookie-consent {
      position: fixed;
      z-index: 80;
      right: 1rem;
      bottom: 1rem;
      left: 1rem;
      display: grid;
      gap: 1rem;
      max-width: 48rem;
      margin-inline: auto;
      padding: 1rem;
      border: 1px solid rgba(13,32,83,.14);
      border-radius: 1rem;
      background: rgba(255,255,255,.98);
      box-shadow: 0 24px 70px rgba(9,21,59,.22);
      color: var(--navy);
    }
    .cookie-consent[hidden] { display: none; }
    .cookie-consent__eyebrow {
      font-size: .68rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--orange);
    }
    .cookie-consent h2 {
      margin-top: .2rem;
      font-size: 1.2rem;
      font-weight: 950;
      letter-spacing: -.02em;
    }
    .cookie-consent p {
      margin-top: .35rem;
      font-size: .86rem;
      font-weight: 700;
      line-height: 1.55;
      color: var(--slate);
    }
    .cookie-consent__choices {
      display: grid;
      gap: .45rem;
      margin-top: .75rem;
    }
    .cookie-consent__choices label {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .86rem;
      font-weight: 850;
    }
    .cookie-consent__choices input { width: 1rem; height: 1rem; }
    .cookie-consent__actions {
      display: grid;
      gap: .55rem;
    }
    @media(min-width:720px) {
      .cookie-consent {
        grid-template-columns: 1fr auto;
        align-items: end;
      }
      .cookie-consent__actions { grid-template-columns: repeat(3, auto); }
    }

    /* ── Reset / base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--off-white);
      color: var(--navy);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
    }
    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }

    /* ── 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; }
    .container { max-width: 80rem; margin-inline: auto; padding-inline: 1.25rem; }
    @media(min-width:640px)  { .container { padding-inline: 1.75rem; } }
    @media(min-width:1024px) { .container { padding-inline: 2.5rem; } }

    /* ── Typography scale ── */
    .eyebrow {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
    }
    .eyebrow--orange { color: var(--orange); }
    .eyebrow--orange-lt { color: var(--orange-lt); }
    .eyebrow--green { color: var(--green); }

    /* ── Buttons ── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
      font-weight: 900; border-radius: 9999px; border: none; cursor: pointer;
      transition: background .15s, color .15s, border-color .15s, transform .1s;
      text-align: center; white-space: nowrap;
    }
    .btn:active { transform: scale(.97); }
    .btn--primary {
      background: var(--orange); color: var(--navy-dark);
      padding: .85rem 1.6rem; font-size: .9375rem;
      box-shadow: 0 8px 24px rgba(238,97,8,.30);
    }
    .btn--primary:hover { background: var(--orange-lt); }
    .btn--ghost {
      background: transparent; color: var(--off-white);
      border: 1.5px solid rgba(253,253,253,.35);
      padding: .85rem 1.6rem; font-size: .9375rem;
    }
    .btn--ghost:hover { border-color: var(--orange-lt); color: var(--orange-lt); }
    .btn--outline {
      background: var(--white); color: var(--navy);
      border: 1.5px solid rgba(13,32,83,.15);
      padding: .7rem 1.4rem; font-size: .875rem;
    }
    .btn--outline:hover { border-color: var(--orange); color: var(--orange); }
    .btn--sm {
      padding: .6rem 1.1rem; font-size: .8125rem;
    }
    .btn--wa {
      background: #25D366; color: #fff;
      padding: .7rem 1.2rem; font-size: .8125rem;
    }
    .btn--wa:hover { background: #1ebe5b; }

    /* ══════════════════════════════════
       NAV
    ══════════════════════════════════ */
    .site-nav {
      position: absolute; inset-inline: 0; top: 0; z-index: 30;
    }
    .site-nav__inner {
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
      padding: 1.25rem 1.25rem;
      max-width: 80rem; margin-inline: auto;
    }
    @media(min-width:640px)  { .site-nav__inner { padding-inline: 1.75rem; } }
    @media(min-width:1024px) { .site-nav__inner { padding-inline: 2.5rem; } }

    .site-nav__logo img {
      border-radius: 50%;
      object-fit: contain;
      width: clamp(4.5rem, 8vw, 6.5rem);
      height: clamp(4.5rem, 8vw, 6.5rem);
      filter: drop-shadow(0 4px 12px rgba(0,0,0,.30));
    }
    .site-nav__links {
      display: none;
      align-items: center; gap: 2rem;
      font-size: .875rem; font-weight: 900; color: rgba(253,253,253,.9);
    }
    .site-nav__links a:hover { color: var(--orange-lt); }
    @media(min-width:768px) { .site-nav__links { display: flex; } }

    .site-nav__actions { display: flex; align-items: center; gap: .5rem; }

    /* Mobile menu */
    .mobile-menu { position: relative; }
    .mobile-menu__toggle {
      display: flex; align-items: center; justify-content: center;
      width: 2.75rem; height: 2.75rem; border-radius: 50%;
      border: 1.5px solid rgba(253,253,253,.25);
      background: rgba(9,21,59,.55); color: var(--off-white);
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,.20);
    }
    .mobile-menu__toggle:hover { border-color: var(--orange-lt); }
    .mobile-menu input[type="checkbox"] { display: none; }
    .mobile-menu__panel {
      display: none;
      position: absolute; right: 0; top: calc(100% + .75rem);
      width: min(18rem, calc(100vw - 2rem));
      background: var(--navy-dark); border-radius: .625rem;
      border: 1px solid rgba(253,253,253,.12);
      box-shadow: 0 20px 60px rgba(0,0,0,.35); overflow: hidden;
    }
    .mobile-menu input:checked ~ .mobile-menu__panel { display: block; }
    .mobile-menu__panel a {
      display: block; padding: 1rem 1.25rem;
      font-size: .875rem; font-weight: 900; color: var(--off-white);
      border-bottom: 1px solid rgba(253,253,253,.08);
    }
    .mobile-menu__panel a:hover { background: rgba(253,253,253,.07); color: var(--orange-lt); }
    .mobile-menu__panel .panel-cta {
      background: var(--orange); color: var(--navy-dark);
      border-bottom: none;
    }
    .mobile-menu__panel .panel-cta:hover { background: var(--orange-lt); }
    @media(min-width:768px) { .mobile-menu { display: none; } }

    /* ── Quick answer hub ── */
    .answer-hub {
      padding: clamp(3.5rem, 7vw, 5.75rem) 0;
      background:
        linear-gradient(180deg, rgba(13,32,83,.04), rgba(255,255,255,0) 42%),
        var(--off-white);
    }
    .answer-hub__grid {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }
    .answer-card {
      padding: 1.25rem;
      border: 1px solid rgba(13,32,83,.10);
      border-radius: 1.25rem;
      background: var(--white);
      box-shadow: 0 18px 45px rgba(9,21,59,.07);
    }
    .answer-card h3 {
      color: var(--navy);
      font-size: 1rem;
      font-weight: 950;
      letter-spacing: -.02em;
    }
    .answer-card p {
      margin-top: .55rem;
      color: var(--slate);
      font-size: .94rem;
      font-weight: 750;
      line-height: 1.65;
    }
    @media(min-width:720px) {
      .answer-hub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .answer-card--wide {
        grid-column: 1 / -1;
      }
    }
    @media(min-width:1040px) {
      .answer-hub__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
      .answer-card--wide {
        grid-column: span 2;
      }
    }

    /* ══════════════════════════════════
       HERO
    ══════════════════════════════════ */
    .hero {
      position: relative; isolation: isolate; overflow: hidden;
      background: var(--navy-dark);
      color: var(--off-white);
      min-height: 640px;
    }
    @media(min-width:640px) { .hero { min-height: 84svh; } }

    .hero__bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(circle at 82% 20%, rgba(238,97,8,.38), transparent 28%),
        radial-gradient(circle at 75% 70%, rgba(101,151,51,.22), transparent 24%),
        linear-gradient(135deg, #09153B 0%, #0D2053 55%, #305963 100%);
    }
    /* Signature element: angled bottom edge */
    .hero::after {
      content: '';
      position: absolute; bottom: -1px; left: 0; right: 0;
      height: 80px;
      background: var(--off-white);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }
    @media(min-width:640px) {
      .hero::after { height: 120px; }
    }
    @media(min-width:1024px) {
      .hero::after { height: 160px; }
    }

    .hero__cylinder {
      display: none;
      position: absolute; right: 1.5rem; top: 7rem;
      width: min(40vw, 32rem);
    }
    @media(min-width:1024px) {
      .hero__cylinder {
        display: block;
        right: max(2rem, calc((100vw - 80rem) / 2 + 2rem));
        top: 7.5rem;
        width: min(36vw, 30rem);
      }
    }
    @media(min-width:1280px) {
      .hero__cylinder { width: min(38vw, 32rem); }
    }
    .hero__cylinder img {
      height: auto; width: 100%; object-fit: contain;
      filter: saturate(1.05) contrast(1.03) drop-shadow(0 36px 48px rgba(0,0,0,.32));
    }

    .hero__content {
      position: relative;
      display: flex; align-items: flex-end;
      min-height: 640px; padding-bottom: 6rem;
      padding-top: clamp(8.5rem, 15vw, 11.5rem);
    }
    @media(min-width:640px) {
      .hero__content { min-height: 84svh; padding-bottom: 8rem; }
    }
    @media(min-width:1024px) {
      .hero__content { padding-bottom: 10rem; }
    }

    .hero__text { max-width: 52rem; }
    @media(min-width:1024px) { .hero__text { max-width: 38rem; } }
    @media(min-width:1280px) { .hero__text { max-width: 44rem; } }

    .hero__badge {
      display: inline-flex; align-items: center; gap: .45rem;
      background: var(--green); color: var(--navy-dark);
      font-size: .75rem; font-weight: 900; letter-spacing: .06em;
      padding: .45rem 1rem; border-radius: 9999px;
      margin-bottom: 1.5rem;
    }

    .hero__h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 900; line-height: 1.0; letter-spacing: -.02em;
    }
    @media(min-width:640px) { .hero__h1 { font-size: clamp(3rem, 7vw, 5.5rem); } }

    .hero__sub {
      margin-top: 1.25rem;
      font-size: clamp(.9375rem, 1.5vw, 1.125rem);
      font-weight: 600; line-height: 1.75;
      color: rgba(253,253,253,.82);
      max-width: 42rem;
    }

    .hero__ctas {
      margin-top: 2rem;
      display: flex; flex-wrap: wrap; gap: .75rem;
    }

    /* ══════════════════════════════════
       TRUST STRIP
    ══════════════════════════════════ */
    .trust-strip {
      background: var(--white);
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(13,32,83,.07);
    }
    .trust-strip__grid {
      display: grid; gap: .75rem;
      grid-template-columns: 1fr;
    }
    @media(min-width:640px) { .trust-strip__grid { grid-template-columns: repeat(3, 1fr); } }

    .trust-card {
      display: flex; align-items: center; gap: .85rem;
      padding: 1rem 1.25rem;
      background: var(--off-white);
      border: 1px solid rgba(13,32,83,.08);
      border-radius: .625rem;
      box-shadow: 0 1px 3px rgba(0,0,0,.04);
    }
    .trust-card__icon {
      flex-shrink: 0;
      width: 2.5rem; height: 2.5rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(13,32,83,.07);
      color: var(--navy);
    }
    .trust-card__label { font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--slate); }
    .trust-card__title { font-size: 1rem; font-weight: 900; color: var(--navy); line-height: 1.25; margin-top: .2rem; }

    /* ══════════════════════════════════
       PRODUCTS
    ══════════════════════════════════ */
    .products {
      background: var(--off-white);
      padding: 5rem 0 6rem;
    }
    @media(min-width:640px) { .products { padding-bottom: 7rem; } }
    @media(min-width:1024px) { .products { padding-bottom: 8rem; } }
    .section-header {
      display: flex; flex-direction: column; gap: 1.25rem;
      margin-bottom: 2.5rem;
    }
    @media(min-width:1024px) {
      .section-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    }
    .section-header__text { max-width: 48rem; }
    .section-h2 {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 900; line-height: 1.05; letter-spacing: -.02em;
      margin-top: .6rem;
    }
    .section-sub {
      margin-top: .75rem;
      font-size: 1rem; font-weight: 600; line-height: 1.75; color: var(--slate);
    }
    @media(min-width:640px) { .section-sub { font-size: 1.0625rem; } }

    .product-grid {
      display: grid; gap: .875rem;
      grid-template-columns: 1fr;
    }
    @media(min-width:480px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(min-width:768px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
    @media(min-width:1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.125rem; } }
    .product-grid__empty {
      grid-column: 1 / -1;
      font-size: .9375rem;
      font-weight: 800;
      color: var(--slate);
    }

    .product-card {
      display: flex; flex-direction: column;
      background: var(--white);
      border: 1px solid rgba(13,32,83,.09);
      border-radius: .75rem;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,.05);
      transition: transform .2s, box-shadow .2s;
    }
    .product-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(13,32,83,.12);
    }
    @media(min-width:480px) {
      .product-card--wide { grid-column: span 2; }
    }
    .product-card--wide .product-card__img-wrap {
      min-height: 220px;
      max-height: 220px;
    }
    .product-card__img-wrap {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 220px;
      max-height: 220px;
      background: var(--off-white);
      padding: 1rem;
    }
    @media(min-width:640px) { .product-card__img-wrap { padding: 1.25rem; min-height: 240px; max-height: 240px; } }
    .product-card__photo {
      width: auto;
      max-width: 100%;
      height: 190px;
      max-height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
    }
    @media(min-width:640px) { .product-card__photo { height: 205px; } }

    .product-card__tag {
      position: absolute; top: .75rem; left: .75rem;
      font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em;
      padding: .25rem .6rem;
      border-radius: 9999px;
    }
    @media(min-width:640px) { .product-card__tag { top: 1rem; left: 1rem; font-size: .7rem; } }
    .tag--orange { background: var(--orange); color: var(--navy-dark); }
    .tag--teal   { background: var(--teal);   color: var(--off-white); }
    .tag--green  { background: var(--green);  color: var(--off-white); }
    .tag--navy   { background: var(--navy);   color: var(--off-white); }

    .product-card__body {
      flex: 1; display: flex; flex-direction: column;
      padding: .75rem;
      border-top: 1px solid rgba(13,32,83,.06);
    }
    @media(min-width:640px) { .product-card__body { padding: 1.1rem 1.25rem 1.25rem; } }

    .product-card__type { font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); }
    @media(min-width:640px) { .product-card__type { font-size: .7rem; } }
    .product-card__name {
      font-size: .875rem; font-weight: 900; color: var(--navy); line-height: 1.25;
      margin-top: .3rem;
    }
    @media(min-width:640px) { .product-card__name { font-size: 1.125rem; margin-top: .4rem; } }
    .product-card__price {
      margin-top: .35rem;
      font-size: .9375rem;
      font-weight: 900;
      color: var(--orange);
    }
    .product-card__desc {
      display: none;
      font-size: .875rem; font-weight: 600; color: var(--slate); line-height: 1.65;
      margin-top: .6rem;
    }
    @media(min-width:640px) { .product-card__desc { display: block; } }

    .product-card__chips {
      display: flex;
      flex-wrap: wrap;
      align-content: flex-start;
      gap: .4rem;
      min-height: 3.9rem;
      margin-top: .75rem;
    }
    .chip {
      display: inline-flex;
      align-items: center;
      min-height: 1.65rem;
      font-size: .68rem; font-weight: 900;
      line-height: 1;
      background: rgba(13,32,83,.05); color: var(--navy);
      padding: .25rem .65rem; border-radius: 9999px;
    }
    @media(max-width:639px) { .product-card__chips { min-height: 0; } }

    .product-card__actions {
      margin-top: auto; padding-top: .75rem;
      display: grid; gap: .5rem;
    }

    .products__note {
      margin-top: 1.5rem;
      font-size: .8125rem; font-weight: 600; color: var(--slate); line-height: 1.7;
    }

    .seo-product-list {
      display: grid;
      gap: .85rem;
      margin-top: 1.25rem;
      grid-template-columns: 1fr;
    }
    @media(min-width:640px) { .seo-product-list { grid-template-columns: repeat(2, minmax(0,1fr)); } }
    @media(min-width:1024px) { .seo-product-list { grid-template-columns: repeat(4, minmax(0,1fr)); } }
    .seo-product-item {
      padding: 1rem;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .75rem;
      background: var(--white);
      box-shadow: 0 12px 28px rgba(13,32,83,.06);
    }
    .seo-product-item h3 {
      color: var(--navy);
      font-size: 1rem;
      font-weight: 950;
      line-height: 1.18;
    }
    .seo-product-item p {
      margin-top: .55rem;
      color: var(--slate);
      font-size: .86rem;
      font-weight: 700;
      line-height: 1.55;
    }
    .seo-product-item a {
      display: inline-flex;
      margin-top: .75rem;
      color: var(--orange);
      font-size: .82rem;
      font-weight: 950;
      text-decoration: underline;
      text-underline-offset: .18em;
    }

    .same-day-banner {
      position: relative;
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
      padding: 1rem;
      border-radius: 1rem;
      background:
        linear-gradient(135deg, rgba(238,97,8,.96), rgba(180,68,0,.96)),
        var(--orange);
      color: var(--white);
      box-shadow: 0 18px 44px rgba(238,97,8,.22);
      overflow: hidden;
    }
    .same-day-banner::after {
      content: "";
      position: absolute;
      inset: auto -3rem -4rem auto;
      width: 13rem;
      height: 13rem;
      border-radius: 9999px;
      background: rgba(255,255,255,.16);
    }
    .same-day-banner__logo {
      position: relative;
      z-index: 1;
      width: 8rem;
      aspect-ratio: 1;
      display: grid;
      place-items: center;
    }
    .same-day-banner__logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }
    .same-day-banner__eyebrow {
      font-size: .7rem;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .85;
    }
    .same-day-banner h3 {
      margin-top: .2rem;
      font-size: clamp(1.45rem, 4vw, 2.2rem);
      font-weight: 950;
      line-height: 1;
    }
    .same-day-banner p {
      max-width: 42rem;
      margin-top: .4rem;
      font-size: .95rem;
      font-weight: 700;
      line-height: 1.55;
      color: rgba(255,255,255,.88);
    }
    .same-day-banner__meta {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: .55rem;
      padding: .65rem .85rem;
      border: 1px solid rgba(255,255,255,.28);
      border-radius: .85rem;
      background: rgba(9,21,59,.18);
      font-weight: 900;
    }
    .same-day-banner__meta span {
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: .78;
    }
    .same-day-banner__actions {
      position: relative;
      z-index: 1;
      display: grid;
      gap: .6rem;
    }
    .same-day-banner .btn--outline {
      border-color: rgba(255,255,255,.65);
      color: var(--white);
      background: rgba(255,255,255,.08);
    }
    @media(min-width:768px) {
      .same-day-banner {
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        padding: 1.25rem 1.4rem;
      }
      .same-day-banner__logo { width: 12rem; }
      .same-day-banner__actions { grid-template-columns: repeat(2, auto); }
    }

    /* ══════════════════════════════════
       GUIDE
    ══════════════════════════════════ */
    .service-hub {
      background: var(--white);
      padding: 4.5rem 0 5.5rem;
      border-top: 1px solid rgba(13,32,83,.07);
    }
    .service-link-grid {
      display: grid;
      gap: .85rem;
      grid-template-columns: 1fr;
    }
    @media(min-width:640px) { .service-link-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
    @media(min-width:1024px) { .service-link-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
    .service-link-card {
      display: grid;
      gap: .35rem;
      min-height: 8rem;
      align-content: end;
      padding: 1rem;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .75rem;
      background:
        linear-gradient(145deg, rgba(238,97,8,.08), rgba(255,255,255,0) 55%),
        var(--off-white);
      color: var(--navy);
      box-shadow: 0 14px 32px rgba(13,32,83,.07);
      transition: transform .15s, border-color .15s, box-shadow .15s;
    }
    .service-link-card:hover {
      transform: translateY(-2px);
      border-color: rgba(238,97,8,.36);
      box-shadow: 0 18px 38px rgba(13,32,83,.1);
    }
    .service-link-card span {
      color: var(--orange);
      font-size: .72rem;
      font-weight: 950;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .service-link-card strong {
      font-size: 1.1rem;
      line-height: 1.18;
      font-weight: 950;
    }

    .reviews {
      background: var(--off-white);
      padding: 4.5rem 0 5.5rem;
      border-top: 1px solid rgba(13,32,83,.07);
    }
    .reviews__grid {
      display: grid;
      gap: .9rem;
      grid-template-columns: 1fr;
    }
    @media(min-width:720px) { .reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    @media(min-width:1120px) { .reviews__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
    .review-card {
      display: grid;
      gap: .85rem;
      align-content: space-between;
      min-height: 14rem;
      padding: 1rem;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .75rem;
      background: var(--white);
      box-shadow: 0 14px 30px rgba(13,32,83,.07);
    }
    .review-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: .75rem;
    }
    .google-wordmark {
      display: inline-flex;
      align-items: baseline;
      gap: .01em;
      font-size: 1.05rem;
      font-weight: 950;
      line-height: 1;
      white-space: nowrap;
    }
    .google-wordmark__blue { color: #4285F4; }
    .google-wordmark__red { color: #EA4335; }
    .google-wordmark__yellow { color: #FBBC05; }
    .google-wordmark__green { color: #34A853; }
    .review-stars {
      display: inline-flex;
      color: #FBBC05;
      font-size: .92rem;
      letter-spacing: .05em;
      line-height: 1;
      white-space: nowrap;
    }
    .review-card blockquote {
      color: var(--navy);
      font-size: .92rem;
      font-weight: 700;
      line-height: 1.6;
    }
    .review-card__author {
      color: var(--navy-dark);
      font-size: .9rem;
      font-weight: 950;
    }

    .guide {
      background: var(--navy);
      color: var(--off-white);
      padding: 5rem 0;
      position: relative;
    }
    /* Angled top */
    .guide::before {
      content: '';
      position: absolute; top: -60px; left: 0; right: 0;
      height: 62px;
      background: var(--navy);
      clip-path: polygon(0 100%, 100% 0, 100% 100%);
    }
    @media(min-width:640px) { .guide::before { top: -80px; height: 82px; } }
    @media(min-width:1024px) { .guide::before { top: -100px; height: 102px; } }

    .guide__layout {
      display: grid; gap: 3rem;
    }
    @media(min-width:1024px) {
      .guide__layout { grid-template-columns: .85fr 1.15fr; align-items: start; gap: 4rem; }
    }

    .guide__steps {
      display: grid; gap: 1rem;
    }
    @media(min-width:640px) { .guide__steps { grid-template-columns: repeat(3, 1fr); } }

    .step-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(253,253,253,.12);
      border-radius: .75rem; padding: 1.5rem;
      transition: background .2s;
    }
    .step-card:hover { background: rgba(255,255,255,.1); }
    .step-num {
      width: 2.25rem; height: 2.25rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      font-size: .8125rem; font-weight: 900;
    }
    .step-num--orange { background: var(--orange); color: var(--navy-dark); }
    .step-num--green  { background: var(--green);  color: var(--navy-dark); }
    .step-card h3 { font-size: 1.125rem; font-weight: 900; margin-top: 1rem; }
    .step-card p  { font-size: .875rem; font-weight: 600; line-height: 1.65; color: rgba(253,253,253,.75); margin-top: .6rem; }
    .step-card--featured {
      border-color: rgba(238,97,8,.45);
      background: rgba(238,97,8,.08);
    }
    .guide-link {
      color: var(--orange-lt);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: .18em;
    }
    .guide-link:hover { color: var(--off-white); }
    .guide__actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: 1.35rem;
    }

    /* ══════════════════════════════════
       DELIVERY
    ══════════════════════════════════ */
    .delivery {
      background: var(--off-white);
      padding: 5rem 0 7rem;
    }
    @media(min-width:1024px) { .delivery { padding-bottom: 8rem; } }
    .delivery__layout {
      display: grid; gap: 3rem;
    }
    @media(min-width:1024px) {
      .delivery__layout { grid-template-columns: repeat(2, 1fr); align-items: center; gap: 4rem; }
    }

    .delivery__features {
      display: grid; gap: .75rem;
      grid-template-columns: repeat(2, 1fr);
    }

    .feature-card {
      background: var(--navy);
      border-radius: .75rem; padding: 1.25rem;
      color: var(--off-white);
    }
    .feature-card--green {
      background: var(--green);
      color: var(--navy-dark);
    }
    .feature-card__icon {
      width: 2.25rem; height: 2.25rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: rgba(255,255,255,.12);
      margin-bottom: .75rem;
    }
    .feature-card--green .feature-card__icon {
      background: rgba(255,255,255,.18);
      color: var(--white);
    }
    .feature-card h3 { font-size: .9375rem; font-weight: 900; }
    .feature-card p  { font-size: .8125rem; font-weight: 600; line-height: 1.65; margin-top: .5rem; color: rgba(253,253,253,.78); }
    .feature-card--green h3,
    .feature-card--green p { color: var(--white); }

    .local-details {
      display: grid;
      gap: .55rem;
      margin-top: 1.25rem;
      padding: 1rem;
      border: 1px solid rgba(13,32,83,.09);
      border-radius: .75rem;
      background: var(--white);
    }
    .local-details h3 {
      color: var(--navy);
      font-size: .98rem;
      font-weight: 950;
      line-height: 1.2;
    }
    .local-details p {
      color: var(--slate);
      font-size: .9rem;
      font-weight: 700;
      line-height: 1.6;
    }

    .faq-section {
      padding: clamp(3rem, 6vw, 5rem) 0 clamp(4.5rem, 8vw, 7rem);
      background: var(--off-white);
    }
    @media(min-width:1024px) { .faq-section { padding-bottom: 8rem; } }
    .faq-grid {
      display: grid;
      gap: 1rem;
      margin-top: 1.75rem;
    }
    @media(min-width:760px) { .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    .faq-item {
      padding: 1.15rem 1.25rem;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .75rem;
      background: var(--white);
      box-shadow: 0 12px 30px rgba(9,21,59,.06);
    }
    .faq-item h3 {
      color: var(--navy);
      font-size: 1rem;
      font-weight: 950;
      line-height: 1.25;
    }
    .faq-item p {
      margin-top: .65rem;
      color: rgba(13,32,83,.76);
      font-size: .875rem;
      font-weight: 650;
      line-height: 1.65;
    }
    .faq-item a {
      color: var(--orange);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: .15em;
    }

    /* ══════════════════════════════════
       SERVICE LANDING PAGES
    ══════════════════════════════════ */
    .landing-hero {
      position: relative;
      overflow: hidden;
      padding: 10rem 0 5rem;
      color: var(--off-white);
      background:
        radial-gradient(circle at 80% 18%, rgba(238,97,8,.34), transparent 28%),
        linear-gradient(135deg, #09153B 0%, #0D2053 58%, #305963 100%);
    }
    .landing-hero::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: -1px;
      left: 0;
      height: clamp(4rem, 9vw, 7rem);
      background: var(--off-white);
      clip-path: polygon(0 100%, 100% 28%, 100% 100%);
    }
    .landing-hero__content {
      position: relative;
      z-index: 1;
      max-width: 55rem;
    }
    .landing-hero h1 {
      max-width: 12ch;
      margin-top: .8rem;
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 950;
      letter-spacing: -.055em;
      line-height: .92;
    }
    .landing-hero p {
      max-width: 43rem;
      margin-top: 1rem;
      color: rgba(253,253,253,.82);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 720;
      line-height: 1.65;
    }
    .landing-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .75rem;
      margin-top: 1.5rem;
    }
    .landing-section {
      padding: clamp(3rem, 6vw, 5.5rem) 0;
      background: var(--off-white);
    }
    .landing-section--white { background: var(--white); }
    .landing-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }
    @media(min-width:760px) { .landing-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
    .landing-card {
      padding: 1.15rem;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .75rem;
      background: var(--white);
      box-shadow: 0 16px 38px rgba(9,21,59,.07);
    }
    .landing-section--white .landing-card { background: var(--off-white); }
    .landing-card h2,
    .landing-card h3 {
      color: var(--navy);
      font-size: 1.18rem;
      font-weight: 950;
      line-height: 1.15;
    }
    .landing-card p,
    .landing-card li {
      margin-top: .6rem;
      color: var(--slate);
      font-size: .94rem;
      font-weight: 700;
      line-height: 1.62;
    }
    .landing-card ul {
      margin-top: .75rem;
      padding-left: 1rem;
    }
    .landing-cta-band {
      background: var(--navy-dark);
      color: var(--off-white);
      padding: clamp(3rem, 6vw, 5rem) 0;
    }
    .landing-cta-band h2 {
      max-width: 16ch;
      color: var(--off-white);
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 950;
      line-height: .98;
      letter-spacing: -.04em;
    }
    .landing-cta-band p {
      max-width: 44rem;
      margin-top: .9rem;
      color: rgba(253,253,253,.78);
      font-weight: 720;
      line-height: 1.65;
    }

    /* ══════════════════════════════════
       ORDER
    ══════════════════════════════════ */
    .order-section {
      background: var(--navy-dark);
      color: var(--off-white);
      padding: 5rem 0;
      position: relative;
    }
    .order-section::before {
      content: '';
      position: absolute; top: -60px; left: 0; right: 0;
      height: 62px;
      background: var(--navy-dark);
      clip-path: polygon(0 0, 100% 100%, 0 100%);
    }
    @media(min-width:640px) { .order-section::before { top: -80px; height: 82px; } }
    @media(min-width:1024px) { .order-section::before { top: -100px; height: 102px; } }

    .order-section__layout {
      display: grid; gap: 3rem;
    }
    @media(min-width:1024px) {
      .order-section__layout { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
    }

    .contact-links { display: grid; gap: .75rem; margin-top: 2rem; }

    .contact-link {
      display: flex; align-items: center; gap: 1rem;
      padding: 1rem 1.25rem;
      border: 1.5px solid rgba(253,253,253,.12);
      border-radius: .75rem;
      color: var(--off-white);
      transition: border-color .15s;
    }
    .contact-link:hover { border-color: var(--orange-lt); }

    .contact-link__icon {
      flex-shrink: 0;
      width: 2.75rem; height: 2.75rem;
      display: flex; align-items: center; justify-content: center;
      border-radius: .5rem;
      background: var(--orange); color: var(--navy-dark);
    }
    .contact-link__icon--green { background: var(--green); }

    .contact-link__label { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: rgba(253,253,253,.6); }
    .contact-link__value { font-size: .9375rem; font-weight: 900; word-break: break-all; }

    .social-links { display: grid; gap: .75rem; grid-template-columns: repeat(2, 1fr); margin-top: .75rem; }
    .social-link {
      padding: .9rem 1rem;
      border: 1.5px solid rgba(253,253,253,.12);
      border-radius: .75rem;
      font-size: .875rem; font-weight: 900; color: var(--off-white);
      transition: border-color .15s;
    }
    .social-link:hover { border-color: var(--orange-lt); }

    .enquiry-card {
      margin-top: 1.5rem;
      padding: 1.25rem;
      border-radius: 1rem;
      background: var(--white);
      color: var(--navy);
      box-shadow: 0 18px 46px rgba(0,0,0,.18);
    }
    .enquiry-card h3 {
      font-size: 1.25rem;
      font-weight: 950;
      line-height: 1.2;
    }
    .enquiry-card > p {
      margin-top: .45rem;
      color: var(--slate);
      font-size: .9rem;
      font-weight: 700;
      line-height: 1.55;
    }
    .enquiry-card form { margin-top: 1rem; }
    .enquiry-card .btn { margin-top: 1rem; }
    .enquiry-card form .btn { margin-top: 1.25rem; }
    .enquiry-card--page { box-shadow: 0 20px 52px rgba(9,21,59,.12); }
    .enquiry-page {
      padding: clamp(3rem, 6vw, 5.5rem) 0;
      background: var(--off-white);
    }
    .enquiry-page__layout {
      display: grid;
      gap: 2rem;
      align-items: start;
    }
    @media(min-width:1024px) {
      .enquiry-page__layout { grid-template-columns: minmax(0, .95fr) minmax(24rem, .75fr); }
    }
    .enquiry-page__copy { min-width: 0; }
    .form-notice {
      margin-top: 1rem;
      padding: 1rem;
      border: 1px solid #d1ebc4;
      border-radius: 1rem;
      background: #edf8e8;
      color: #244d12;
      font-weight: 800;
      line-height: 1.55;
    }
    .form-notice--error {
      border-color: #f1c5c0;
      background: #fff1ef;
      color: #8b1f12;
    }

    /* Order form */
    .order-form {
      background: var(--white);
      border-radius: 1rem;
      padding: 1.75rem;
      box-shadow: 0 24px 64px rgba(0,0,0,.22);
      color: var(--navy);
    }
    @media(min-width:640px) { .order-form { padding: 2rem; } }

    .order-form h3 {
      font-size: 1.25rem; font-weight: 900; color: var(--navy);
      margin-bottom: 1.25rem;
    }

    .form-row { display: grid; gap: 1rem; }
    @media(min-width:640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
    @media(min-width:900px) { .order-customer-row { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
    @media(min-width:900px) { .order-builder .form-row { grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.25fr) 7rem; align-items: end; } }

    .form-field { display: flex; flex-direction: column; gap: .4rem; }
    .form-field label { font-size: .8125rem; font-weight: 900; color: var(--navy); }
    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%; padding: .75rem 1rem;
      border: 1.5px solid rgba(103,113,139,.3);
      border-radius: .5rem;
      font-size: .9375rem; font-weight: 600; color: var(--navy);
      background: var(--off-white);
      outline: none;
      transition: border-color .15s, box-shadow .15s;
    }
    .form-field select {
      appearance: none;
      background-image: linear-gradient(45deg, transparent 50%, var(--slate) 50%), linear-gradient(135deg, var(--slate) 50%, transparent 50%);
      background-position: calc(100% - 1rem) 50%, calc(100% - .7rem) 50%;
      background-repeat: no-repeat;
      background-size: .35rem .35rem, .35rem .35rem;
      padding-right: 2.25rem;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: rgba(103,113,139,.6); }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(238,97,8,.18);
    }
    .form-field textarea { resize: vertical; min-height: 7.5rem; }

    .optional-email {
      margin-top: .85rem;
      border-top: 1px solid rgba(13,32,83,.08);
      padding-top: .85rem;
    }
    .optional-email summary {
      width: fit-content;
      cursor: pointer;
      color: var(--slate);
      font-size: .82rem;
      font-weight: 900;
      list-style: none;
    }
    .optional-email summary::-webkit-details-marker { display: none; }
    .optional-email summary::after {
      content: "+";
      display: inline-block;
      margin-left: .45rem;
      color: var(--orange);
      font-weight: 950;
    }
    .optional-email[open] summary::after { content: "-"; }
    .optional-email .form-field { margin-top: .75rem; }

    .eircode-lookup-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: .6rem;
    }
    @media(min-width:420px) {
      .eircode-lookup-row {
        grid-template-columns: minmax(0, 1fr) auto;
      }
    }
    .eircode-lookup-row .btn {
      min-height: 2.95rem;
      white-space: nowrap;
    }

    .order-builder {
      margin-bottom: 1.25rem;
      padding: 1rem;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .75rem;
      background: rgba(13,32,83,.03);
    }
    .order-builder__add {
      width: 100%;
      margin-top: .75rem;
      min-height: 3.65rem;
      background: #25d366;
      color: var(--navy);
      border: 0;
      box-shadow: 0 14px 30px rgba(37,211,102,.24);
      font-size: .98rem;
    }
    .order-builder__add span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1.45rem;
      height: 1.45rem;
      margin-right: .45rem;
      border-radius: 9999px;
      background: rgba(9,21,59,.14);
      font-size: 1.25rem;
      line-height: 1;
    }
    .order-builder__add:hover {
      filter: brightness(.96);
      transform: translateY(-1px);
    }
    .order-builder__add.is-added {
      background: var(--green);
      box-shadow: 0 14px 30px rgba(101,151,51,.24);
    }
    .order-cart {
      margin-top: 1rem;
      overflow: hidden;
      border: 1px solid rgba(13,32,83,.1);
      border-radius: .625rem;
      background: var(--white);
    }
    .order-cart__empty {
      padding: .85rem 1rem;
      font-size: .8125rem;
      font-weight: 700;
      color: var(--slate);
    }
    .order-cart__items { display: grid; }
    .order-cart__item {
      display: grid;
      gap: .75rem;
      padding: .85rem 1rem;
      border-bottom: 1px solid rgba(13,32,83,.08);
    }
    @media(min-width:480px) {
      .order-cart__item {
        grid-template-columns: minmax(0,1fr) auto;
        align-items: center;
      }
    }
    .order-cart__item-text strong {
      display: block;
      font-size: .875rem;
      line-height: 1.3;
      color: var(--navy);
    }
    .order-cart__item-text span {
      display: block;
      margin-top: .2rem;
      font-size: .75rem;
      font-weight: 800;
      color: var(--slate);
    }
    .order-cart__controls {
      display: flex;
      flex-wrap: wrap;
      gap: .35rem;
    }
    .order-cart__controls button {
      min-width: 2.75rem;
      min-height: 2.75rem;
      padding: .35rem .55rem;
      border: 1px solid rgba(13,32,83,.14);
      border-radius: .5rem;
      background: var(--off-white);
      color: var(--navy);
      font-size: .75rem;
      font-weight: 900;
      cursor: pointer;
    }
    .order-cart__controls button[data-action="remove"] {
      min-width: 4.75rem;
    }
    .order-cart__controls button:hover {
      border-color: var(--orange);
      color: var(--orange);
    }
    .order-cart__summary {
      display: grid;
      grid-template-columns: minmax(0,1fr) auto;
      gap: 1rem;
      padding: .85rem 1rem;
      background: rgba(13,32,83,.04);
      font-size: .8125rem;
      font-weight: 900;
      color: var(--navy);
    }
    .order-cart__summary strong { text-align: right; }
    .order-cart__pricing {
      padding: .75rem 1rem;
      border-top: 1px solid rgba(13,32,83,.08);
      font-size: .75rem;
      font-weight: 800;
      color: var(--slate);
    }
    .form-submit { width: 100%; margin-top: 1.25rem; padding: 1rem; font-size: 1rem; border-radius: 9999px; }

    /* ══════════════════════════════════
       FOOTER
    ══════════════════════════════════ */
    .site-footer {
      background: var(--navy-dark);
      color: var(--off-white);
      padding: 3rem 0 2rem;
    }
    .footer__top {
      display: grid; gap: 2rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(253,253,253,.1);
    }
    .footer__top > * { min-width: 0; }
    @media(min-width:640px) { .footer__top { grid-template-columns: repeat(2, 1fr); } }
    @media(min-width:1024px) {
      .footer__top {
        grid-template-columns: minmax(0,1.15fr) minmax(0,.8fr) minmax(0,1.1fr) minmax(15rem,1.2fr);
        gap: 1.75rem;
      }
    }

    .footer__col-title { font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
    .footer__brand .footer__col-title {
      color: var(--orange);
      font-size: .7rem;
      font-weight: 900;
      line-height: 1.5;
      margin-top: 0;
    }
    .footer__col .footer__col-title  { color: var(--off-white); }

    .footer__brand p:not(.footer__col-title) { font-size: .8125rem; font-weight: 600; line-height: 1.7; color: rgba(253,253,253,.75); margin-top: .75rem; }

    .footer__links { list-style: none; margin-top: .75rem; display: flex; flex-direction: column; gap: .5rem; }
    .footer__links a { font-size: .8125rem; font-weight: 600; color: rgba(253,253,253,.78); transition: color .15s; }
    .footer__links a:hover { color: var(--orange-lt); }

    .footer__locations {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(253,253,253,.1);
    }

    .footer__location-links {
      margin-top: .8rem;
      list-style: none;
      display: grid;
      gap: .45rem 1rem;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer__contact { margin-top: .75rem; display: flex; flex-direction: column; gap: .5rem; }
    .footer__contact a { font-size: .8125rem; font-weight: 600; color: rgba(253,253,253,.85); transition: color .15s; overflow-wrap: anywhere; word-break: normal; }
    .footer__contact a:hover { color: var(--orange-lt); }
    .footer__contact p { font-size: .8125rem; font-weight: 600; color: rgba(253,253,253,.65); }

    @media(min-width:1024px) {
      .footer__location-links {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .footer__bottom {
      margin-top: 1.5rem;
      display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
    }
    .footer__legal { font-size: .75rem; font-weight: 600; color: rgba(253,253,253,.5); }
    .footer__legal-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
    .footer__legal-links a { font-size: .75rem; font-weight: 700; color: rgba(253,253,253,.5); transition: color .15s; }
    .footer__legal-links a:hover { color: var(--orange-lt); }

    /* ══════════════════════════════════
       FLOATING ACTIONS
    ══════════════════════════════════ */
    .floating-actions {
      position: fixed;
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
      z-index: 70;
      display: flex;
      align-items: flex-end;
      gap: .65rem;
      pointer-events: none;
    }
    .floating-whatsapp,
    .back-to-top {
      pointer-events: auto;
      border: 0;
      box-shadow: 0 18px 42px rgba(9,21,59,.2);
    }
    .floating-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: .75rem;
      max-width: min(20rem, calc(100vw - 6rem));
      padding: .78rem .95rem;
      border-radius: 1rem;
      background: #25D366;
      color: var(--white);
      transition: transform .15s, box-shadow .15s, background .15s;
    }
    .floating-whatsapp:hover {
      background: #1ebe5b;
      transform: translateY(-2px);
      box-shadow: 0 22px 48px rgba(9,21,59,.24);
    }
    .floating-whatsapp__icon {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.3rem;
      height: 2.3rem;
      border-radius: 999px;
      background: rgba(255,255,255,.18);
    }
    .floating-whatsapp__copy {
      display: grid;
      gap: .05rem;
      min-width: 0;
      line-height: 1.15;
    }
    .floating-whatsapp__copy strong {
      font-size: .9rem;
      font-weight: 950;
    }
    .floating-whatsapp__copy span {
      overflow: hidden;
      color: rgba(255,255,255,.9);
      font-size: .72rem;
      font-weight: 850;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .back-to-top {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.9rem;
      height: 2.9rem;
      border-radius: 999px;
      background: var(--navy-dark);
      color: var(--off-white);
      cursor: pointer;
      opacity: 0;
      transform: translateY(.75rem);
      transition: opacity .18s, transform .18s, background .15s;
      pointer-events: none;
    }
    .back-to-top.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .back-to-top:hover { background: var(--orange); color: var(--navy-dark); }
    @media(max-width:520px) {
      .floating-actions {
        right: .75rem;
        bottom: .75rem;
        gap: .5rem;
      }
      .floating-whatsapp {
        max-width: calc(100vw - 5.4rem);
        padding: .7rem .78rem;
        border-radius: .9rem;
      }
      .floating-whatsapp__copy span { display: none; }
      .floating-whatsapp__copy strong { font-size: .84rem; }
      .floating-whatsapp__icon {
        width: 2.05rem;
        height: 2.05rem;
      }
      .back-to-top {
        width: 2.65rem;
        height: 2.65rem;
      }
    }

    /* ══════════════════════════════════
       MISC HELPERS
    ══════════════════════════════════ */
    @media(prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }
