/* ============================================================
   Birmingham Christmas Lights — "Playful" direction
   Arcade-bold display type, candy palette, chunky rounded cards.
   ============================================================ */

:root {
  /* palette pulled straight off the logo */
  --teal:        #23b3c4;
  --teal-deep:   #10808f;
  --teal-ink:    #0a5a66;
  --orange:      #f7941d;
  --orange-deep: #e07300;
  --red:         #e02424;
  --green:       #1f9d4d;

  --cream:       #fffaf1;
  --cream-deep:  #fdf0dc;
  --ink:         #12232b;
  --ink-soft:    #3d5560;
  --night:       #071219;
  --night-2:     #0d2029;
  --white:       #ffffff;

  --line:        rgba(18, 35, 43, .1);

  /* type */
  --font-display: "Bungee", "Impact", system-ui, sans-serif;
  --font-body:    "Nunito", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --text-xs:    .8125rem;
  --text-sm:    .9375rem;
  --text-base:  clamp(1rem, .95rem + .22vw, 1.1rem);
  --text-lg:    clamp(1.125rem, 1.03rem + .42vw, 1.375rem);
  --text-h3:    clamp(1.25rem, 1.1rem + .6vw, 1.625rem);
  --text-h2:    clamp(2rem, 1.35rem + 2.6vw, 3.6rem);
  --text-h1:    clamp(2.15rem, 1.25rem + 3.1vw, 4rem);

  /* rhythm — deliberately uneven, not one padding everywhere */
  --space-section: clamp(4.5rem, 3rem + 6vw, 9rem);
  --shell:         min(100% - 2.5rem, 78rem);

  /* peek mascot: overhang is the image height at --peek-w (423x255 art) */
  --peek-w:        clamp(132px, 13vw, 196px);
  --peek-overhang: clamp(80px, 7.85vw, 118px);

  --radius-sm:  .75rem;
  --radius:     1.5rem;
  --radius-lg:  2.25rem;

  --shadow-sm:  0 2px 0 rgba(10, 90, 102, .18);
  --shadow:     0 18px 40px -22px rgba(7, 18, 25, .55);
  --shadow-lg:  0 34px 70px -30px rgba(7, 18, 25, .6);

  --dur-fast:   150ms;
  --dur:        320ms;
  --ease:       cubic-bezier(.16, 1, .3, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.005em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.shell { width: var(--shell); margin-inline: auto; }
.centered { text-align: center; }

.skip-link {
  position: absolute; left: .75rem; top: -4rem; z-index: 99;
  background: var(--ink); color: var(--white);
  padding: .65rem 1.1rem; border-radius: 999px;
  font-weight: 800; text-decoration: none;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus-visible { top: .75rem; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: .35rem;
}

/* ---------- shared bits ---------- */

.eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
}
.eyebrow-teal   { color: var(--teal); }
.eyebrow-orange { color: var(--orange-deep); }

.stars { display: flex; gap: .18em; color: var(--orange); font-size: 1.5rem; line-height: 1; }
.stars-sm { font-size: 1.05rem; }

.btn {
  --btn-bg: var(--orange);
  --btn-fg: var(--white);
  --btn-edge: var(--orange-deep);
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: .04em;
  text-decoration: none;
  padding: .95rem 1.6rem;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 3px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 5px 0 var(--ink);
  transform: translateY(0);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn:hover  { transform: translateY(-3px); box-shadow: 0 8px 0 var(--ink); background: var(--btn-edge); }
.btn:active { transform: translateY(2px);  box-shadow: 0 2px 0 var(--ink); }

.btn-lg { padding: 1.15rem 2.1rem; font-size: var(--text-base); }
.btn-sm { padding: .6rem 1.1rem; font-size: var(--text-xs); box-shadow: 0 4px 0 var(--ink); }

.btn-orange { --btn-bg: var(--orange); --btn-edge: var(--orange-deep); }
.btn-teal   { --btn-bg: var(--teal);   --btn-edge: var(--teal-deep); }
.btn-red    { --btn-bg: var(--red);    --btn-edge: #b51b1b; }
.btn-ghost  { --btn-bg: var(--white);  --btn-edge: var(--cream-deep); color: var(--ink); }

.link-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .08em;
  color: var(--teal-deep);
  text-decoration: none;
}
.link-cta span { transition: transform var(--dur-fast) var(--ease); }
.link-cta:hover { color: var(--orange-deep); }
.link-cta:hover span { transform: translateX(4px); }

/* twinkling light string */
.lightstring {
  position: relative;
  display: flex; justify-content: space-around; align-items: flex-start;
  height: 34px;
  background:
    radial-gradient(circle at 50% -120px, transparent 0 118px, transparent 0),
    linear-gradient(var(--ink) 0 3px, transparent 3px);
  background-repeat: repeat-x;
}
.lightstring::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--ink);
}
.bulb {
  width: 14px; height: 20px;
  margin-top: 3px;
  border-radius: 40% 40% 55% 55% / 30% 30% 70% 70%;
  animation: twinkle 2.4s ease-in-out infinite;
}
.bulb.b1 { background: var(--red);    box-shadow: 0 0 14px 2px rgba(224,36,36,.7);   animation-delay: 0s; }
.bulb.b2 { background: var(--teal);   box-shadow: 0 0 14px 2px rgba(35,179,196,.7);  animation-delay: .6s; }
.bulb.b3 { background: var(--orange); box-shadow: 0 0 14px 2px rgba(247,148,29,.7);  animation-delay: 1.2s; }
.bulb.b4 { background: var(--green);  box-shadow: 0 0 14px 2px rgba(31,157,77,.7);   animation-delay: 1.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .45; transform: scale(.88); }
}

