:root {
  --orange: #ff8200;
  --orange-dark: #d76500;
  --blue: #005c7c;
  --blue-dark: #06334a;
  --ink: #141414;
  --muted: #5c6570;
  --paper: #fff9ef;
  --white: #ffffff;
  --line: rgba(20, 20, 20, 0.12);
  --shadow: 0 22px 60px rgba(6, 51, 74, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 132px;
  padding: 18px clamp(18px, 5vw, 70px);
  background: rgba(255, 249, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(320px, 34vw, 520px);
  height: auto;
  max-height: 112px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-dark);
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(255, 130, 0, 0.14);
}

.main-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--blue-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-dark);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(24px, 5vw, 74px);
  min-height: calc(100vh - 93px);
  padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 70px);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 130, 0, 0.26), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #fff3dc 55%, #eef9ff 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.hero-lede,
.section-intro > p,
.feature-copy > p,
.quote-copy > p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.hero-lede {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.song-player {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 10px;
  border: 1px solid rgba(0, 92, 124, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.song-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.song-button:hover {
  background: var(--blue);
}

.song-player span {
  color: var(--blue-dark);
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 1000;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(255, 130, 0, 0.28);
}

.button-secondary {
  color: var(--blue-dark);
  border-color: rgba(0, 92, 124, 0.22);
  background: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
}

.hero-stats span {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  line-height: 1.35;
}

.hero-stats strong {
  display: block;
  color: var(--blue-dark);
}

.hero-art {
  position: relative;
  align-self: end;
  min-height: 540px;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  margin-inline: auto;
  filter: drop-shadow(0 28px 28px rgba(6, 51, 74, 0.24));
}

.sunburst {
  position: absolute;
  inset: 8% -22% 4% 0;
  border-radius: 999px;
  background:
    repeating-conic-gradient(from -8deg, rgba(255, 130, 0, 0.22) 0 10deg, transparent 10deg 20deg),
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 38%, rgba(255, 130, 0, 0.34) 39% 62%, transparent 63%);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--blue-dark);
}

.trust-strip span {
  padding: 20px;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
  text-align: center;
}

.section,
.service-grid,
.feature-band,
.steps,
.quote-panel,
.site-footer {
  padding-inline: clamp(18px, 5vw, 70px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: end;
  padding-top: 84px;
  padding-bottom: 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 82px;
}

.service-grid article,
.steps article,
.project-card,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-grid article {
  display: grid;
  grid-template-rows: 270px auto auto;
  overflow: hidden;
  padding: 24px;
}

.service-grid img {
  align-self: end;
  justify-self: center;
  width: min(100%, 260px);
  max-height: 270px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 16px 16px rgba(6, 51, 74, 0.16));
}

.service-grid p,
.steps p,
.project-card p,
.site-footer p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: 78px;
  padding-bottom: 78px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 130, 0, 0.4), transparent 28%),
    linear-gradient(135deg, var(--blue-dark), #005c7c);
}

.feature-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-band .eyebrow {
  color: #ffbd70;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  content: "+";
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  color: var(--white);
  background: var(--orange);
  font-weight: 1000;
}

.project-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.project-card {
  padding: 24px;
  color: var(--ink);
}

.project-card.large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 310px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.92)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(0, 92, 124, 0.16) 58px 60px),
    repeating-linear-gradient(0deg, transparent 0 58px, rgba(0, 92, 124, 0.16) 58px 60px);
}

.project-card span,
.steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 1000;
}

.project-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 26px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 84px;
}

.steps article {
  padding: 26px;
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin: 0 clamp(18px, 5vw, 70px) 80px;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 100%, rgba(255, 130, 0, 0.22), transparent 35%),
    var(--white);
}

.quote-copy img {
  width: min(260px, 60%);
  margin-top: 20px;
  filter: drop-shadow(0 18px 16px rgba(6, 51, 74, 0.18));
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.contact-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(0, 92, 124, 0.09);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(6, 51, 74, 0.18);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 25px;
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.faq-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 70px) 44px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 130, 0, 0.22), transparent 32%),
    linear-gradient(135deg, #fffdf8 0%, #fff3dc 58%, #eef9ff 100%);
}

.faq-hero-copy h1 {
  max-width: 850px;
}

.faq-hero-art {
  position: relative;
}

.faq-hero-art img {
  width: min(100%, 390px);
  margin-inline: auto;
  filter: drop-shadow(0 22px 22px rgba(6, 51, 74, 0.2));
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 70px) 84px;
}

.faq-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 230px;
  padding: 26px 26px 94px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-grid article::after {
  position: absolute;
  right: -34px;
  bottom: -56px;
  width: 150px;
  height: 190px;
  background: var(--seasonal-greg-trowelling, url("greg-trowelling-summer.png?v=20260712-3")) center / contain no-repeat;
  content: "";
  opacity: 0.12;
  pointer-events: none;
}

body[data-theme="christmas"] .brand::after,
body[data-theme="easter"] .brand::after,
body[data-theme="halloween"] .brand::after,
body[data-theme="newyear"] .brand::after {
  position: absolute;
  right: -8px;
  top: -18px;
  z-index: 2;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.18));
  transform: rotate(10deg);
  pointer-events: none;
}

body[data-theme="christmas"] .brand::after { content: "🎅"; }
body[data-theme="easter"] .brand::after { content: "🐣🥚"; }
body[data-theme="halloween"] .brand::after { content: "🎃🕸️"; }
body[data-theme="newyear"] .brand::after { content: "🎉✨"; }

.faq-grid article:nth-child(2n)::after {
  background-image: var(--seasonal-greg-finished, url("greg-finished-summer.png?v=20260712-3"));
}

