:root {
  --teal: #0f9aa6;
  --deep-teal: #05606d;
  --mint: #d7f7f3;
  --mint-2: #eefbf8;
  --lavender: #a98ad6;
  --lavender-soft: #efe7fb;
  --sun: #f8bf55;
  --coral: #f29b85;
  --ink: #16393f;
  --body: #42585d;
  --muted: #698186;
  --paper: #fffdf8;
  --cream: #fff5ea;
  --white: #ffffff;
  --line: rgba(15, 154, 166, 0.18);
  --shadow: 0 28px 70px rgba(5, 96, 109, 0.17);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--body);
  background:
    radial-gradient(circle at 15% 5%, rgba(215, 247, 243, 0.9), transparent 32rem),
    radial-gradient(circle at 85% 18%, rgba(239, 231, 251, 0.76), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, #fff6ed 47%, #eefbf8 100%);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 17rem;
  height: 17rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.42;
  pointer-events: none;
}

body::before {
  left: -6rem;
  top: 16rem;
  background: var(--mint);
}

body::after {
  right: -5rem;
  bottom: 10rem;
  background: var(--lavender-soft);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 50;
  padding: 0.75rem 1rem;
  background: var(--deep-teal);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
}

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.9rem max(1.25rem, calc((100vw - 1160px) / 2));
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(15, 154, 166, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 13rem;
}

.brand-logo {
  display: block;
  width: clamp(12rem, 22vw, 18rem);
  max-height: 5rem;
  object-fit: contain;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 154, 166, 0.16), rgba(169, 138, 214, 0.22));
  overflow: hidden;
}

.brand-mark .sun {
  position: absolute;
  width: 1.55rem;
  height: 1.55rem;
  right: 0.38rem;
  top: 0.42rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd76d, #f8a84f);
}

.brand-mark .palm {
  position: absolute;
  left: 0.9rem;
  top: 0.55rem;
  width: 0.18rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--deep-teal);
  transform: rotate(18deg);
}

.brand-mark .palm::before,
.brand-mark .palm::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  left: -0.55rem;
  width: 1.15rem;
  height: 0.55rem;
  border-radius: 100% 0;
  background: var(--teal);
  transform: rotate(-26deg);
}

.brand-mark .palm::after {
  left: 0.05rem;
  transform: rotate(24deg);
}

.brand-mark .wave {
  position: absolute;
  left: 0.35rem;
  bottom: 0.6rem;
  width: 2.2rem;
  height: 0.55rem;
  border-bottom: 0.18rem solid #5bc5d1;
  border-radius: 50%;
}

.brand-mark .wave.two {
  bottom: 0.28rem;
  left: 0.65rem;
  width: 1.65rem;
  border-color: #8ad6dc;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-name {
  color: var(--teal);
  font-family: "Pacifico", cursive;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  white-space: nowrap;
}

.brand-name em {
  color: var(--lavender);
  font-style: normal;
}

.brand-sub {
  color: var(--deep-teal);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.8rem);
  font-weight: 900;
  color: var(--deep-teal);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--lavender);
  transition: width 160ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 900;
  line-height: 1;
  border: 1px solid transparent;
  box-shadow: 0 12px 26px rgba(5, 96, 109, 0.12);
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--teal), #4cc8d2);
  color: var(--white);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--deep-teal);
  border-color: rgba(15, 154, 166, 0.26);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 7vw, 5rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-size: clamp(4rem, 10vw, 7.6rem);
  letter-spacing: -0.02em;
}

h1 span {
  display: block;
  color: var(--teal);
}

h2 {
  font-size: clamp(2.45rem, 5.5vw, 4.7rem);
}