/* ══════════════ HEADER ══════════════ */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255, 250, 241, .88);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--ink);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: .7rem;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; }
.brand-santa { width: auto; height: 46px; }
.brand-mark  { width: auto; height: 40px; }

.header-nav { display: flex; align-items: center; gap: 1.6rem; }
.header-nav a {
  font-weight: 800; font-size: var(--text-sm);
  text-decoration: none; color: var(--ink-soft);
  transition: color var(--dur-fast) var(--ease);
}
.header-nav a:hover { color: var(--teal-deep); }
.header-nav .btn { color: var(--white); white-space: nowrap; }

@media (max-width: 720px) {
  .header-nav a:not(.btn) { display: none; }
}

/* ══════════════ HERO ══════════════ */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--night);
  color: var(--white);
  padding-block: clamp(2.5rem, 1.5rem + 3.6vw, 4.25rem) 0;
  overflow: hidden;
}
.hero-photo { position: absolute; inset: 0; z-index: -2; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 70% at 18% 45%, rgba(7,18,25,.93) 0%, rgba(7,18,25,.72) 48%, rgba(7,18,25,.3) 100%),
    linear-gradient(to bottom, rgba(7,18,25,.6), rgba(7,18,25,.2) 40%, rgba(7,18,25,.9));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .38fr);
  align-items: end;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 1.75rem + 2.8vw, 4rem);
}
.hero-copy { max-width: 68ch; }

.hero h1 {
  font-size: var(--text-h1);
  margin-bottom: 1.25rem;
  text-shadow: 0 6px 24px rgba(0,0,0,.55);
}
.hl { display: inline-block; }
.hl-orange { color: var(--orange); }
.hl-teal   { color: var(--teal); }

.hero-quote {
  max-width: 54ch;
  margin: 0 0 1.5rem;
  padding: .95rem 1.25rem;
  border-left: 5px solid var(--orange);
  background: rgba(255,255,255,.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  backdrop-filter: blur(6px);
}
.hero-quote blockquote {
  margin: .6rem 0 0;
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.55;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.hero-microcta {
  margin-top: .95rem;
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.62);
}

.hero-mascot { justify-self: end; align-self: end; }
.hero-mascot img {
  width: auto;
  height: clamp(240px, 32vw, 460px);
  filter: drop-shadow(0 24px 40px rgba(0,0,0,.6));
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-mascot { display: none; }
}

/* ══════════════ BADGES ══════════════ */

.badges {
  background: var(--cream);
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.badge-row {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.badge-item {
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--ink);
  transition: transform var(--dur) var(--ease);
}
.badge-item:hover { transform: translateY(-5px) rotate(-1deg); }
.badge-item:nth-child(even):hover { transform: translateY(-5px) rotate(1deg); }

.badge-chip {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  color: var(--white);
}
.badge-chip svg { width: 28px; height: 28px; }
.badge-teal   { background: var(--teal); }
.badge-orange { background: var(--orange); }
.badge-red    { background: var(--red); }
.badge-green  { background: var(--green); }

.badge-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .badge-row { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════ COMPLETE CARE ══════════════ */

.care {
  position: relative;
  padding-block: var(--space-section);
  background:
    radial-gradient(70% 90% at 85% 15%, rgba(35,179,196,.16), transparent 60%),
    var(--cream-deep);
  border-block: 3px solid var(--ink);
}
.care-inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 1rem + 5vw, 5rem);
  align-items: center;
}

.care-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  aspect-ratio: 1 / 1;
}
.gal { margin: 0; overflow: hidden; border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); background: var(--night-2); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.gal:hover img { transform: scale(1.06); }