.faq-grid article:nth-child(3n)::after {
  background-image: var(--seasonal-greg-board, url("greg-board-summer.png?v=20260712-3"));
}

.faq-grid h3 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.faq-grid h3::before {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

.faq-grid p,
.faq-cta p {
  color: var(--muted);
  line-height: 1.55;
}

.faq-grid a {
  color: var(--blue);
  font-weight: 900;
}

.faq-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 70px) 80px;
  padding: clamp(24px, 4vw, 46px);
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 20%, rgba(255, 130, 0, 0.42), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.faq-cta .eyebrow {
  color: #ffbd70;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.brand-footer .brand-logo {
  width: 300px;
  max-height: 90px;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 108px;
  }

  .brand-logo {
    width: clamp(260px, 42vw, 390px);
    max-height: 92px;
  }

  .hero,
  .faq-hero,
  .section-intro,
  .feature-band,
  .quote-panel,
  .faq-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 0;
    max-width: 520px;
    margin-inline: auto;
  }

  .hero-stats,
  .service-grid,
  .steps,
  .trust-strip,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    min-height: 92px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-logo {
    width: min(68vw, 285px);
    max-height: 76px;
  }

  .song-player {
    display: grid;
    width: 100%;
  }

  .song-button {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-stats,
  .service-grid,
  .steps,
  .trust-strip,
  .project-board,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    grid-template-rows: 230px auto auto;
  }

  .project-card.large {
    min-height: 220px;
  }

  .quote-panel {
    margin-inline: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Stable logo-mounted holiday artwork. */
body[data-theme] .brand::before,
body[data-theme] .brand::after { display: none !important; }

.holiday-logo-decoration { display: none; }

body[data-theme="christmas"] .holiday-logo-decoration {
  position: absolute;
  z-index: 5;
  top: -13%;
  left: 15%;
  display: block;
  width: clamp(54px, 6vw, 82px);
  height: clamp(50px, 5.6vw, 76px);
  background: transparent;
  filter: none;
  transform: rotate(-12deg);
  pointer-events: none;
}

body[data-theme="christmas"] .holiday-logo-decoration::before {
  position: absolute;
  left: 6%;
  top: 0;
  width: 88%;
  height: 82%;
  content: "";
  background: linear-gradient(135deg, #ef3340 0 62%, #b21727 63% 100%);
  clip-path: polygon(0 100%, 72% 0, 94% 100%);
  filter: drop-shadow(0 5px 4px rgba(68, 7, 15, .28));
}

body[data-theme="christmas"] .holiday-logo-decoration::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92%;
  height: 22%;
  border-radius: 999px;
  content: "";
  background: #fff;
  box-shadow: 56px -52px 0 -3px #fff, 0 3px 7px rgba(68, 7, 15, .2);
}

body[data-theme="easter"] .holiday-logo-decoration,
body[data-theme="halloween"] .holiday-logo-decoration,
body[data-theme="newyear"] .holiday-logo-decoration {
  position: absolute;
  z-index: 5;
  top: -22%;
  left: 10%;
  display: block;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1;
  filter: drop-shadow(0 5px 4px rgba(0,0,0,.2));
  transform: rotate(-10deg);
  pointer-events: none;
}

body[data-theme="easter"] .holiday-logo-decoration::before { content: "\1F430"; }
body[data-theme="halloween"] .holiday-logo-decoration::before { content: "\1F9D9"; }
body[data-theme="newyear"] .holiday-logo-decoration::before { content: "\1F389"; }

@media (max-width: 720px) {
  body[data-theme="christmas"] .holiday-logo-decoration { top: -8%; left: 14%; width: 48px; height: 44px; }
  body[data-theme="christmas"] .holiday-logo-decoration::after { box-shadow: 34px -31px 0 -2px #fff, 0 3px 6px rgba(68, 7, 15, .18); }
  body[data-theme="easter"] .holiday-logo-decoration,
  body[data-theme="halloween"] .holiday-logo-decoration,
  body[data-theme="newyear"] .holiday-logo-decoration { top: -12%; font-size: 36px; }
}

/* Google reviews */
.google-reviews {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 84px clamp(18px, 5vw, 70px);
  background: var(--white);
}

.google-reviews-copy > p:not(.eyebrow) { max-width: 720px; color: var(--muted); line-height: 1.65; }
.google-rating { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 8px 0 20px; color: var(--blue-dark); font-weight: 900; }
.google-g { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; color: #4285f4; background: #fff; box-shadow: 0 4px 16px rgba(6, 51, 74, 0.16); font-size: 24px; font-weight: 1000; }
.review-stars { color: #fbbc04; letter-spacing: 2px; }
.review-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.review-invite { position: relative; overflow: hidden; padding: 34px; border-radius: 8px; color: var(--white); background: linear-gradient(145deg, var(--blue-dark), var(--blue)); box-shadow: var(--shadow); }
.review-invite .quote-mark { position: absolute; right: 18px; top: -26px; color: rgba(255, 255, 255, 0.13); font-size: 150px; line-height: 1; }
.review-invite h3 { position: relative; font-size: 1.6rem; }
.review-invite p { position: relative; color: rgba(255, 255, 255, 0.82); line-height: 1.6; }
.review-invite a { position: relative; display: inline-block; margin-top: 14px; color: #ffbd70; font-weight: 900; }

/* Clear holiday logo badges. Unicode escapes avoid character-encoding issues. */
body[data-theme="christmas"] .brand::after,
body[data-theme="easter"] .brand::after {
  right: -14px;
  top: -14px;
  padding: 7px 12px;
  border: 3px solid #fff;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 7px 18px rgba(6, 51, 74, 0.25);
  font-size: clamp(13px, 1.4vw, 18px);
  font-weight: 1000;
  white-space: nowrap;
  transform: rotate(5deg);
}

body[data-theme="christmas"] .brand::after { content: "Christmas  \1F385"; background: #a6192e; }
body[data-theme="easter"] .brand::after { content: "Easter  \1F423"; background: #7450a6; }

/* Full Christmas theme */
body[data-theme="christmas"] {
  --orange: #c52435;
  --orange-dark: #991c2a;
  --blue: #146b3a;
  --blue-dark: #0b4828;
  --paper: #fffaf0;
  --line: rgba(15, 86, 48, 0.16);
  background-color: var(--paper);
  background-image: radial-gradient(circle at 24px 24px, rgba(197, 36, 53, 0.08) 0 3px, transparent 4px), radial-gradient(circle at 64px 64px, rgba(20, 107, 58, 0.08) 0 4px, transparent 5px);
  background-size: 88px 88px;
}

body[data-theme="christmas"] .site-header { background: rgba(255, 250, 240, 0.96); border-bottom: 4px solid #c7a64b; }
body[data-theme="christmas"] .hero { background: radial-gradient(circle at 76% 24%, rgba(255,255,255,.96) 0 2px, transparent 3px) 0 0 / 34px 34px, linear-gradient(135deg, #fffaf0, #edf7ef); }
body[data-theme="christmas"] .sunburst { background: repeating-conic-gradient(from -8deg, rgba(197,36,53,.18) 0 10deg, transparent 10deg 20deg), radial-gradient(circle, rgba(255,255,255,.96) 0 38%, rgba(199,166,75,.28) 39% 62%, transparent 63%); }
body[data-theme="christmas"] .trust-strip { background: #7e1826; }
body[data-theme="christmas"] .feature-band,
body[data-theme="christmas"] .review-invite { background: radial-gradient(circle at 88% 16%, rgba(199,166,75,.35), transparent 26%), linear-gradient(135deg, #083d22, #146b3a); }
body[data-theme="christmas"] .service-grid article,
body[data-theme="christmas"] .steps article,
body[data-theme="christmas"] .quote-panel { border-color: rgba(197,36,53,.22); }
body[data-theme="christmas"] .google-reviews { background: linear-gradient(135deg, #fff, #f2f8ef); }

/* Full Easter theme */
body[data-theme="easter"] {
  --orange: #e07a9a;
  --orange-dark: #bd5578;
  --blue: #6d62ad;
  --blue-dark: #493e82;
  --paper: #fffaf5;
  --line: rgba(109, 98, 173, 0.16);
  background-color: var(--paper);
  background-image: radial-gradient(ellipse at 24px 30px, rgba(224,122,154,.09) 0 8px, transparent 9px), radial-gradient(ellipse at 68px 72px, rgba(104,188,156,.1) 0 8px, transparent 9px);
  background-size: 92px 92px;
}

body[data-theme="easter"] .site-header { background: rgba(255,250,245,.96); border-bottom: 4px solid #f2c75c; }
body[data-theme="easter"] .hero { background: radial-gradient(ellipse at 18% 22%, rgba(224,122,154,.12) 0 16px, transparent 17px), radial-gradient(ellipse at 82% 18%, rgba(104,188,156,.13) 0 18px, transparent 19px), linear-gradient(135deg, #fffaf5, #f3efff); }
body[data-theme="easter"] .sunburst { background: repeating-conic-gradient(from -8deg, rgba(224,122,154,.17) 0 10deg, transparent 10deg 20deg), radial-gradient(circle, rgba(255,255,255,.96) 0 38%, rgba(242,199,92,.3) 39% 62%, transparent 63%); }
body[data-theme="easter"] .trust-strip { background: #493e82; }
body[data-theme="easter"] .feature-band,
body[data-theme="easter"] .review-invite { background: radial-gradient(circle at 85% 18%, rgba(242,199,92,.32), transparent 28%), linear-gradient(135deg, #493e82, #6d62ad); }
body[data-theme="easter"] .service-grid article,
body[data-theme="easter"] .steps article,
body[data-theme="easter"] .quote-panel { border-color: rgba(224,122,154,.24); }
body[data-theme="easter"] .google-reviews { background: linear-gradient(135deg, #fff, #f5f0ff); }

/* Full New Year theme */
body[data-theme="newyear"] {
  --orange: #f2c14e;
  --orange-dark: #d59b18;
  --blue: #7757c8;
  --blue-dark: #17133f;
  --paper: #f8f6ff;
  --ink: #17133f;
  --muted: #5f5a78;
  --line: rgba(119, 87, 200, .18);
  background-color: var(--paper);
  background-image: radial-gradient(circle at 20px 18px, rgba(242,193,78,.12) 0 2px, transparent 3px), radial-gradient(circle at 72px 62px, rgba(119,87,200,.1) 0 3px, transparent 4px);
  background-size: 92px 92px;
}

body[data-theme="newyear"] .site-header { background: rgba(248,246,255,.96); border-bottom: 4px solid #f2c14e; }
body[data-theme="newyear"] .hero {
  color: #fff;
  background:
    repeating-conic-gradient(from 0deg at 84% 20%, rgba(242,193,78,.32) 0 2deg, transparent 2deg 14deg),
    radial-gradient(circle at 84% 20%, #fff 0 2px, transparent 3px),
    repeating-conic-gradient(from 8deg at 12% 72%, rgba(195,106,255,.2) 0 2deg, transparent 2deg 16deg),
    linear-gradient(135deg, #17133f, #39256f 62%, #7757c8);
}
body[data-theme="newyear"] .hero .eyebrow { color: #f2c14e; }
body[data-theme="newyear"] .hero .hero-lede { color: rgba(255,255,255,.82); }
body[data-theme="newyear"] .hero-stats span { color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.09); }
body[data-theme="newyear"] .hero-stats strong { color: #fff; }
body[data-theme="newyear"] .sunburst { background: repeating-conic-gradient(from -8deg, rgba(242,193,78,.28) 0 8deg, transparent 8deg 18deg), radial-gradient(circle, rgba(255,255,255,.12) 0 38%, rgba(119,87,200,.24) 39% 62%, transparent 63%); }
body[data-theme="newyear"] .trust-strip { background: #0e0a2d; }
body[data-theme="newyear"] .trust-strip span { background: #39256f; }
body[data-theme="newyear"] .feature-band,
body[data-theme="newyear"] .review-invite { background: repeating-conic-gradient(from 0deg at 88% 20%, rgba(242,193,78,.2) 0 2deg, transparent 2deg 15deg), linear-gradient(135deg, #17133f, #4f3594); }
body[data-theme="newyear"] .service-grid article,
body[data-theme="newyear"] .steps article,
body[data-theme="newyear"] .quote-panel { border-color: rgba(242,193,78,.38); background: linear-gradient(145deg, #fff, #fbf8ee); }
body[data-theme="newyear"] .google-reviews { background: linear-gradient(135deg, #fff, #f0ecff); }
body[data-theme="newyear"] .button-primary { color: #17133f; }
body[data-theme="newyear"] .project-card span,
body[data-theme="newyear"] .steps span { color: #17133f; }

/* Full Summer theme */
body[data-theme="summer"] { --orange:#ff8200; --orange-dark:#d76500; --blue:#007b92; --blue-dark:#06485d; --paper:#fffaf0; background: radial-gradient(circle at 25px 25px, rgba(255,174,38,.08) 0 4px, transparent 5px) 0 0 / 80px 80px, var(--paper); }
body[data-theme="summer"] .site-header { background: rgba(255,250,240,.96); border-bottom:4px solid #ffb52e; }
body[data-theme="summer"] .hero { background: radial-gradient(circle at 84% 16%, rgba(255,190,63,.3), transparent 22%), linear-gradient(135deg,#fffaf0,#e8fbff); }
body[data-theme="summer"] .feature-band,
body[data-theme="summer"] .review-invite { background: radial-gradient(circle at 88% 18%,rgba(255,190,63,.4),transparent 28%),linear-gradient(135deg,#06485d,#007b92); }
body[data-theme="summer"] .google-reviews { background:linear-gradient(135deg,#fff,#fff6df); }

/* Full Autumn theme */
body[data-theme="autumn"] { --orange:#cf5f2c; --orange-dark:#a43d1f; --blue:#7b3f2a; --blue-dark:#4d2a22; --paper:#fff8ed; --line:rgba(123,63,42,.18); background:radial-gradient(ellipse at 30px 30px,rgba(207,95,44,.09) 0 8px,transparent 9px) 0 0 / 92px 92px,var(--paper); }
body[data-theme="autumn"] .site-header { background:rgba(255,248,237,.96); border-bottom:4px solid #d99036; }
body[data-theme="autumn"] .hero { background:radial-gradient(ellipse at 83% 18%,rgba(207,95,44,.2) 0 18px,transparent 19px),linear-gradient(135deg,#fff8ed,#f7dfc2); }
body[data-theme="autumn"] .trust-strip { background:#4d2a22; }
body[data-theme="autumn"] .feature-band,
body[data-theme="autumn"] .review-invite { background:radial-gradient(circle at 85% 18%,rgba(217,144,54,.35),transparent 28%),linear-gradient(135deg,#4d2a22,#8c4930); }
body[data-theme="autumn"] .service-grid article,
body[data-theme="autumn"] .steps article,
body[data-theme="autumn"] .quote-panel { border-color:rgba(207,95,44,.25); background:#fffdf8; }
body[data-theme="autumn"] .google-reviews { background:linear-gradient(135deg,#fff,#f9ead7); }

/* Full Winter theme */
body[data-theme="winter"] { --orange:#4fa7cf; --orange-dark:#287da5; --blue:#32688a; --blue-dark:#173f5a; --paper:#f4fbff; --line:rgba(50,104,138,.17); background:radial-gradient(circle at 28px 28px,rgba(79,167,207,.1) 0 3px,transparent 4px) 0 0 / 72px 72px,var(--paper); }
body[data-theme="winter"] .site-header { background:rgba(244,251,255,.96); border-bottom:4px solid #a8d7eb; }
body[data-theme="winter"] .hero { background:radial-gradient(circle at 82% 16%,rgba(255,255,255,.95) 0 3px,transparent 4px) 0 0 / 38px 38px,linear-gradient(135deg,#f7fcff,#d9eff8); }
body[data-theme="winter"] .sunburst { background:repeating-conic-gradient(from -8deg,rgba(79,167,207,.16) 0 10deg,transparent 10deg 20deg),radial-gradient(circle,rgba(255,255,255,.95) 0 38%,rgba(168,215,235,.36) 39% 62%,transparent 63%); }
body[data-theme="winter"] .feature-band,
body[data-theme="winter"] .review-invite { background:radial-gradient(circle at 85% 18%,rgba(168,215,235,.32),transparent 28%),linear-gradient(135deg,#173f5a,#32688a); }
body[data-theme="winter"] .service-grid article,
body[data-theme="winter"] .steps article,
body[data-theme="winter"] .quote-panel { border-color:rgba(79,167,207,.28); }
body[data-theme="winter"] .google-reviews { background:linear-gradient(135deg,#fff,#e9f7fc); }

/* Full Spring theme */
body[data-theme="spring"] { --orange:#ea719d; --orange-dark:#c64c78; --blue:#4a9665; --blue-dark:#2f6745; --paper:#fffafc; --line:rgba(74,150,101,.17); background:radial-gradient(circle at 28px 28px,rgba(234,113,157,.09) 0 5px,transparent 6px) 0 0 / 84px 84px,var(--paper); }
body[data-theme="spring"] .site-header { background:rgba(255,250,252,.96); border-bottom:4px solid #f3b6cc; }
body[data-theme="spring"] .hero { background:radial-gradient(circle at 84% 16%,rgba(234,113,157,.16) 0 16px,transparent 17px),radial-gradient(circle at 75% 32%,rgba(104,188,135,.14) 0 13px,transparent 14px),linear-gradient(135deg,#fffafc,#eef9f1); }
body[data-theme="spring"] .feature-band,
body[data-theme="spring"] .review-invite { background:radial-gradient(circle at 85% 18%,rgba(243,182,204,.35),transparent 28%),linear-gradient(135deg,#2f6745,#4a9665); }
body[data-theme="spring"] .service-grid article,
body[data-theme="spring"] .steps article,
body[data-theme="spring"] .quote-panel { border-color:rgba(234,113,157,.25); }
body[data-theme="spring"] .google-reviews { background:linear-gradient(135deg,#fff,#f8eefa); }

/* Full Halloween theme */
body[data-theme="halloween"] { --orange:#f47b20; --orange-dark:#c9520d; --blue:#774596; --blue-dark:#25152f; --paper:#fff8ed; --ink:#26162e; --muted:#66566d; --line:rgba(119,69,150,.2); background:radial-gradient(circle at 24px 24px,rgba(244,123,32,.1) 0 4px,transparent 5px) 0 0 / 82px 82px,var(--paper); }
body[data-theme="halloween"] .site-header { background:rgba(255,248,237,.96); border-bottom:4px solid #f47b20; }
body[data-theme="halloween"] .hero { color:#fff; background:radial-gradient(circle at 84% 18%,rgba(244,123,32,.3),transparent 22%),linear-gradient(135deg,#25152f,#4c285d 65%,#774596); }
body[data-theme="halloween"] .hero .eyebrow { color:#ffad61; }
body[data-theme="halloween"] .hero .hero-lede { color:rgba(255,255,255,.8); }
body[data-theme="halloween"] .hero-stats span { color:rgba(255,255,255,.75); border-color:rgba(255,255,255,.15); background:rgba(255,255,255,.08); }
body[data-theme="halloween"] .hero-stats strong { color:#fff; }
body[data-theme="halloween"] .sunburst { background:repeating-conic-gradient(from -8deg,rgba(244,123,32,.28) 0 8deg,transparent 8deg 18deg),radial-gradient(circle,rgba(255,255,255,.12) 0 38%,rgba(119,69,150,.3) 39% 62%,transparent 63%); }
body[data-theme="halloween"] .trust-strip { background:#160c1d; }
body[data-theme="halloween"] .trust-strip span { background:#4c285d; }
body[data-theme="halloween"] .feature-band,
body[data-theme="halloween"] .review-invite { background:radial-gradient(circle at 85% 18%,rgba(244,123,32,.35),transparent 28%),linear-gradient(135deg,#25152f,#5d3270); }
body[data-theme="halloween"] .service-grid article,
body[data-theme="halloween"] .steps article,
body[data-theme="halloween"] .quote-panel { border-color:rgba(244,123,32,.3); background:#fffdf8; }
body[data-theme="halloween"] .google-reviews { background:linear-gradient(135deg,#fff,#f4eafa); }

/* Seasonal decoration is now baked into dedicated logo image files. */
.holiday-logo-decoration { display: none !important; }
body[data-theme] .brand::before,
body[data-theme] .brand::after { display: none !important; }

@media (max-width: 980px) {
  .google-reviews { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body[data-theme="christmas"] .brand::after,
  body[data-theme="easter"] .brand::after { right: 0; top: -10px; padding: 5px 8px; border-width: 2px; font-size: 10px; }
  .review-actions { display: grid; }
}

/* Holiday decorations belong to the logo rather than a text label. */
body[data-theme="christmas"] .brand::before {
  position: absolute;
  z-index: 3;
  top: -20px;
  left: 7%;
  width: clamp(58px, 7vw, 92px);
  height: clamp(54px, 6.5vw, 86px);
  content: "";
  background: linear-gradient(135deg, #e52d3d 0 68%, #aa1526 69% 100%);
  clip-path: polygon(8% 92%, 76% 8%, 92% 88%);
  filter: drop-shadow(0 6px 5px rgba(64, 8, 15, 0.25));
  transform: rotate(-14deg);
  pointer-events: none;
}

body[data-theme="christmas"] .brand::after {
  z-index: 4;
  top: clamp(34px, 4vw, 54px);
  right: auto;
  left: 4%;
  width: clamp(68px, 8vw, 108px);
  height: clamp(16px, 1.8vw, 24px);
  padding: 0;
  border: 0;
  border-radius: 999px;
  content: "";
  background: #fff;
  box-shadow: clamp(54px, 6vw, 82px) clamp(-46px, -3.8vw, -30px) 0 clamp(-1px, -.1vw, 0px) #fff, 0 5px 12px rgba(64, 8, 15, .22);
  transform: rotate(-7deg);
  pointer-events: none;
}

body[data-theme="easter"] .brand::before,
body[data-theme="halloween"] .brand::before,
body[data-theme="newyear"] .brand::before {
  position: absolute;
  z-index: 3;
  top: -26px;
  left: 5%;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, .18));
  transform: rotate(-10deg);
  pointer-events: none;
}

body[data-theme="easter"] .brand::before { content: "\1F430"; }
body[data-theme="halloween"] .brand::before { content: "\1F9D9"; }
body[data-theme="newyear"] .brand::before { content: "\1F389"; }

body[data-theme="easter"] .brand::after,
body[data-theme="halloween"] .brand::after,
body[data-theme="newyear"] .brand::after {
  top: auto;
  right: 3%;
  bottom: -8px;
  padding: 0;
  border: 0;
  content: "";
  background: transparent;
  box-shadow: none;
  font-size: clamp(30px, 3.5vw, 52px);
  transform: rotate(8deg);
}

body[data-theme="easter"] .brand::after { content: "\1F95A"; }
body[data-theme="halloween"] .brand::after { content: "\1F383"; }
body[data-theme="newyear"] .brand::after { content: "\2728"; }

/* Customer chat assistant */
.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;
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 1200;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.chat-launcher {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 20px 10px 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #17222b, #0b3854);
  box-shadow: 0 14px 38px rgba(6, 51, 74, .3);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.chat-launcher:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(6, 51, 74, .36); }
.chat-launcher:focus-visible, .chat-close:focus-visible, .chat-form button:focus-visible,
.chat-quick-replies button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.chat-launcher-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 38px;
  border-radius: 8px;
  background: transparent;
}
.chat-launcher-icon img { display: block; width: 100%; height: 100%; object-fit: contain; }

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: grid;
  grid-template-rows: auto minmax(190px, 1fr) auto auto auto;
  width: min(390px, calc(100vw - 30px));
  height: min(590px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid rgba(6, 51, 74, .18);
  border-radius: 24px;
  color: #141414;
  background: #fff;
  box-shadow: 0 26px 70px rgba(6, 51, 74, .28);
  transform-origin: bottom right;
  animation: chat-arrive .22s ease-out;
}

.chat-panel[hidden] { display: none; }
@keyframes chat-arrive { from { opacity: 0; transform: translateY(10px) scale(.97); } }

.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.chat-avatar {
  display: grid;
  flex: 0 0 88px;
  place-items: center;
  box-sizing: border-box;
  width: 88px;
  height: 48px;
  padding: 3px 5px;
  border: 0;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background: transparent;
}

.chat-avatar img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }

/* Valentine's Day: active 7-14 February or with ?theme=valentine */
body[data-theme="valentine"] {
  --orange: #e8476f;
  --orange-dark: #bd244d;
  --blue: #a52b55;
  --blue-dark: #641d3b;
  --paper: #fff6f8;
  --line: rgba(165,43,85,.18);
  background: radial-gradient(circle at 26px 24px, rgba(232,71,111,.1) 0 5px, transparent 6px) 0 0 / 78px 78px, var(--paper);
}
body[data-theme="valentine"] .site-header { background: rgba(255,246,248,.96); border-bottom: 4px solid #f3a6b9; }
body[data-theme="valentine"] .hero { background: radial-gradient(circle at 84% 18%,rgba(232,71,111,.22),transparent 22%),linear-gradient(135deg,#fff8fa,#ffe1e9); }
body[data-theme="valentine"] .trust-strip { background: #641d3b; }
body[data-theme="valentine"] .feature-band,
body[data-theme="valentine"] .review-invite { background: radial-gradient(circle at 86% 18%,rgba(255,187,204,.32),transparent 28%),linear-gradient(135deg,#641d3b,#a52b55); }
body[data-theme="valentine"] .service-grid article,
body[data-theme="valentine"] .steps article,
body[data-theme="valentine"] .quote-panel { border-color: rgba(232,71,111,.25); background: #fffafb; }
body[data-theme="valentine"] .google-reviews { background: linear-gradient(135deg,#fff,#ffeaf0); }

/* Melbourne Cup: active from the Saturday before through Cup Day or with ?theme=melbournecup */
body[data-theme="melbournecup"] {
  --orange: #c9a227;
  --orange-dark: #997513;
  --blue: #18734b;
  --blue-dark: #0b422c;
  --paper: #f8fbf5;
  --line: rgba(24,115,75,.18);
  background: linear-gradient(45deg,rgba(24,115,75,.045) 25%,transparent 25%,transparent 75%,rgba(24,115,75,.045) 75%) 0 0 / 34px 34px,var(--paper);
}
body[data-theme="melbournecup"] .site-header { background: rgba(248,251,245,.96); border-bottom: 4px solid #c9a227; }
body[data-theme="melbournecup"] .hero { background: radial-gradient(circle at 84% 18%,rgba(201,162,39,.22),transparent 23%),linear-gradient(135deg,#fbfff8,#dff1e6); }
body[data-theme="melbournecup"] .trust-strip { background: #0b422c; }
body[data-theme="melbournecup"] .feature-band,
body[data-theme="melbournecup"] .review-invite { background: radial-gradient(circle at 86% 18%,rgba(201,162,39,.3),transparent 28%),linear-gradient(135deg,#0b422c,#18734b); }
body[data-theme="melbournecup"] .service-grid article,
body[data-theme="melbournecup"] .steps article,
body[data-theme="melbournecup"] .quote-panel { border-color: rgba(24,115,75,.25); background: #fcfff9; }
body[data-theme="melbournecup"] .google-reviews { background: linear-gradient(135deg,#fff,#edf6e9); }

.chat-header div:nth-child(2) { display: grid; gap: 3px; }
.chat-header strong { font-size: 16px; }
.chat-header span { font-size: 12px; color: rgba(255,255,255,.8); }
.chat-header i { display: inline-block; width: 7px; height: 7px; margin-right: 4px; border-radius: 50%; background: #61dc91; }
.chat-close { margin-left: auto; border: 0; color: #fff; background: transparent; font-size: 30px; line-height: 1; cursor: pointer; }

.chat-messages {
  overflow-y: auto;
  padding: 18px 16px 8px;
  background: linear-gradient(#f7fbfd, #fff);
}

.chat-message { display: flex; margin: 0 0 12px; }
.chat-message p { max-width: 82%; margin: 0; padding: 11px 13px; border-radius: 16px; font-size: 14px; line-height: 1.45; white-space: pre-line; }
.chat-message.bot p { border-bottom-left-radius: 4px; background: #edf4f7; }
.chat-message.user { justify-content: flex-end; }
.chat-message.user p { border-bottom-right-radius: 4px; color: #fff; background: var(--blue); }
.chat-message a { color: inherit; font-weight: 800; }

.chat-quick-replies { display: flex; gap: 7px; overflow-x: auto; padding: 8px 14px 10px; background: #fff; scrollbar-width: thin; }
.chat-quick-replies button { flex: 0 0 auto; padding: 8px 11px; border: 1px solid var(--orange); border-radius: 999px; color: var(--orange-dark); background: #fff9ef; font: inherit; font-size: 12px; font-weight: 800; cursor: pointer; }
.chat-quick-replies button:hover { color: #fff; background: var(--orange-dark); }

.chat-form { display: flex; gap: 8px; padding: 10px 12px; border-top: 1px solid #dce6ea; background: #fff; }
.chat-form input { min-width: 0; flex: 1; padding: 11px 13px; border: 1px solid #bccbd1; border-radius: 12px; font: inherit; font-size: 14px; }
.chat-form input:focus { border-color: var(--blue); outline: 3px solid rgba(0, 92, 124, .14); }
.chat-form button { border: 0; border-radius: 12px; padding: 0 15px; color: #fff; background: var(--orange-dark); font: inherit; font-size: 13px; font-weight: 900; cursor: pointer; }
.chat-privacy { margin: 0; padding: 0 14px 10px; color: #6a747a; background: #fff; font-size: 10px; text-align: center; }

@media (max-width: 520px) {
  .chat-widget { right: 12px; bottom: 12px; }
  .chat-panel { position: fixed; inset: 10px 10px 82px; width: auto; height: auto; border-radius: 20px; }
  .chat-launcher { min-height: 54px; padding-right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .chat-panel { animation: none; }
  .chat-launcher { transition: none; }
}

@media (max-width: 720px) {
  body[data-theme="christmas"] .brand::before { top: -12px; width: 52px; height: 48px; }
  body[data-theme="christmas"] .brand::after { top: 27px; left: 2%; width: 60px; height: 14px; box-shadow: 47px -31px 0 -1px #fff, 0 4px 9px rgba(64, 8, 15, .2); }
  body[data-theme="easter"] .brand::before,
  body[data-theme="halloween"] .brand::before,
  body[data-theme="newyear"] .brand::before { top: -16px; font-size: 38px; }
}

/* Father's Day: week leading to the first Sunday in September */
body[data-theme="fathersday"] { --orange:#e89a24; --orange-dark:#b66b12; --blue:#356b92; --blue-dark:#173e5b; --paper:#f7fbff; --line:rgba(53,107,146,.18); background:radial-gradient(circle at 28px 28px,rgba(53,107,146,.08) 0 5px,transparent 6px) 0 0 / 82px 82px,var(--paper); }
body[data-theme="fathersday"] .site-header { background:rgba(247,251,255,.96); border-bottom:4px solid #e89a24; }
body[data-theme="fathersday"] .hero { background:radial-gradient(circle at 84% 18%,rgba(232,154,36,.24),transparent 24%),linear-gradient(135deg,#fbfdff,#dfedf7); }
body[data-theme="fathersday"] .trust-strip { background:#173e5b; }
body[data-theme="fathersday"] .feature-band,
body[data-theme="fathersday"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(232,154,36,.28),transparent 28%),linear-gradient(135deg,#173e5b,#356b92); }
body[data-theme="fathersday"] .service-grid article,
body[data-theme="fathersday"] .steps article,
body[data-theme="fathersday"] .quote-panel { border-color:rgba(53,107,146,.25); background:#fbfdff; }

/* Generic Australian rules Grand Final: week leading to the last Saturday in September */
body[data-theme="grandfinal"] { --orange:#f28c20; --orange-dark:#c46208; --blue:#124f91; --blue-dark:#092f59; --paper:#f5f9ff; --line:rgba(18,79,145,.2); background:linear-gradient(135deg,rgba(18,79,145,.055) 25%,transparent 25%,transparent 75%,rgba(242,140,32,.055) 75%) 0 0 / 40px 40px,var(--paper); }
body[data-theme="grandfinal"] .site-header { background:rgba(245,249,255,.97); border-bottom:4px solid #f28c20; }
body[data-theme="grandfinal"] .hero { background:radial-gradient(circle at 84% 18%,rgba(242,140,32,.28),transparent 22%),linear-gradient(135deg,#f8fbff,#dce9f7); }
body[data-theme="grandfinal"] .trust-strip { background:#092f59; }
body[data-theme="grandfinal"] .feature-band,
body[data-theme="grandfinal"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(242,140,32,.32),transparent 28%),linear-gradient(135deg,#092f59,#124f91); }
body[data-theme="grandfinal"] .service-grid article,
body[data-theme="grandfinal"] .steps article,
body[data-theme="grandfinal"] .quote-panel { border-color:rgba(18,79,145,.28); background:#fbfdff; }

/* Movember: November outside the Melbourne Cup window */
body[data-theme="movember"] { --orange:#45a9c6; --orange-dark:#217d99; --blue:#244b66; --blue-dark:#112d40; --paper:#f4fafc; --line:rgba(36,75,102,.19); background:radial-gradient(ellipse at 30px 30px,rgba(36,75,102,.08) 0 9px,transparent 10px) 0 0 / 88px 70px,var(--paper); }
body[data-theme="movember"] .site-header { background:rgba(244,250,252,.97); border-bottom:4px solid #45a9c6; }
body[data-theme="movember"] .hero { background:radial-gradient(circle at 84% 18%,rgba(69,169,198,.22),transparent 23%),linear-gradient(135deg,#f8fcfd,#dcebf0); }
body[data-theme="movember"] .trust-strip { background:#112d40; }
body[data-theme="movember"] .feature-band,
body[data-theme="movember"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(69,169,198,.3),transparent 28%),linear-gradient(135deg,#112d40,#244b66); }
body[data-theme="movember"] .service-grid article,
body[data-theme="movember"] .steps article,
body[data-theme="movember"] .quote-panel { border-color:rgba(36,75,102,.25); background:#fafdff; }

body[data-theme="mothersday"] { --orange:#df688f; --orange-dark:#b33c68; --blue:#76528f; --blue-dark:#49335f; --paper:#fff8fb; --line:rgba(118,82,143,.18); background:radial-gradient(circle at 28px 28px,rgba(223,104,143,.09) 0 5px,transparent 6px) 0 0 / 84px 84px,var(--paper); }
body[data-theme="mothersday"] .site-header { background:rgba(255,248,251,.97); border-bottom:4px solid #efabc1; }
body[data-theme="mothersday"] .hero { background:radial-gradient(circle at 84% 18%,rgba(223,104,143,.22),transparent 24%),linear-gradient(135deg,#fffafd,#f3e5f5); }
body[data-theme="mothersday"] .trust-strip { background:#49335f; }
body[data-theme="mothersday"] .feature-band, body[data-theme="mothersday"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(239,171,193,.3),transparent 28%),linear-gradient(135deg,#49335f,#76528f); }

body[data-theme="australiaday"] { --orange:#e8aa25; --orange-dark:#b77808; --blue:#1768a5; --blue-dark:#0a365b; --paper:#f6fbff; --line:rgba(23,104,165,.18); background:radial-gradient(circle at 28px 28px,rgba(232,170,37,.1) 0 4px,transparent 5px) 0 0 / 78px 78px,var(--paper); }
body[data-theme="australiaday"] .site-header { background:rgba(246,251,255,.97); border-bottom:4px solid #e8aa25; }
body[data-theme="australiaday"] .hero { background:radial-gradient(circle at 84% 18%,rgba(232,170,37,.25),transparent 24%),linear-gradient(135deg,#f9fcff,#dceefa); }
body[data-theme="australiaday"] .trust-strip { background:#0a365b; }
body[data-theme="australiaday"] .feature-band, body[data-theme="australiaday"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(232,170,37,.3),transparent 28%),linear-gradient(135deg,#0a365b,#1768a5); }

body[data-theme="kingsbirthday"] { --orange:#c99c32; --orange-dark:#97701d; --blue:#654a87; --blue-dark:#302241; --paper:#fbf9ff; --line:rgba(101,74,135,.2); background:radial-gradient(circle at 28px 28px,rgba(201,156,50,.09) 0 5px,transparent 6px) 0 0 / 82px 82px,var(--paper); }
body[data-theme="kingsbirthday"] .site-header { background:rgba(251,249,255,.97); border-bottom:4px solid #c99c32; }
body[data-theme="kingsbirthday"] .hero { background:radial-gradient(circle at 84% 18%,rgba(201,156,50,.25),transparent 24%),linear-gradient(135deg,#fdfcff,#e9e1f1); }
body[data-theme="kingsbirthday"] .trust-strip { background:#302241; }
body[data-theme="kingsbirthday"] .feature-band, body[data-theme="kingsbirthday"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(201,156,50,.3),transparent 28%),linear-gradient(135deg,#302241,#654a87); }

body[data-theme="birthday"] { --orange:#ff8a00; --orange-dark:#d66400; --blue:#145f9e; --blue-dark:#092f58; --paper:#fff8e8; --line:rgba(20,95,158,.2); background:radial-gradient(circle at 25px 25px,rgba(255,138,0,.11) 0 5px,transparent 6px) 0 0 / 76px 76px,var(--paper); }
body[data-theme="birthday"] .site-header { background:rgba(255,248,232,.97); border-bottom:4px solid #ffc83d; }
body[data-theme="birthday"] .hero { background:repeating-conic-gradient(from 0deg at 84% 20%,rgba(255,200,61,.18) 0 3deg,transparent 3deg 16deg),linear-gradient(135deg,#fff9eb,#dcecff); }
body[data-theme="birthday"] .trust-strip { background:#092f58; }
body[data-theme="birthday"] .feature-band, body[data-theme="birthday"] .review-invite { background:radial-gradient(circle at 86% 18%,rgba(255,200,61,.34),transparent 28%),linear-gradient(135deg,#092f58,#145f9e); }
body[data-theme="birthday"] .quote-panel { border-color:rgba(255,138,0,.3); background:#fffdf7; }
