
  :root{
    --navy:#0a1e45;
    --navy-2:#0c3b6a;
    --blue:#1f7fc9;
    --blue-bright:#2aa8e0;
    --blue-deep:#155a9a;
    --sky:#e8f4fc;
    --sky-2:#d3e9f8;
    --ink:#1c2733;
    --muted:#5e7186;
    --line:#dbe6f0;
    --paper:#ffffff;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html,body{
    background-color:#dbeaf6;
    background-image:
      /* soft caustic light spots */
      radial-gradient(circle at 18% 22%, rgba(255,255,255,.55), transparent 14%),
      radial-gradient(circle at 72% 38%, rgba(255,255,255,.40), transparent 12%),
      radial-gradient(circle at 38% 70%, rgba(255,255,255,.45), transparent 13%),
      radial-gradient(circle at 88% 82%, rgba(255,255,255,.35), transparent 10%),
      radial-gradient(circle at 8% 90%, rgba(255,255,255,.30), transparent 11%),
      /* subtle wave SVG layer */
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='600' height='200' viewBox='0 0 600 200'><path d='M0 100 Q 75 70 150 100 T 300 100 T 450 100 T 600 100' fill='none' stroke='%231f7fc9' stroke-width='1.2' stroke-opacity='0.18'/><path d='M0 140 Q 75 110 150 140 T 300 140 T 450 140 T 600 140' fill='none' stroke='%232aa8e0' stroke-width='1' stroke-opacity='0.14'/><path d='M0 60 Q 75 30 150 60 T 300 60 T 450 60 T 600 60' fill='none' stroke='%23155a9a' stroke-width='1' stroke-opacity='0.12'/></svg>"),
      /* deep color washes */
      radial-gradient(1100px 750px at 110% -10%, rgba(42,168,224,.32), transparent 60%),
      radial-gradient(950px 700px at -10% 110%, rgba(21,90,154,.30), transparent 60%),
      radial-gradient(900px 600px at 50% 50%, rgba(159,214,244,.25), transparent 70%),
      /* base aqua gradient */
      linear-gradient(160deg, #bcdcf2 0%, #d6e9f7 45%, #cfe4f3 100%);
    background-size:
      auto, auto, auto, auto, auto,
      600px 200px,
      auto, auto, auto,
      auto;
    background-attachment:fixed;
    font-family:'Mulish',sans-serif;color:var(--ink);
  }
  .stage{padding:clamp(10px,1.5vw,18px) clamp(8px,2.5vw,26px) clamp(30px,6vw,70px);}
  /* Phelps image sits directly above the white sheet, same max-width, centered,
     bottom edge flush against the top of #sheet so he appears to be swimming over the page. */
  .phelps-overhead{
    display:block;
    width:1280px;
    max-width:100%;
    height:auto;
    margin:0 auto -1px; /* -1px erases sub-pixel seam between image and sheet */
    pointer-events:none;
    user-select:none;
  }
  #sheet{
    width:1280px;max-width:100%;margin:0 auto;background:#fff;color:var(--ink);
    box-shadow:0 30px 60px -20px rgba(11,37,69,.55);
    position:relative;overflow:hidden;
    border-radius:36px 36px 36px 36px;
  }
  /* HEADER — 3-column grid:
     col 1 = reserved space for the overlapping logo circle (240px wide, matches .hero .overlap-logo)
     col 2 = MasterSpas Difference (flexible center column)
     col 3 = Contact strip (sized to its content)
     This keeps the MasterSpas block ALWAYS anchored to the right of the circle,
     regardless of viewport width, until the responsive breakpoint kicks in. */
  .top{
    padding:24px 40px 24px 340px; /* left padding reserves space for overlapping logo */
    background:#eaf6fc;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:32px;
    position:relative;
    min-height:120px;
  }
  .top .header-logo{
    position:absolute;
    left:40px;
    top:20px;
    width:240px;
    height:240px;
    display:block;
    filter:drop-shadow(0 12px 20px rgba(11,37,69,.35));
    z-index:5;
  }
  .top .header-google-tile{
    position:absolute;
    left:95px;
    top:310px;
    width:130px;
    height:74px;
    background:#fff;
    border-radius:12px;
    padding:6px 10px;
    box-shadow:0 6px 14px -6px rgba(11,37,69,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
  }
  .top .header-google-tile img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
  }
  .top img.banner{
    display:none;
  }
  .top img.google-reviews{
    display:none;
  }
  /* Contact strip — phone + email stacked, right-aligned */
  .contact-strip{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
  }
  .contact-item{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .contact-icon{
    width:28px;
    height:28px;
    flex:none;
  }
  .contact-text{display:flex;flex-direction:column;line-height:1.15;}
  .contact-label{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:0.78rem;
    color:#0b2545;
    letter-spacing:0.08em;
    text-transform:uppercase;
    white-space:nowrap;
  }
  .contact-value{
    font-family:'Mulish',sans-serif;
    font-size:0.82rem;
    color:#5e7186;
    text-decoration:none;
    font-weight:500;
    margin-top:2px;
    white-space:nowrap;
  }
  .contact-value:hover{color:var(--blue-deep);}
  .contact-value-phone{
    font-family:'Outfit',sans-serif;
    font-size:1.45rem;
    font-weight:700;
    letter-spacing:0.01em;
    color:#0b2545;
  }
  .contact-value-email{
    font-weight:700;
    color:#0b2545;
    font-size:1.35rem;
  }
  .top .masterspas-header{
    text-align:left;
    min-width:0;
  }
  .top .masterspas-header .difference{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:clamp(1.05rem,2.6vw,1.5rem);
    color:#0b2545;
    letter-spacing:0.05em;
    text-transform:uppercase;
    margin-bottom:2px;
  }
  .top .masterspas-header .difference .the{
    font-weight:400;
    font-size:clamp(0.85rem,2.1vw,1.2rem);
  }
  .top .masterspas-header .difference .master{
    color:#0b2545;
  }
  .top .masterspas-header .difference .spas{
    color:#2aa8e0;
  }
  .top .masterspas-header .dealer{
    font-family:'Mulish',sans-serif;
    font-size:0.85rem;
    color:#5e7186;
    font-weight:400;
  }
  .bar{height:8px;background:#2aa8e0;}
  /* hero band — BLUE HEADER */
  .hero{
    background:#011330;
    color:#fff;padding:64px 56px 56px 300px;position:relative;overflow:hidden;
  }
  .hero .overlap-logo{display:none;}
  .hero::after{
    content:"";position:absolute;right:-90px;top:-90px;width:340px;height:340px;
    border-radius:50%;background:radial-gradient(circle,rgba(42,168,224,.34),transparent 68%);
  }
  .hero .eyebrow{
    font-family:'Outfit',sans-serif;font-weight:600;font-size:.86rem;
    letter-spacing:.14em;text-transform:uppercase;color:var(--blue-bright);
  }
  .hero h1{
    font-family:'Outfit',sans-serif;font-weight:800;font-size:clamp(1.8rem,5vw,3.1rem);
    line-height:1.05;letter-spacing:-.02em;margin:10px 0 12px;
    position:relative;z-index:1;
  }
  .hero h1 .h1grad{
    background:linear-gradient(120deg,#fff,#9fd6f4);
    -webkit-background-clip:text;background-clip:text;color:transparent;
  }
  .hero h1 .h1line{display:block;}
  .hero p{
    font-size:clamp(.98rem,1.6vw,1.12rem);color:#cfe0f0;font-weight:500;line-height:1.6;
    max-width:680px;position:relative;z-index:1;
  }
  /* PRODUCT ROWS — image-only cards (clean redrawn, no baked-in borders) */
  .product-section{
    background:#0f3a6e;
    padding:clamp(30px,5vw,50px) clamp(20px,4vw,40px) clamp(20px,3vw,30px);
  }
  .product-section.light{
    background:#0f3a6e;
    padding:0 clamp(20px,4vw,40px) clamp(20px,3vw,30px);
  }
  .product-section.swim-spas{
    padding-top:12px;
    padding-bottom:clamp(36px,5vw,60px);
  }
  .product-row{
    display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(14px,2vw,24px);
    margin-bottom:10px;
  }
  .product-card{
    display:block;
    position:relative;
    line-height:0;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 30px -12px rgba(0,0,0,.5);
    transition:transform .2s ease, filter .2s ease, box-shadow .2s ease;
  }
  .product-card:hover{
    transform:translateY(-4px);
    filter:brightness(1.08);
    box-shadow:0 22px 40px -14px rgba(0,0,0,.6);
  }
  .product-card img{
    width:100%;
    aspect-ratio: 4 / 5;
    height:auto;
    object-fit:cover;
    object-position:center;
    display:block;
  }
  /* Tap target — only the bottom 25% of the card is clickable.
     Prevents accidental taps during mobile scroll. */
  .product-card-link{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:25%;
    display:block;
    text-decoration:none;
    z-index:2;
  }
  .section-intro{
    text-align:center;color:#fff;margin-bottom:36px;
  }
  .section-intro .eyebrow{
    font-family:'Outfit',sans-serif;font-weight:600;font-size:.84rem;
    letter-spacing:.16em;text-transform:uppercase;color:var(--blue-bright);
    margin-bottom:8px;
  }
  .section-intro h2{
    font-family:'Outfit',sans-serif;font-weight:800;font-size:clamp(1.5rem,3.6vw,2.2rem);
    color:#fff;letter-spacing:-.02em;
  }
  /* feature/check/benefit sections */
  .section{padding:clamp(32px,5vw,48px) clamp(24px,5vw,56px) 8px;}
  .section.alt{
    background:linear-gradient(160deg,#f4faff,#ffffff);
    padding-bottom:clamp(48px,7vw,80px);
  }
  .sec-h{
    font-family:'Outfit',sans-serif;font-weight:700;font-size:1rem;
    letter-spacing:.1em;text-transform:uppercase;color:var(--blue-deep);
    margin-bottom:6px;display:flex;align-items:center;gap:12px;
  }
  .sec-h::after{content:"";flex:1;height:1.8px;background:var(--line);}
  .benefits-banner{
    display:block;
    width:100%;
    height:auto;
    aspect-ratio: 1140 / 300;
    object-fit:cover;
    border-radius:18px;
    margin-bottom:24px;
    box-shadow:0 14px 30px -14px rgba(11,37,69,.35);
  }
  .sec-title{
    font-family:'Outfit',sans-serif;font-weight:800;font-size:clamp(1.4rem,3.4vw,2.05rem);
    color:var(--navy);letter-spacing:-.02em;line-height:1.1;margin-bottom:6px;
  }
  .sec-intro{font-size:clamp(.95rem,1.5vw,1.05rem);color:var(--muted);font-weight:500;margin-bottom:24px;max-width:760px;}
  .feat-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:16px;
  }
  .feat{
    display:flex;gap:16px;align-items:flex-start;
    background:#fff;border:1px solid var(--line);border-radius:14px;
    padding:18px 20px;
  }
  .feat .num{
    flex:none;width:42px;height:42px;border-radius:11px;
    background:linear-gradient(150deg,var(--blue-bright),var(--blue-deep));
    color:#fff;font-family:'Outfit',sans-serif;font-weight:800;font-size:1.2rem;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 7px 14px -6px rgba(21,90,154,.65);
  }
  .feat .ft{flex:1;}
  .feat .ft h3{
    font-family:'Outfit',sans-serif;font-weight:700;font-size:1.04rem;
    color:var(--navy);margin-bottom:3px;letter-spacing:.01em;
  }
  .feat .ft p{font-size:.95rem;color:var(--muted);font-weight:500;line-height:1.5;}
  .warranty{
    margin-top:18px;background:linear-gradient(135deg,var(--navy),var(--navy-2));
    border-radius:16px;padding:24px 28px;color:#fff;
    display:flex;align-items:center;gap:22px;flex-wrap:wrap;
    box-shadow:0 18px 32px -18px rgba(11,37,69,.7);
  }
  .warranty .wico{
    flex:none;width:54px;height:54px;border-radius:13px;
    background:rgba(42,168,224,.22);display:flex;align-items:center;justify-content:center;
  }
  .warranty .wt{flex:1;min-width:240px;}
  .warranty .wt h3{
    font-family:'Outfit',sans-serif;font-weight:800;font-size:1.16rem;color:#fff;
    margin-bottom:3px;
  }
  .warranty .wt p{font-size:.96rem;color:#cfe0f0;font-weight:500;line-height:1.5;}
  .check-grid{
    display:grid;grid-template-columns:1fr 1fr;gap:11px 26px;
  }
  .check{
    display:flex;gap:12px;align-items:flex-start;
    font-size:1rem;color:var(--ink);font-weight:600;line-height:1.45;
  }
  .check .ck{
    flex:none;width:24px;height:24px;border-radius:50%;margin-top:1px;
    background:linear-gradient(150deg,var(--blue-bright),var(--blue-deep));
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 3px 7px -2px rgba(21,90,154,.6);
    color:#fff;font-weight:700;font-size:.75rem;
  }
  .ben-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
  }
  .ben{
    background:linear-gradient(140deg,var(--sky),#f4faff);
    border:1px solid var(--sky-2);border-radius:13px;padding:16px 16px 17px;
    position:relative;
  }
  .ben .bnum{
    font-family:'Outfit',sans-serif;font-weight:800;font-size:.86rem;
    color:#fff;background:var(--blue);border-radius:6px;
    width:26px;height:26px;display:flex;align-items:center;justify-content:center;
    margin-bottom:10px;
  }
  .ben h4{
    font-family:'Outfit',sans-serif;font-weight:700;font-size:1rem;
    color:var(--navy);margin-bottom:3px;line-height:1.2;
  }
  .ben p{font-size:.88rem;color:var(--muted);font-weight:500;line-height:1.45;}
  .usage-note{
    margin-top:20px;background:#f7fafd;border:1px solid var(--line);
    border-left:5px solid var(--blue);border-radius:10px;padding:15px 20px;
    font-size:1rem;color:var(--ink);font-weight:600;
  }
  .usage-note b{color:var(--blue-deep);}
  /* TESTIMONIALS — auto-scroll + drag/swipe + arrow controls */
  .testimonials{
    margin-top:28px;
    position:relative;
  }
  .testimonials-viewport{
    overflow:hidden;
    scrollbar-width:none;
    -ms-overflow-style:none;
    touch-action:pan-y;
    -webkit-mask-image:linear-gradient(to right,transparent 0,#000 6%,#000 94%,transparent 100%);
            mask-image:linear-gradient(to right,transparent 0,#000 6%,#000 94%,transparent 100%);
  }
  .testimonials-viewport::-webkit-scrollbar{display:none;}
  .testimonials-track{
    display:flex;
    width:max-content;
    will-change:transform;
  }
  .testimonial{
    flex:0 0 360px;
    margin-right:18px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    padding:22px 22px 20px;
    text-align:center;
    box-shadow:0 8px 18px -10px rgba(11,37,69,.25);
    user-select:none;
  }
  .testimonial .stars{
    color:#f5b324;
    font-size:1.1rem;
    letter-spacing:.18em;
    margin-bottom:10px;
  }
  .testimonial h4{
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:1.02rem;
    color:var(--navy);
    margin-bottom:12px;
  }
  .testimonial p{
    font-size:.92rem;
    color:var(--ink);
    font-style:italic;
    font-weight:500;
    line-height:1.55;
    text-align:left;
    margin-bottom:10px;
  }
  .testimonial .attrib{
    font-size:.88rem;
    color:var(--muted);
    font-style:italic;
    font-weight:600;
    text-align:left;
  }
  /* Arrow buttons */
  .testi-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border-radius:50%;
    border:none;
    background:#fff;
    color:var(--blue-deep);
    box-shadow:0 6px 16px -4px rgba(11,37,69,.4);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:4;
    transition:background .15s ease, transform .15s ease, box-shadow .15s ease;
  }
  .testi-arrow:hover{
    background:var(--blue-bright);
    color:#fff;
    box-shadow:0 10px 22px -6px rgba(42,168,224,.6);
  }
  .testi-arrow:active{transform:translateY(-50%) scale(.92);}
  .testi-arrow svg{width:22px;height:22px;}
  .testi-arrow.prev{left:-6px;}
  .testi-arrow.next{right:-6px;}
  @media (max-width:780px){
    .testimonial{flex-basis:280px;padding:18px;}
    .testi-arrow{
      width:38px;height:38px;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(2px);
      -webkit-backdrop-filter:blur(2px);
    }
    .testi-arrow.prev{left:4px;}
    .testi-arrow.next{right:4px;}
    .testi-arrow svg{width:20px;height:20px;}
  }
  .love-quote{
    margin-top:10px;
    margin-bottom:24px;
    padding:18px 24px 8px;
    text-align:center;
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:clamp(1.15rem,2.6vw,1.7rem);
    color:var(--navy);
    letter-spacing:-.01em;
    line-height:1.2;
    position:relative;
    border-top:1.5px solid var(--line);
    border-bottom:1.5px solid var(--line);
  }
  .love-quote-badge{
    display:block;
    width:220px;
    height:auto;
    margin:0 auto 14px;
  }
  .love-quote-text{
    background:linear-gradient(120deg,var(--navy) 0%,var(--blue-deep) 55%,var(--blue-bright) 100%);
    -webkit-background-clip:text;background-clip:text;color:transparent;
    padding:0 4px;
  }
  .love-quote-mark{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1.8em;
    color:var(--blue-bright);
    line-height:0;
    vertical-align:-0.3em;
    opacity:.55;
  }
  .love-quote-mark-l{margin-right:6px;}
  .love-quote-mark-r{margin-left:6px;}
  /* REVIEW CALLOUT */
  .review-callout{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:16px;
    padding:20px 28px;
    margin:32px auto 24px;
    max-width:760px;
    background:linear-gradient(135deg,#fff8e1 0%,#ffefb8 100%);
    border:2px solid #f5b800;
    border-radius:14px;
    box-shadow:0 6px 18px -6px rgba(245,184,0,.5);
    font-family:'Outfit',sans-serif;
    font-size:clamp(1.15rem,2.2vw,1.5rem);
    font-weight:800;
    color:var(--navy);
    line-height:1.3;
  }
  .review-callout .stars{
    display:inline-flex;gap:3px;margin-left:8px;
    color:#f5b800;font-size:1.8rem;vertical-align:middle;
    text-shadow:0 1px 2px rgba(0,0,0,.1);
  }
  @media(max-width:620px){
    .review-callout{
      padding:16px 18px;
      gap:12px;
      border-radius:12px;
    }
    .review-callout .stars{
      display:block;margin:4px 0 0 0;font-size:1.4rem;
    }
  }
  /* LOCATIONS FOOTER */
  .locations{
    background:linear-gradient(115deg,var(--navy),var(--navy-2));
    padding:clamp(36px,5vw,50px) clamp(24px,5vw,56px);color:#fff;
  }
  .locations-header{
    text-align:center;margin-bottom:28px;
  }
  .locations-header .eyebrow{
    font-family:'Outfit',sans-serif;font-weight:600;font-size:.84rem;
    letter-spacing:.16em;text-transform:uppercase;color:var(--blue-bright);
    margin-bottom:8px;
  }
  .locations-header h2{
    font-family:'Outfit',sans-serif;font-weight:800;font-size:clamp(1.4rem,3.4vw,2rem);
    color:#fff;
  }
  .locations-header .dealer-name{
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:clamp(1rem,2.2vw,1.35rem);
    letter-spacing:.12em;
    color:var(--blue-bright);
    margin-top:12px;
  }
  .locations-grid{
    display:flex;flex-wrap:wrap;justify-content:center;
    gap:clamp(14px,2vw,22px);
    max-width:1080px;margin:0 auto;
  }
  .locations-grid .loc-card{
    flex:0 1 calc((100% - 2 * clamp(14px,2vw,22px)) / 3);
    min-width:240px;
  }
  .loc-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;padding:24px 22px;
    backdrop-filter:blur(8px);
  }
  .loc-card h3{
    font-family:'Outfit',sans-serif;font-weight:700;font-size:1.35rem;
    color:#fff;margin-bottom:6px;text-transform:uppercase;letter-spacing:0.05em;
  }
  .loc-card .addr{
    font-size:1.08rem;color:#dbe9f7;line-height:1.6;font-weight:500;
  }
  .loc-card .addr b{color:#fff;font-weight:700;display:block;margin-bottom:4px;font-size:1.14rem;}
  .loc-card .loc-contact{
    margin-top:10px;
    font-size:.92rem;
    color:#cfe0f0;
    line-height:1.55;
    font-weight:500;
  }
  .loc-card .loc-contact a{
    display:block;
    color:#cfe0f0;
    text-decoration:none;
    word-break:break-word;
  }
  .loc-card .loc-contact a:hover{color:#9fd6f4;}
  .loc-card .hours{
    font-size:.86rem;color:#9fd6f4;font-weight:600;margin-top:10px;
    padding-top:10px;border-top:1px solid rgba(255,255,255,.08);
  }
  .loc-card .view-deals{
    display:block;
    margin-top:14px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .loc-card .view-deals a{
    display:block;
    width:100%;
    text-align:center;
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#fff;
    text-decoration:none;
    background:linear-gradient(180deg,#2aa8e0 0%,#1f7fc9 100%);
    border-radius:10px;
    padding:13px 16px;
    box-shadow:0 8px 18px -6px rgba(42,168,224,.6);
    transition:transform .15s ease, filter .15s ease, box-shadow .15s ease;
  }
  .loc-card .view-deals a:hover{
    transform:translateY(-2px);
    filter:brightness(1.06);
    box-shadow:0 12px 24px -6px rgba(42,168,224,.7);
  }
  .loc-card .view-deals a:active{transform:translateY(0);}
  /* Footer two-column block: MasterSpas Cares | Made in USA + MasterSpas logo */
  .foot-cols{
    margin-top:28px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:40px;
  }
  .foot-col{
    display:flex;
    flex-direction:column;
    align-items:center;
  }
  .foot-col-title{
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:0.95rem;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#9fd6f4;
    margin-bottom:14px;
  }
  .cares-spas{color:#fff;}
  /* Duck — floats on water with bobbing motion and propagating ripple rings */
  .duck-wrap{
    position:relative;
    width:360px;
    margin:32px auto 4px;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    pointer-events:none;
  }
  .nash-duck{
    display:block;
    width:300px;
    height:auto;
    position:relative;
    z-index:2;
    animation:duckBob 3.4s ease-in-out infinite;
    transform-origin:50% 100%;
  }
  /* Ripple rings sit behind the duck, anchored at the waterline (duck's bottom) */
  .duck-ripple{
    position:absolute;
    left:50%;
    bottom:8px;            /* waterline — adjust to match duck's belly */
    width:180px;
    height:32px;           /* flat ellipse = water surface perspective */
    margin-left:-90px;
    border:4px solid rgba(255,255,255,.85);
    border-radius:50%;
    opacity:0;
    transform:scale(.35);
    animation:duckRipple 3.4s ease-out infinite;
    z-index:1;
  }
  .duck-ripple.r2{animation-delay:1.13s;border-color:rgba(255,255,255,.7);}
  .duck-ripple.r3{animation-delay:2.26s;border-color:rgba(255,255,255,.55);}
  @keyframes duckBob{
    0%,100%{transform:translateY(0) rotate(-1.8deg);}
    50%   {transform:translateY(-10px) rotate(1.8deg);}
  }
  @keyframes duckRipple{
    0%  {opacity:0;   transform:scale(.35);}
    15% {opacity:.85;}
    100%{opacity:0;   transform:scale(2.2);}
  }
  /* duck animation intentionally always on (matches fireworks override) */
  .cares-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
  }
  .foot-divider{
    width:1px;
    align-self:stretch;
    background:linear-gradient(180deg,transparent,rgba(255,255,255,.18),transparent);
  }
  .made-usa{
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:0.95rem;
    letter-spacing:0.2em;
    color:#fff;
    background:#0b2545;
    padding:8px 20px;
    margin-bottom:14px;
    text-transform:uppercase;
    border:1px solid rgba(255,255,255,.12);
  }
  .logo-tile{
    width:195px;
    height:108px;
    background:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:14px 18px;
    box-shadow:0 6px 14px -8px rgba(0,0,0,.4);
  }
  .logo-tile img{
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
  }
  .logo-tile-lg{
    width:280px;
    height:130px;
    padding:18px 26px;
  }
  @media(max-width:760px){
    .foot-cols{
      flex-direction:column;
      gap:24px;
    }
    .foot-divider{
      width:60%;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
    }
    .cares-grid{grid-template-columns:repeat(2,1fr);}
    .logo-tile{width:190px;height:104px;}
  }
  /* Tablets (portrait iPads up to 1024px): the horizontal footer row is too wide
     and the right column (Made in USA / MasterSpas) gets cut off, so stack the
     columns and flip the divider to horizontal. */
  @media(min-width:761px) and (max-width:1024px){
    .foot-cols{
      flex-direction:column;
      gap:28px;
    }
    .foot-divider{
      width:60%;
      height:1px;
      align-self:center;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
    }
  }
  .foot-bottom{
    margin-top:38px;padding-top:24px;border-top:1px solid rgba(255,255,255,.1);
    display:flex;justify-content:center;align-items:center;
    flex-wrap:wrap;gap:24px;
    font-size:1.02rem;
  }
  .foot-bottom .copyright{
    color:#9fd6f4;
    font-weight:600;
  }
  .foot-bottom .ms-link{
    color:#cfe0f0;font-size:.95rem;text-decoration:none;
    border-bottom:1px solid rgba(207,224,240,.3);
  }
  .foot-bottom .ms-link:hover{color:#fff;}
  /* ============ RESPONSIVE BREAKPOINTS ============ */
  /* Tablet landscape and below — logo moves inline, no overlap */
  @media(max-width:1060px){
    #sheet{width:100%;}
    .feat-grid,.check-grid{grid-template-columns:1fr;}
    .ben-grid{grid-template-columns:1fr 1fr;}
    /* Header: logo on top, then title, then contact — with REAL spacing */
    .top{
      padding:32px 28px;
      flex-direction:column;
      gap:24px;
      min-height:0;
      text-align:center;
    }
    .top .header-logo{
      position:static;
      transform:none;
      width:240px;
      height:240px;
      margin-bottom:8px;
    }
    .top .masterspas-header .difference{
      font-size:clamp(1.35rem,4vw,1.7rem);
    }
    .top .header-google-tile{
      position:static;
      width:auto;
      height:auto;
      max-width:160px;
      padding:6px 10px;
      margin:0 auto;
    }
    .top .masterspas-header{text-align:center;}
    .contact-strip{
      align-items:center;
      justify-content:center;
      gap:14px;
    }
    .hero{padding:48px 28px;text-align:center;}
    .hero p{margin-left:auto;margin-right:auto;}
    .product-row{grid-template-columns:1fr;}
    .locations-grid .loc-card{flex:1 1 100%;}
  }
  /* Tablet portrait */
  @media(max-width:820px){
    .ben-grid{grid-template-columns:1fr 1fr;gap:12px;}
    .warranty{padding:20px 22px;gap:16px;}
    .check-grid > div[style*="grid-column:2"]{
      grid-column:1 !important;
    }
  }
  /* Mobile */
  @media(max-width:620px){
    .ben-grid{grid-template-columns:1fr;}
    .top{padding:28px 20px;gap:22px;}
    .top .header-logo{width:210px;height:210px;}
    .contact-strip{
      gap:18px;
      flex-direction:column;
      align-items:center;
      width:100%;
    }
    .contact-item{
      width:auto;
      justify-content:center;
      max-width:100%;
    }
    .contact-item .contact-text{
      min-width:0;
    }
    /* Phone stays prominent on mobile — this was being shrunk by the old
       blanket .contact-value rule. Keep it large and tappable. */
    .contact-value-phone{
      font-size:1.5rem;
    }
    /* Only the email needs to shrink/wrap so the long address fits small screens. */
    .contact-value-email{
      font-size:1.18rem;
      word-break:break-word;
      overflow-wrap:anywhere;
      white-space:normal;
    }
    .section{padding-left:20px;padding-right:20px;}
    .product-section,.product-section.light{padding-left:18px;padding-right:18px;}
    .locations{padding-left:20px;padding-right:20px;}
    .feat{padding:14px 16px;gap:12px;}
    .feat .num{width:36px;height:36px;font-size:1.05rem;}
    .warranty{padding:18px 18px;flex-direction:column;align-items:flex-start;text-align:left;}
    .warranty .wt{min-width:0;width:100%;}
    .loc-card{padding:20px 18px;}
    .foot-bottom{flex-direction:column;gap:10px;text-align:center;font-size:.95rem;}
  }
  /* Small phones */
  @media(max-width:400px){
    .top .header-logo{width:180px;height:180px;}
    .top .masterspas-header .difference{letter-spacing:.03em;}
    .contact-value-phone{font-size:1.35rem;}
    .contact-value-email{font-size:1.1rem;}
    .check{font-size:.95rem;}
    .check .ck{width:22px;height:22px;}
  }
  /* Footer cols breakpoint */
  @media(max-width:760px){
    .foot-cols{
      flex-direction:column;
      gap:24px;
    }
    .foot-divider{
      width:60%;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.18),transparent);
    }
    .cares-grid{grid-template-columns:repeat(3,1fr);}
    .logo-tile{width:auto;max-width:190px;height:104px;}
  }
  @media(max-width:480px){
    .cares-grid{grid-template-columns:repeat(2,1fr);gap:10px;}
    .logo-tile{width:100%;max-width:none;height:94px;}
    .logo-tile-lg{width:240px;height:118px;}
  }
  /* ====== INQUIRY BUTTON + MODAL ====== */
  .inquiry-cta-wrap{
    display:flex;
    justify-content:center;
    margin-top:28px;
    margin-bottom:4px;
  }
  .inquiry-btn{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1.15rem;
    letter-spacing:0.04em;
    text-transform:uppercase;
    color:#fff;
    background:linear-gradient(180deg,#e63946 0%,#c1121f 100%);
    border:none;
    border-radius:999px;
    padding:18px 42px;
    cursor:pointer;
    box-shadow:
      0 14px 28px -10px rgba(193,18,31,.55),
      0 4px 10px -2px rgba(193,18,31,.4),
      inset 0 1px 0 rgba(255,255,255,.25);
    transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
    display:inline-flex;
    align-items:center;
    gap:12px;
  }
  .inquiry-btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.05);
    box-shadow:
      0 20px 36px -10px rgba(193,18,31,.65),
      0 6px 14px -2px rgba(193,18,31,.45),
      inset 0 1px 0 rgba(255,255,255,.3);
  }
  .inquiry-btn:active{transform:translateY(0);}
  .inquiry-btn svg{width:22px;height:22px;flex:none;}
  /* Financing + Event banners — image links inside the finance-section */
  .finance-banner{
    display:block;
    flex:1 1 0;
    min-width:0;
    max-width:580px;
    border-radius:18px;
    overflow:hidden;
    box-shadow:
      0 18px 38px -14px rgba(11,37,69,.35),
      0 6px 14px -4px rgba(11,37,69,.22);
    transition:transform .2s ease, box-shadow .2s ease;
    line-height:0;
  }
  .finance-banner img{
    display:block;
    width:100%;
    height:auto;
  }
  .finance-banner:hover{
    transform:translateY(-3px);
    box-shadow:
      0 24px 48px -14px rgba(11,37,69,.45),
      0 8px 18px -4px rgba(42,168,224,.30);
  }
  /* Finance + event ads — pale aqua section above the navy locations footer */
  .finance-section{
    background:#e8f4fc;
    padding:clamp(28px,5vw,48px) clamp(20px,4vw,40px);
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:clamp(20px,3vw,32px);
  }
  @media (max-width:760px){
    .finance-banner{flex:1 1 100%;max-width:520px;}
  }
  /* Smaller variant for the header */
  .inquiry-btn.sm{
    font-size:.92rem;
    padding:12px 26px;
    letter-spacing:.05em;
  }
  .inquiry-btn.sm svg{width:18px;height:18px;}
  /* Header CTA placement under the email in the contact strip */
  .top .header-cta{
    margin-top:6px;
    display:flex;
    justify-content:center;
  }
  /* Footer CTA placement under dealer name */
  .locations-header .footer-cta{
    margin-top:18px;
    display:flex;
    justify-content:center;
  }
  .inq-overlay{
    position:fixed;inset:0;
    background:rgba(10,30,69,.72);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:20px;
    animation:inqFade .2s ease;
  }
  .inq-overlay.open{display:flex;}
  @keyframes inqFade{from{opacity:0}to{opacity:1}}
  @keyframes inqRise{from{opacity:0;transform:translateY(20px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}
  .inq-modal{
    background:#fff;
    width:100%;
    max-width:460px;
    border-radius:24px;
    padding:36px 32px 32px;
    box-shadow:0 40px 80px -20px rgba(11,37,69,.5);
    position:relative;
    animation:inqRise .25s ease;
  }
  .inq-close{
    position:absolute;top:14px;right:14px;
    width:36px;height:36px;border-radius:50%;
    border:none;background:#f1f5f9;color:#5e7186;
    font-size:1.4rem;line-height:1;cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:background .15s ease,color .15s ease;
  }
  .inq-close:hover{background:#e63946;color:#fff;}
  .inq-modal h3{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1.55rem;
    color:#0a1e45;
    margin-bottom:6px;
    line-height:1.15;
    text-transform:uppercase;
    text-align:center;
    letter-spacing:.01em;
  }
  .inq-modal .inq-sub{
    color:#5e7186;
    font-size:.95rem;
    margin-bottom:22px;
    text-align:center;
  }
  .inq-required{
    background:#eaf4fb;
    border-radius:16px;
    padding:18px 16px;
    margin-bottom:6px;
  }
  .inq-required .inq-field input,
  .inq-required .inq-toggle label{
    background:#fff;
  }
  .inq-field{margin-bottom:14px;}
  .inq-field label{
    display:block;
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:.78rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#0a1e45;
    margin-bottom:6px;
  }
  .inq-field label .opt{color:#94a3b8;font-weight:600;text-transform:none;letter-spacing:0;margin-left:6px;}
  .inq-field input{
    width:100%;
    padding:13px 14px;
    border:1.5px solid #dbe6f0;
    border-radius:12px;
    font-family:'Mulish',sans-serif;
    font-size:1rem;
    color:#1c2733;
    background:#fff;
    transition:border-color .15s ease, box-shadow .15s ease;
  }
  .inq-field input:focus{
    outline:none;
    border-color:#1f7fc9;
    box-shadow:0 0 0 4px rgba(31,127,201,.15);
  }
  .inq-field textarea{
    width:100%;
    padding:13px 14px;
    border:1.5px solid #dbe6f0;
    border-radius:12px;
    font-family:'Mulish',sans-serif;
    font-size:1rem;
    color:#1c2733;
    background:#fff;
    resize:vertical;
    min-height:80px;
    transition:border-color .15s ease, box-shadow .15s ease;
  }
  .inq-field textarea:focus{
    outline:none;
    border-color:#1f7fc9;
    box-shadow:0 0 0 4px rgba(31,127,201,.15);
  }
  /* Closest store — 3-option segmented control (location) */
  .inq-toggle.loc label{padding:13px 6px;font-size:.82rem;letter-spacing:0;}
  .inq-toggle.loc input:checked + label{border-color:#2aa8e0;background:#2aa8e0;color:#fff;box-shadow:0 6px 14px -6px rgba(42,168,224,.6);}
  @media(max-width:380px){.inq-toggle.loc{flex-wrap:wrap;}.inq-toggle.loc label{flex:1 1 100%;}}
  /* Shopping For — segmented two-option control */
  .inq-toggle{display:flex;gap:10px;}
  .inq-toggle input{position:absolute;opacity:0;width:0;height:0;pointer-events:none;}
  .inq-toggle label{
    flex:1;
    margin:0;
    text-align:center;
    padding:14px 12px;
    border:1.5px solid #dbe6f0;
    border-radius:12px;
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:.95rem;
    letter-spacing:0;
    text-transform:none;
    color:#0a1e45;
    cursor:pointer;
    transition:border-color .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  }
  .inq-toggle input:checked + label{
    border-color:#2aa8e0;
    background:#2aa8e0;
    color:#fff;
    box-shadow:0 6px 14px -6px rgba(42,168,224,.6);
  }
  .inq-toggle input:focus-visible + label{
    box-shadow:0 0 0 4px rgba(31,127,201,.25);
  }
  /* Shopping For — 4-option MULTI-select (checkboxes, not radios).
     Two per row rather than four across: at four abreast the labels wrap
     mid-word on any phone. */
  .inq-toggle.quad{flex-wrap:wrap;}
  .inq-toggle.quad label{flex:1 1 calc(50% - 5px);min-width:0;}
  /* Red outline only while the error is showing — cleared the moment they
     pick something, so it never nags. */
  .inq-toggle.quad.err label{border-color:#d64545;}
  /* The visible validation message. This exists because the inputs are
     visually hidden (opacity:0, absolutely positioned) and the browser
     CANNOT render its own "please select one" bubble on a hidden control —
     it silently blocks the submit and the user sees nothing happen. */
  .inq-shop-error{
    display:none;
    margin:9px 0 0;
    font-family:'Outfit',sans-serif;
    font-weight:700;
    font-size:.82rem;
    line-height:1.35;
    color:#d64545;
  }
  .inq-shop-error.show{display:block;}
  /* Optional divider */
  .inq-divider{
    display:flex;
    align-items:center;
    gap:14px;
    margin:20px 0 16px;
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:.78rem;
    letter-spacing:.18em;
    color:#000;
    text-transform:uppercase;
  }
  .inq-divider::before,
  .inq-divider::after{
    content:"";
    flex:1;
    height:1px;
    background:#dbe6f0;
  }
  .inq-divider .tri{
    color:#94a3b8;
    font-size:.65rem;
    line-height:1;
  }
  .inq-submit{
    width:100%;
    margin-top:10px;
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1rem;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#fff;
    background:linear-gradient(180deg,#e63946 0%,#c1121f 100%);
    border:none;
    border-radius:999px;
    padding:17px;
    cursor:pointer;
    box-shadow:0 10px 20px -8px rgba(193,18,31,.55);
    transition:transform .15s ease, filter .15s ease;
  }
  .inq-submit:hover{transform:translateY(-1px);filter:brightness(1.05);}
  .inq-submit:disabled{opacity:.6;cursor:wait;transform:none;}
  .inq-secure{
    margin-top:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#5e7186;
    font-size:.85rem;
    line-height:1.4;
    font-family:'Mulish',sans-serif;
  }
  .inq-secure svg{width:16px;height:16px;flex:none;}
  .inq-success{
    display:none;
    text-align:center;
    padding:20px 10px;
  }
  .inq-success.show{display:block;}
  .inq-success .check{
    width:64px;height:64px;border-radius:50%;
    background:linear-gradient(180deg,#22c55e,#16a34a);
    margin:0 auto 18px;
    display:flex;align-items:center;justify-content:center;
    color:#fff;
  }
  .inq-success h4{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1.4rem;
    color:#0a1e45;
    margin-bottom:8px;
  }
  .inq-success p{color:#5e7186;}
  /* ---- Address contact folded into address block ---- */
  .loc-card .addr-line{display:block;}
  .loc-card .addr-contact{
    margin-top:12px;padding-top:12px;
    border-top:1px solid rgba(255,255,255,.10);
    display:flex;flex-direction:column;gap:7px;
  }
  .loc-card .addr-contact a{
    display:flex;align-items:center;gap:9px;
    color:#dbe9f7;text-decoration:none;font-weight:600;font-size:1.06rem;
    word-break:break-word;
  }
  .loc-card .addr-contact a:hover{color:#9fd6f4;}
  .loc-card .addr-contact .ac-ico{
    flex:none;width:17px;height:17px;color:#2aa8e0;
  }
  /* ---- Single-location balanced two-column row (address | Made in USA) ---- */
  .single-loc-row{
    display:flex;justify-content:center;align-items:stretch;
    gap:clamp(20px,4vw,48px);
    max-width:920px;margin:0 auto;flex-wrap:wrap;
  }
  .single-loc-row .loc-card{
    flex:1 1 320px;max-width:420px;min-width:280px;
    display:flex;flex-direction:column;
  }
  .single-loc-row .single-brand{
    flex:1 1 320px;max-width:420px;min-width:280px;
    display:flex;flex-direction:column;align-items:center;justify-content:center;
    gap:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.10);
    border-radius:14px;padding:28px 24px;
  }
  @media(max-width:760px){
    .single-loc-row{gap:22px;}
    .single-loc-row .loc-card,.single-loc-row .single-brand{flex:1 1 100%;max-width:480px;}
  }
  /* Cares-only footer centered when Made-in-USA has moved up */
  .foot-cares-only{justify-content:center;}
  .foot-cares-only .foot-cares{align-items:center;}
  /* ===================== JULY 4TH SALE CTA ===================== */
  .promo-cta{
    position:relative;
    overflow:hidden;
    background:
      radial-gradient(circle at 12% 18%, rgba(255,255,255,.10), transparent 42%),
      radial-gradient(circle at 88% 12%, rgba(255,255,255,.08), transparent 40%),
      linear-gradient(135deg,#0a2a6b 0%,#10245f 38%,#7a1020 70%,#b3121f 100%);
    padding:clamp(34px,5vw,60px) clamp(20px,5vw,56px);
  }
  /* faint star field */
  .promo-cta::before{
    content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
    background-image:
      radial-gradient(1.6px 1.6px at 14% 30%, #fff, transparent),
      radial-gradient(1.4px 1.4px at 26% 70%, #fff, transparent),
      radial-gradient(1.6px 1.6px at 42% 22%, #fff, transparent),
      radial-gradient(1.3px 1.3px at 64% 60%, #fff, transparent),
      radial-gradient(1.7px 1.7px at 80% 34%, #fff, transparent),
      radial-gradient(1.3px 1.3px at 92% 72%, #fff, transparent),
      radial-gradient(1.4px 1.4px at 8% 84%, #fff, transparent);
    animation:promoTwinkle 4.5s ease-in-out infinite;
  }
  @keyframes promoTwinkle{0%,100%{opacity:.32;}50%{opacity:.7;}}
  /* Fireworks canvas — upper-right of the CTA */
  .promo-fireworks{
    position:absolute;top:0;left:0;
    width:100%;height:100%;
    z-index:1;pointer-events:none;
  }
  @media(max-width:900px){
    /* mobile: form is below the verbiage, so the top band is clear of the form */
    .promo-fireworks{height:48%;z-index:1;}
  }
  @media (prefers-reduced-motion: reduce){
    .promo-fireworks{display:block;}   /* always show fireworks (was display:none under reduced-motion) */
  }
  .promo-inner{
    position:relative;z-index:2;
    max-width:1140px;margin:0 auto;
    display:grid;grid-template-columns:1.05fr .95fr;
    gap:clamp(24px,4vw,48px);align-items:center;
  }
  /* ---- LEFT: sale verbiage ---- */
  .promo-left{color:#fff;}
  .promo-flag{
    display:inline-flex;align-items:center;gap:9px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.30);
    border-radius:999px;padding:7px 16px 7px 12px;
    font-family:'Outfit',sans-serif;font-weight:800;
    font-size:.8rem;letter-spacing:.16em;text-transform:uppercase;
    backdrop-filter:blur(4px);margin-bottom:18px;
  }
  .promo-flag .stars{letter-spacing:.1em;color:#ffd54a;font-size:.9rem;}
  .promo-left h2{
    font-family:'Outfit',sans-serif;font-weight:800;
    font-size:clamp(2.2rem,6vw,3.7rem);line-height:.98;
    letter-spacing:-.01em;margin-bottom:6px;
    text-transform:uppercase;
  }
  .promo-left h2 .jul4{
    display:block;
    background:linear-gradient(92deg,#ff5a6a 0%,#ffd54a 52%,#fff 100%);
    -webkit-background-clip:text;background-clip:text;color:transparent;
    text-shadow:0 2px 24px rgba(255,90,106,.25);
  }
  .promo-left h2 .sale{
    display:block;color:#fff;
    font-size:clamp(2.2rem,5.4vw,3.4rem);letter-spacing:.06em;text-transform:uppercase;font-weight:900;
  }
  .promo-sub{
    font-family:'Outfit',sans-serif;font-weight:700;
    font-size:clamp(1rem,2.2vw,1.2rem);color:#ffd54a;
    text-transform:uppercase;letter-spacing:.05em;margin:4px 0 22px;
  }
  .promo-offers{list-style:none;margin:0 0 24px;padding:0;display:flex;flex-direction:column;gap:11px;}
  .promo-offers li{
    display:flex;align-items:center;gap:13px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    border-left:4px solid #ffd54a;
    border-radius:12px;padding:13px 16px;
    backdrop-filter:blur(3px);
  }
  .promo-offers .amt{
    flex:none;
    font-family:'Outfit',sans-serif;font-weight:800;
    font-size:clamp(1.15rem,2.6vw,1.5rem);
    color:#ffd54a;line-height:1;min-width:84px;
    text-shadow:0 1px 10px rgba(255,213,74,.35);
  }
  .promo-offers .amt.free{color:#7CFFB2;text-shadow:0 1px 10px rgba(124,255,178,.3);}
  .promo-offers .desc{
    font-family:'Mulish',sans-serif;font-weight:700;
    font-size:clamp(.92rem,1.7vw,1.02rem);color:#fff;line-height:1.25;
  }
  .promo-fine{
    font-family:'Mulish',sans-serif;font-size:.82rem;color:rgba(255,255,255,.72);
    line-height:1.5;
  }
  /* ---- RIGHT: embedded form (matches modal style) ---- */
  .promo-form-card{
    background:#fff;border-radius:24px;
    padding:30px 28px 26px;
    box-shadow:0 40px 80px -22px rgba(8,18,40,.6);
    position:relative;z-index:2;
  }
  .promo-form-card .promo-burst{
    position:absolute;top:-14px;right:22px;
    background:linear-gradient(180deg,#e63946,#c1121f);
    color:#fff;font-family:'Outfit',sans-serif;font-weight:800;
    font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
    padding:7px 14px;border-radius:999px;
    box-shadow:0 8px 18px -6px rgba(193,18,31,.6);
  }
  .promo-form-card h3{
    font-family:'Outfit',sans-serif;font-weight:800;
    font-size:1.5rem;color:#0a1e45;line-height:1.12;
    text-transform:uppercase;text-align:center;letter-spacing:.01em;
    margin-bottom:4px;
  }
  .promo-form-card .promo-form-sub{
    color:#5e7186;font-size:.94rem;text-align:center;margin-bottom:20px;
    font-family:'Mulish',sans-serif;
  }
  @media(max-width:900px){
    .promo-inner{grid-template-columns:1fr;gap:30px;}
    .promo-left{text-align:center;}
    .promo-offers li{text-align:left;}
    .promo-flag{margin-left:auto;margin-right:auto;}
  }
  @media(max-width:480px){
    .promo-offers .amt{min-width:74px;}
    .promo-form-card{padding:26px 20px 22px;}
  }
    .duck-link{display:inline-block;cursor:pointer;pointer-events:auto;}
  /* Larger warranty copy (round-2 request) */
  .warranty .wt p.warranty-copy{
    font-size:1.2rem;
    line-height:1.6;
    font-weight:600;
  }
  @media(max-width:620px){
    .warranty .wt p.warranty-copy{font-size:1.08rem;}
  }
  /* Business-name brand line inside location cards (SEO + clarity) */
  .loc-card .loc-brand{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1.32rem;
    letter-spacing:0.03em;
    text-transform:uppercase;
    color:#fff;
    margin-bottom:10px;
    line-height:1.2;
  }
  /* Location card: big white CITY line + split brand for single-city sites */
  .loc-card .loc-city{
    font-family:'Outfit',sans-serif;
    font-weight:800;
    font-size:1.32rem;
    line-height:1.15;
    color:#fff;
    letter-spacing:0.02em;
    margin:8px 0 6px;
  }
  /* When a card has a city line, the brand above it reads as a small eyebrow */
  .loc-card .loc-brand{
    font-size:0.92rem;
    color:#7fc4ec;
    margin-bottom:2px;
  }
  /* Chattanooga / Phoenix: brand split onto two big white lines, no city line */
  .loc-card .loc-brand-split{
    display:block;
    color:#fff;
    font-size:1.32rem;
    line-height:1.18;
    margin-bottom:10px;
  }
  .loc-card .loc-brand-split .lb-city{display:block;}
  .loc-card .loc-brand-split .lb-rest{display:block;}

  .no-pressure{
    text-align:center;color:#5e7186;font-family:'Mulish',sans-serif;
    font-size:.95rem;margin:-6px 0 16px;
  }
  .no-pressure b{color:#0a1e45;}
  .no-pressure-line{margin-top:-14px;}