.gal-a { grid-area: 1 / 1 / 5 / 5; z-index: 2; }
.gal-b { grid-area: 3 / 4 / 6 / 7; z-index: 3; }
.gal-c { grid-area: 5 / 1 / 7 / 4; z-index: 2; }

.care-santa {
  position: absolute;
  right: -3%; top: -17%;
  width: auto; height: 46%;
  z-index: 4;
  filter: drop-shadow(0 16px 24px rgba(7,18,25,.35));
  pointer-events: none;
}

.care h2 { font-size: var(--text-h2); margin-bottom: 1.3rem; }
.care .lede {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--teal-ink);
}
.care-copy p { color: var(--ink-soft); }
.care-copy strong { color: var(--ink); }
.care-copy .btn { margin-top: 1rem; }

.toprated {
  display: flex; align-items: center; gap: .8rem;
  margin-top: 1.6rem;
}
.toprated-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .care-inner { grid-template-columns: 1fr; }
  .care-santa { height: 30%; top: -9%; right: 0; }
}

/* ══════════════ PRICING ══════════════ */

.pricing { padding-block: var(--space-section) 0; background: var(--cream); }

.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1rem, .5rem + 1vw, 1.75rem);
}
.section-head > div:first-child { flex: 1 1 20rem; min-width: 0; }
.section-head h2 { font-size: var(--text-h2); }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(1rem, .5rem + 1.2vw, 1.75rem);
  /* headroom for the mascot peeking over the popular card */
  padding-top: var(--peek-overhang);
}

.plan {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 0 var(--ink);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: 0 14px 0 var(--ink); }

.plan-feature  { grid-column: span 2; }
.plan-popular  { grid-column: span 2; border-color: var(--orange-deep); box-shadow: 0 8px 0 var(--orange-deep); overflow: visible; }
/* the card's own overflow clip is gone, so the photo has to round its own corners */
.plan-popular .plan-photo { border-radius: calc(var(--radius-lg) - 3px) calc(var(--radius-lg) - 3px) 0 0; }
.plan-peek {
  position: absolute; z-index: 3;
  bottom: 100%; right: clamp(1rem, 3vw, 2.5rem);
  width: var(--peek-w); height: auto;
  /* the gripping hands overlap the card's 3px border */
  margin-bottom: -7px;
  filter: drop-shadow(0 10px 12px rgba(7, 18, 25, .28));
  pointer-events: none;
}
.plan-popular:hover { box-shadow: 0 14px 0 var(--orange-deep); }
.plan-max      { grid-column: span 2; }
.plan-wide     { grid-column: span 3; }
.plan-flat     { grid-column: span 3; background: var(--teal); color: var(--white); }
.plan-colors   { grid-column: span 6; }

.plan-photo { position: relative; margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--night-2); }
.plan-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease); }
.plan:hover .plan-photo img { transform: scale(1.05); }

.plan-colors .plan-photo { aspect-ratio: 21 / 7; }

.plan-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .08em;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  color: var(--white);
  box-shadow: 0 3px 0 var(--ink);
}
.tag-inline { position: static; display: inline-block; margin-bottom: 1rem; }
.tag-teal   { background: var(--teal); }
.tag-orange { background: var(--orange); }
.tag-red    { background: var(--red); }
.tag-green  { background: var(--green); }
.plan-flat .tag-teal { background: var(--orange); }

.plan-body { padding: clamp(1.25rem, .9rem + 1vw, 2rem); }
.plan-body h3 { font-size: var(--text-h3); margin-bottom: .7rem; }
.plan-body p { font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.62; }
.plan-kicker { font-weight: 900 !important; color: var(--teal-ink) !important; }
.plan-flat .plan-body p, .plan-flat .plan-kicker { color: rgba(255,255,255,.92) !important; }
.plan-flat .link-cta { color: var(--white); }
.plan-flat .link-cta:hover { color: var(--night); }

.color-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.color-list li {
  display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start;
  font-size: var(--text-sm); color: var(--ink-soft); line-height: 1.55;
}
.color-list strong { color: var(--ink); }
.swatch {
  display: block; width: 34px; height: 34px;
  border-radius: 999px; border: 3px solid var(--ink);
  overflow: hidden; margin-top: .1rem;
}
.swatch i {
  display: block; width: 100%; height: 100%;
  background: repeating-linear-gradient(45deg, var(--a) 0 7px, var(--b) 7px 14px);
}