h3 {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 40rem;
  margin-bottom: 1.5rem;
  color: var(--body);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.7rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.trust-row span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(15, 154, 166, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--deep-teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  transform: rotate(1.2deg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1rem -1rem 1.4rem;
  z-index: -1;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(15, 154, 166, 0.2), rgba(169, 138, 214, 0.2));
}

.hero-visual img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top;
  border: 0.7rem solid rgba(255, 255, 255, 0.76);
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.offer-badge {
  position: absolute;
  right: -1rem;
  bottom: 1.6rem;
  display: grid;
  place-items: center;
  width: 9rem;
  height: 9rem;
  padding: 1rem;
  border: 0.45rem solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--lavender), #c8b2ec);
  color: var(--white);
  text-align: center;
  box-shadow: 0 18px 34px rgba(104, 73, 151, 0.25);
}

.offer-badge strong {
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

.offer-badge span {
  font-family: "Pacifico", cursive;
  font-size: 1.05rem;
}

.intro-band {
  overflow: hidden;
  border-block: 1px solid rgba(15, 154, 166, 0.16);
  background: linear-gradient(90deg, var(--deep-teal), var(--teal), var(--lavender));
  color: var(--white);
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}

.ticker span {
  padding: 1rem 1.6rem;
  color: var(--white);
  font-weight: 900;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 1.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading p {
  font-size: 1.13rem;
}

.section-heading.compact {
  max-width: 680px;
}

.services-section,
.addons-section,
.flyer-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.price-tile,
.mission-card,
.quote-form,
.contact-card,
.pricing-card,
.special-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 38px rgba(5, 96, 109, 0.08);
}

.service-card {
  padding: 1.4rem;
}

.service-card.wide {
  grid-column: span 3;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--lavender-soft));
  color: var(--deep-teal);
  font-weight: 900;
}

.service-card ul,
.inline-list {
  padding-left: 1.1rem;
}

.service-card li::marker,
.addons-grid span::before {
  color: var(--lavender);
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  list-style: none;
}

.inline-list li {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--mint-2);
  color: var(--deep-teal);
  font-weight: 900;
}

.pricing-section,
.mission-section,
.quote-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    linear-gradient(135deg, rgba(215, 247, 243, 0.75), rgba(255, 245, 234, 0.8)),
    radial-gradient(circle at 80% 20%, rgba(169, 138, 214, 0.17), transparent 32rem);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.2rem;
  align-items: start;
}

.pricing-card {
  padding: 1.3rem;
}

.pricing-card h3,
.price-tile h3 {
  margin-bottom: 0.35rem;
  color: var(--deep-teal);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
}

th,
td {
  padding: 0.78rem 0.85rem;
  border-bottom: 1px solid rgba(15, 154, 166, 0.14);
  text-align: left;
}

th {
  background: linear-gradient(135deg, var(--teal), #71d6dd);
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

td:not(:first-child) {
  font-weight: 900;
  color: var(--ink);
}

.price-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.price-tile {
  padding: 1.2rem;
}

.price-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed rgba(15, 154, 166, 0.24);
}

.price-list span {
  min-width: 0;
}

.price-list strong,
.price-tile strong {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--teal);
}

.small-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.special-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.2rem;
  padding: 1.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 231, 251, 0.62)),
    var(--white);
}

.special-row h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.savings {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.savings span {
  display: grid;
  min-width: 6.5rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background: var(--white);
  color: var(--deep-teal);
  text-align: center;
  box-shadow: 0 10px 24px rgba(5, 96, 109, 0.08);
}

.savings strong {
  color: var(--lavender);
  font-size: 1.45rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.addons-grid span {
  position: relative;
  padding: 0.8rem 0.9rem 0.8rem 1.95rem;
  border: 1px solid rgba(15, 154, 166, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 800;
}

.addons-grid span::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  top: 1.25rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--lavender);
}

.mission-layout,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.mission-card {
  padding: clamp(1.35rem, 4vw, 2.4rem);
}

.mission-card p:not(.eyebrow) {
  font-size: 1.08rem;
}

.flyer-stack {
  position: relative;
  min-height: 610px;
}

.flyer-button,
.pricing-flyer-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.flyer-button {
  position: absolute;
  width: min(360px, 72%);
  filter: drop-shadow(0 24px 46px rgba(5, 96, 109, 0.22));
}

.flyer-button.lower {
  right: 0;
  top: 9rem;
}

.flyer-button img,
.pricing-flyer-button img {
  border: 0.55rem solid rgba(255, 255, 255, 0.74);
  border-radius: 1.6rem;
}

.pricing-flyer-button {
  max-width: 640px;
  margin: 0 auto;
  filter: drop-shadow(0 22px 46px rgba(5, 96, 109, 0.18));
}

.quote-layout {
  align-items: start;
}

.quote-copy h2 {
  margin-bottom: 1rem;
}

.contact-card {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.3rem;
  padding: 1.2rem;
}

.contact-card a {
  color: var(--deep-teal);
  font-size: 1.13rem;
  font-weight: 900;
}

.contact-card span {
  color: var(--muted);
}

.quote-form {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--deep-teal);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(15, 154, 166, 0.26);
  border-radius: 0.9rem;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 154, 166, 0.12);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  margin-top: 0.2rem;
  border: 0;
  cursor: pointer;
}