@media (min-width: 981px) {
  .plan-colors .plan-body { column-count: 2; column-gap: 3rem; }
  .plan-colors h3 { column-span: all; }
  .plan-colors .link-cta { column-span: all; }
}

.pricing-foot {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(1.25rem, 3vw, 3rem);
  margin-top: clamp(2rem, 1rem + 3vw, 3.5rem);
}
.pricing-foot .btn { margin-bottom: clamp(2.25rem, 4.5vw, 4rem); }
.foot-santa {
  width: auto; height: clamp(148px, 16vw, 230px);
  margin-bottom: -3px;               /* feet land on the section's 3px edge */
  filter: drop-shadow(0 14px 16px rgba(7, 18, 25, .22));
}

@media (max-width: 980px) {
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-feature, .plan-popular, .plan-max, .plan-wide, .plan-flat { grid-column: span 1; }
  .plan-colors { grid-column: span 2; }
}
@media (max-width: 640px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-colors { grid-column: span 1; }
}

/* ══════════════ TESTIMONIALS ══════════════ */

.testimonials {
  padding-block: var(--space-section) 0;
  background:
    radial-gradient(60% 70% at 50% 0%, rgba(247,148,29,.14), transparent 65%),
    var(--cream-deep);
  border-top: 3px solid var(--ink);
}
.testimonials h2 {
  font-size: var(--text-h2);
  margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem);
}
.testi-santa {
  display: block;
  width: auto; height: clamp(158px, 17vw, 248px);
  margin: clamp(2rem, 1rem + 3vw, 3.5rem) auto -3px;
  filter: drop-shadow(0 14px 16px rgba(7, 18, 25, .22));
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, .5rem + 1.2vw, 1.75rem);
  align-items: start;
}
.quote {
  margin: 0;
  padding: clamp(1.4rem, 1rem + 1vw, 2.1rem);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 0 var(--ink);
  transition: transform var(--dur) var(--ease);
}
.quote:hover { transform: translateY(-5px); }
.quote-tall { background: var(--night); color: var(--white); box-shadow: 0 8px 0 var(--teal-deep); }

.quote blockquote {
  margin: 1rem 0 1.4rem;
  font-size: var(--text-sm);
  line-height: 1.65;
  color: var(--ink-soft);
}
.quote-tall blockquote { color: rgba(255,255,255,.86); }

.quote figcaption {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  display: flex; flex-direction: column; gap: .2rem;
}
.quote figcaption span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.quote-tall figcaption span { color: var(--teal); }

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

/* ══════════════ FINAL CTA ══════════════ */

.finalcta {
  position: relative;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white);
  border-top: 3px solid var(--ink);
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
}
.finalcta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.06) 0 22px, transparent 22px 44px);
  pointer-events: none;
}
.finalcta-inner {
  position: relative;
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
.finalcta-santa {
  width: auto; height: clamp(160px, 18vw, 260px);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.35));
}
.finalcta h2 { font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3.2rem); margin-bottom: .9rem; }
.finalcta p { max-width: 52ch; color: rgba(255,255,255,.92); margin-bottom: 1.6rem; }

@media (max-width: 720px) {
  .finalcta-inner { grid-template-columns: 1fr; }
  .finalcta-santa { height: 150px; }
}

/* ══════════════ FOOTER ══════════════ */

.site-footer { background: var(--night); color: rgba(255,255,255,.8); }
.lightstring-top { background: transparent; }
.lightstring-top::before { background: rgba(255,255,255,.2); }

.footer-inner {
  display: grid; justify-items: center; text-align: center;
  gap: .9rem;
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.footer-santa { width: auto; height: clamp(120px, 14vw, 168px); }
.footer-wordmark { width: min(100%, 22rem); height: auto; }
.footer-tag {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}
.footer-contact {
  list-style: none; margin: .6rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem;
  font-weight: 700;
}
.footer-contact a { text-decoration: none; overflow-wrap: anywhere; transition: color var(--dur-fast) var(--ease); }
.footer-contact a:hover { color: var(--orange); }
.footer-legal { font-size: var(--text-xs); color: rgba(255,255,255,.45); margin: 1.2rem 0 0; }

/* ══════════════ MOTION ══════════════ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 420px) {
  .footer-tag { letter-spacing: .12em; }
  .footer-contact { gap: .5rem 1rem; font-size: var(--text-sm); }
}

@media (max-width: 420px) {
  .header-nav .btn { padding: .5rem .75rem; font-size: .75rem; letter-spacing: 0; }
  .brand-santa { height: 38px; }
}