.site-footer {
  padding: 2rem 0;
  background: var(--deep-teal);
  color: var(--white);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner div {
  display: grid;
  gap: 0.25rem;
}

.footer-inner a,
.footer-inner span {
  color: rgba(255, 255, 255, 0.8);
}

.flyer-dialog {
  width: min(940px, calc(100vw - 24px));
  max-height: calc(100vh - 24px);
  padding: 0;
  border: 0;
  border-radius: 1.4rem;
  background: transparent;
}

.flyer-dialog::backdrop {
  background: rgba(6, 34, 38, 0.78);
  backdrop-filter: blur(8px);
}

.flyer-dialog img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 82px);
  object-fit: contain;
  border-radius: 1.2rem;
  background: var(--white);
}

.dialog-close {
  display: block;
  margin: 0 0 0.5rem auto;
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  background: var(--white);
  color: var(--deep-teal);
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    font-size: 0.93rem;
  }

  .header-cta {
    padding-inline: 1rem;
  }

  .hero,
  .pricing-layout,
  .mission-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .service-grid,
  .addons-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card.wide {
    grid-column: span 2;
  }

  .flyer-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .flyer-button,
  .flyer-button.lower {
    position: static;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    justify-content: center;
    padding: 0.85rem 0.9rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(13.5rem, 52vw);
    max-height: 4rem;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .brand-sub {
    font-size: 0.58rem;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.15rem;
    gap: 0.9rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .hero-actions,
  .special-row,
  .footer-inner {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .offer-badge {
    right: 0.3rem;
    bottom: 1rem;
    width: 7rem;
    height: 7rem;
  }

  .offer-badge strong {
    font-size: 1.25rem;
  }

  .service-grid,
  .addons-grid,
  .price-mini-grid,
  .flyer-stack {
    grid-template-columns: 1fr;
  }

  .service-card.wide {
    grid-column: span 1;
  }

  table,
  tbody,
  tr,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  table {
    min-width: 0;
    background: transparent;
  }

  thead {
    display: none;
  }

  tr {
    margin-bottom: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(15, 154, 166, 0.16);
    border-radius: 1rem;
    background: var(--white);
  }

  td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.72rem 0.85rem;
  }

  td:first-child {
    display: block;
    background: linear-gradient(135deg, var(--mint), var(--lavender-soft));
    color: var(--deep-teal);
    font-weight: 900;
  }

  td:nth-child(2)::before {
    content: "Weekly";
    color: var(--muted);
    font-weight: 800;
  }

  td:nth-child(3)::before {
    content: "Bi-weekly";
    color: var(--muted);
    font-weight: 800;
  }

  td:nth-child(4)::before {
    content: "Monthly";
    color: var(--muted);
    font-weight: 800;
  }

  .service-card,
  .price-tile,
  .pricing-card,
  .mission-card,
  .quote-form {
    border-radius: 1.1rem;
  }

  h2 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .flyer-dialog {
    width: calc(100vw - 16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .ticker {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }
}
