/* ==========================================================================
   Pug Works Services — styles
   Brand tokens live in :root. Warm, trustworthy, Texan. Mobile-first.
   ========================================================================== */

:root {
  /* ---- Brand palette ---- */
  --ink:        #241f1d;   /* warm charcoal — matches the logo */
  --ink-soft:   #4a423d;
  --muted:      #7c7168;
  --paper:      #faf6ef;   /* warm cream page background */
  --paper-2:    #f3ece0;   /* alternating section tint */
  --card:       #ffffff;
  --line:       #e7ddce;

  --teal:       #0c6b5e;   /* trust anchor — bolder, richer */
  --teal-dark:  #084d43;
  --teal-soft:  #cfe8e2;
  --clay:       #d24f19;   /* terracotta accent / CTAs — bolder */
  --clay-dark:  #ac3c0c;
  --clay-soft:  #fadccd;
  --gold:       #ea9c17;   /* warm highlight — richer */
  --gold-soft:  #fbe7c2;

  /* ---- Season accents (bolder) ---- */
  --spring: #2f9457;
  --summer: #ea9c17;
  --fall:   #d24f19;
  --winter: #2f7ba3;

  /* ---- Type ---- */
  --font-head: "Lora", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* ---- Metrics ---- */
  --wrap: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px -18px rgba(36, 31, 29, .35);
  --shadow-sm: 0 6px 18px -10px rgba(36, 31, 29, .3);
  --header-h: 68px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { animation: none !important; transition: none !important; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: clamp(16px, 1rem + 0.1vw, 17px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.6rem); }
h3 { font-size: 1.18rem; }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .15s;
}
.skip-link:focus { top: 12px; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.wrap-narrow { max-width: 820px; }

.section { padding-block: clamp(56px, 8vw, 104px); }
.section-alt { background: var(--paper-2); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-lede { color: var(--ink-soft); font-size: 1.08rem; margin-top: 14px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-dark); margin-bottom: 14px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }
.eyebrow-light { color: var(--gold); }
.eyebrow-light .dot { background: var(--gold); }
.accent { color: var(--clay); }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--teal); --btn-fg: #fff; --btn-bd: var(--teal);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 12px 22px; border-radius: 999px; border: 2px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  text-decoration: none; transition: transform .08s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--clay); --btn-bd: var(--clay); }
.btn-primary:hover { background: var(--clay-dark); border-color: var(--clay-dark); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--teal-dark); --btn-bd: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: rgba(36,31,29,.18); }
.btn-ghost:hover { background: rgba(36,31,29,.05); }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .9rem; }
.btn-block { display: flex; width: 100%; }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 20px -16px rgba(36,31,29,.5); }
.header-inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 42px; height: 42px; border-radius: 50%; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; line-height: 1; letter-spacing: -.01em; }
.brand-name-sub { display: block; font-family: var(--font-body); font-weight: 700; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--clay); margin-top: 3px; }

.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 2px; }
.main-nav a {
  display: inline-block; padding: 9px 11px; border-radius: 9px;
  color: var(--ink-soft); text-decoration: none; font-weight: 600; font-size: .93rem;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--teal-soft); color: var(--teal-dark); }
.header-actions { display: flex; align-items: center; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; justify-content: center;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--card); cursor: pointer; margin-left: auto;
}
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; margin-inline: auto; transition: transform .2s, opacity .2s; }
body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1100px 520px at 82% -8%, var(--teal-soft), transparent 60%),
  radial-gradient(900px 480px at 8% 8%, var(--gold-soft), transparent 55%),
  var(--paper);
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero-copy { max-width: 620px; }
.hero-sub { font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem); color: var(--ink-soft); margin: 20px 0 30px; max-width: 56ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 14px; font-size: .9rem; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.hero-note::before { content: "✓"; display: inline-grid; place-items: center; width: 18px; height: 18px; border-radius: 50%; background: var(--teal); color: #fff; font-size: .7rem; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 34px; }
.hero-badges li { color: var(--ink-soft); font-size: .95rem; }
.hero-badges strong { color: var(--teal-dark); font-family: var(--font-head); font-size: 1.15rem; margin-right: 4px; }

.hero-art { position: relative; }
.hero-photo {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--teal-soft);
}
.hero-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.hero-photo-cap {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 9px;
  background: rgba(26, 22, 20, .72); color: #fff; backdrop-filter: blur(4px);
  padding: 9px 14px; border-radius: 12px; font-size: .82rem; font-weight: 600;
}
.hero-photo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero-art { text-align: center; }
.hero-rating {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; box-shadow: var(--shadow-sm); text-decoration: none; color: var(--ink);
  transition: transform .1s ease, box-shadow .15s ease;
}
.hero-rating:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.hero-rating-g { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.hero-rating-g svg { width: 100%; height: 100%; display: block; }
.hero-rating-score { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1; }
.hero-rating-stars { font-size: .9rem; letter-spacing: .5px; }
.hero-rating-stars .star { color: #dcdce0; }
.hero-rating-stars .star.on { color: #fbbc04; }
.hero-rating-text { font-size: .85rem; color: var(--muted); }

/* ---- Hero service orbit ---- */
.service-orbit {
  --size: clamp(340px, 48vw, 540px);
  --chip: calc(var(--size) * 0.135);
  --r: calc(var(--size) / 2 - var(--chip) / 2 - 6px);
  position: relative; width: var(--size); height: var(--size); margin-inline: auto;
}
/* dashed guide ring the chips travel along */
.service-orbit::before {
  content: ""; position: absolute; inset: calc(var(--chip) / 2 + 6px);
  border: 1.5px dashed var(--line); border-radius: 50%;
}
.orbit-hub {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40%; height: 40%; border-radius: 50%; z-index: 2;
  background: radial-gradient(circle at 50% 38%, #fff, var(--teal-soft));
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.orbit-logo { width: 70%; height: 70%; object-fit: contain; border-radius: 50%; }
.orbit-spinner { position: absolute; inset: 0; animation: orbit-spin 46s linear infinite; }
.orbit-slot {
  position: absolute; top: 50%; left: 50%; width: var(--chip); height: var(--chip);
  margin: calc(var(--chip) / -2) 0 0 calc(var(--chip) / -2);
  transform: rotate(var(--a)) translate(var(--r)) rotate(calc(-1 * var(--a)));
}
.orbit-chip {
  width: 100%; height: 100%; border-radius: 50%; border: 1px solid var(--line);
  background: var(--card); box-shadow: var(--shadow-sm); cursor: pointer;
  display: grid; place-items: center; font-size: calc(var(--chip) * 0.52); padding: 0;
  animation: orbit-spin-rev 46s linear infinite;
  transition: scale .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.orbit-chip:hover, .orbit-chip.is-hot, .orbit-chip:focus-visible {
  border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-soft), var(--shadow);
  scale: 1.22; z-index: 5; outline: none;
}
.orbit-label {
  margin-top: 18px; min-height: 1.5em; text-align: center;
  font-family: var(--font-head); font-size: 1.02rem; color: var(--muted);
}
.orbit-label strong { color: var(--teal-dark); font-weight: 600; }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes orbit-spin-rev { to { transform: rotate(-360deg); } }
/* pause the spin while the visitor is exploring */
.service-orbit:hover .orbit-spinner, .service-orbit:hover .orbit-chip,
.service-orbit:focus-within .orbit-spinner, .service-orbit:focus-within .orbit-chip {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .orbit-spinner, .orbit-chip { animation: none !important; }
}

.hero-marquee { border-block: 1px solid var(--line); background: rgba(255,255,255,.5); overflow: hidden; }
.marquee-track { display: flex; gap: 22px; white-space: nowrap; padding: 13px 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--font-head); font-weight: 600; color: var(--ink-soft); font-size: 1.02rem; }
.marquee-track span:nth-child(even) { color: var(--clay); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 18px; }
.step {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px; box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: -14px; left: 22px; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 50%; background: var(--teal); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; box-shadow: var(--shadow-sm);
}
.step-ic { font-size: 2rem; display: block; margin: 8px 0 14px; }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .96rem; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Flip card — click turns it over, then the detail modal opens. */
.service-card { display: flex; perspective: 1200px; cursor: pointer; }
.service-flip { position: relative; flex: 1; transform-style: preserve-3d; transition: transform .5s cubic-bezier(.4, .15, .2, 1); }
.service-card.is-active .service-flip { transform: rotateY(180deg); }
.service-front, .service-back { backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: var(--radius); }
.service-front {
  display: flex; flex-direction: column; height: 100%;
  background: var(--card); border: 1px solid var(--line); padding: 20px;
  box-shadow: var(--shadow-sm); transition: box-shadow .15s, border-color .15s;
}
.service-card:hover .service-front { box-shadow: var(--shadow); border-color: var(--teal-soft); }
.service-top { display: flex; gap: 14px; align-items: flex-start; }
.service-ic { font-size: 1.7rem; width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; background: var(--teal-soft); border-radius: 12px; }
.service-body h3 { font-size: 1.05rem; }
.service-body p { color: var(--ink-soft); font-size: .92rem; margin-top: 3px; }
.service-note-flag { color: var(--clay-dark) !important; font-size: .8rem !important; font-weight: 700; margin-top: 8px; }
.service-foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.service-more {
  background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit;
  color: var(--teal-dark); font-weight: 700; font-size: .84rem; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.service-more:hover { color: var(--clay-dark); }
.service-more .arrow { transition: transform .15s; }
.service-card:hover .service-more .arrow { transform: translateX(3px); }
.service-back {
  position: absolute; inset: 0; transform: rotateY(180deg);
  display: grid; place-items: center; align-content: center; gap: 8px; text-align: center; padding: 20px;
  background: linear-gradient(150deg, var(--teal), var(--teal-dark)); color: #fff; box-shadow: var(--shadow);
}
.service-back-ic { font-size: 2.4rem; }
.service-back-label { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.cadence {
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; background: var(--gold-soft); color: #9a6a12;
}
.cad-every-visit { background: var(--teal-soft); color: var(--teal-dark); }
.cad-twice-a-year { background: var(--clay-soft); color: var(--clay-dark); }
.cad-annually { background: #dbe9f1; color: #245f7e; }

/* fee pill on optional cards — same footprint as a cadence badge */
.cad-fee { background: var(--clay-soft); color: var(--clay-dark); }

/* ---- Optional add-ons group ---- */
.optional-block { margin-top: 40px; padding-top: 34px; border-top: 1px dashed var(--line); }
.optional-block[hidden] { display: none; }
.optional-head { max-width: 640px; margin-bottom: 22px; }
.optional-tag { display: inline-block; font-family: "IBM Plex Mono", monospace; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-dark); background: var(--clay-soft); padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.optional-head h3 { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem); }
.optional-head p { color: var(--ink-soft); margin-top: 8px; }

.services-foot {
  margin-top: 26px; text-align: center; color: var(--ink-soft); font-size: 1.02rem;
  max-width: 66ch; margin-inline: auto; padding: 16px 20px; border: 1px dashed var(--line);
  border-radius: var(--radius); background: rgba(255,255,255,.5);
}

/* ==========================================================================
   SEASONS
   ========================================================================== */
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.season-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm); border-top: 5px solid var(--accent, var(--teal));
}
.season-spring { --accent: var(--spring); }
.season-summer { --accent: var(--summer); }
.season-fall   { --accent: var(--fall); }
.season-winter { --accent: var(--winter); }
.season-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.season-ic { font-size: 1.8rem; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: color-mix(in srgb, var(--accent) 15%, white); }
.season-months { font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.season-focus { font-family: var(--font-head); font-weight: 600; color: var(--accent); margin-bottom: 12px; font-size: 1.02rem; }
.season-tasks { list-style: none; display: grid; gap: 8px; }
.season-tasks li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--ink-soft); }
.season-tasks li::before { content: ""; position: absolute; left: 4px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ==========================================================================
   FREE IN-HOME ASSESSMENT
   ========================================================================== */
.section-assess { background:
  radial-gradient(760px 380px at 12% 0%, var(--teal-soft), transparent 60%),
  radial-gradient(680px 360px at 96% 100%, var(--gold-soft), transparent 62%),
  var(--paper); }
.assess-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.assess-card {
  display: flex; gap: 14px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
}
.assess-ic { font-size: 1.55rem; width: 48px; height: 48px; flex-shrink: 0; display: grid; place-items: center; border-radius: 12px; background: var(--teal-soft); }
.assess-card h3 { font-size: 1.05rem; margin-bottom: 5px; }
.assess-card p { color: var(--ink-soft); font-size: .9rem; }
.assess-note {
  margin-top: 22px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: var(--ink); color: #f3ece2; border-radius: var(--radius); padding: 24px 28px;
}
.assess-note-ic { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.assess-note-body { flex: 1 1 340px; }
.assess-note-body p { color: #ece4d9; font-size: .98rem; }
.assess-note-body strong { color: #fff; }
.assess-note .btn { flex-shrink: 0; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.size-toggle { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 4px; padding: 5px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 34px; box-shadow: var(--shadow-sm); }
.size-btn { font-family: var(--font-body); font-weight: 700; font-size: .95rem; padding: 10px 22px; border: 0; border-radius: 999px; background: transparent; color: var(--ink-soft); cursor: pointer; transition: background .15s, color .15s; white-space: nowrap; }
.size-btn.is-active { background: var(--teal); color: #fff; }
.size-btn:hover:not(.is-active) { background: var(--paper-2); }
.size-div { width: 1px; align-self: stretch; margin: 4px 3px; background: var(--line); }
.size-btn-biz { color: var(--teal-dark); }
.size-btn-biz:hover { background: var(--teal-soft); }
.size-btn-arrow { font-size: .8em; opacity: .7; margin-left: 1px; }

/* ---- Pricing layout: cards on the left, add-on stack on the right ---- */
.pricing-layout { display: grid; gap: 22px; align-items: start; }
@media (min-width: 1000px) { .pricing-layout { grid-template-columns: minmax(0, 1fr) 320px; } }

/* ---- Optional add-on picker ---- */
.addon-picker { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.addon-picker[hidden] { display: none; }
/* float the legend so it flows inside the box instead of straddling the top border */
.addon-picker legend { float: left; width: 100%; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; padding: 0; margin: 0 0 14px; }
.addon-hint { font-family: var(--font-body); font-weight: 400; font-size: .9rem; color: var(--muted); }
.addon-options { clear: both; display: grid; grid-template-columns: 1fr; gap: 12px; }
.addon { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--paper); cursor: pointer; transition: border-color .15s, background .15s; }
.addon:hover { border-color: var(--teal); }
.addon input { position: absolute; opacity: 0; width: 0; height: 0; }
.addon-check { flex-shrink: 0; width: 22px; height: 22px; border: 2px solid var(--line); border-radius: 6px; margin-top: 1px; display: grid; place-items: center; transition: background .15s, border-color .15s; }
.addon-check::after { content: ""; width: 11px; height: 6px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg) scale(0); transform-origin: center; transition: transform .15s; margin-top: -2px; }
.addon input:checked + .addon-check { background: var(--teal); border-color: var(--teal); }
.addon input:checked + .addon-check::after { transform: rotate(-45deg) scale(1); }
.addon:has(input:checked) { border-color: var(--teal); background: var(--teal-soft); }
.addon input:focus-visible + .addon-check { outline: 3px solid var(--clay); outline-offset: 2px; }
.addon-text { display: flex; flex-direction: column; gap: 2px; }
.addon-name { font-weight: 700; font-size: .96rem; color: var(--ink); }
.addon-fee { font-size: .85rem; font-weight: 700; color: var(--clay-dark); }
.addon-fee em { font-style: normal; font-weight: 500; color: var(--muted); }

.price-breakdown { font-size: .82rem; color: var(--muted); margin-top: 6px; }
.feat-addon { font-weight: 600; }
.feat-addon-fee { color: var(--clay-dark); font-weight: 700; }

.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.price-card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card-featured { border: 2px solid var(--clay); box-shadow: var(--shadow); }
.price-flag { position: absolute; top: -13px; left: 32px; background: var(--clay); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.price-name { font-size: 1.5rem; }
.price-blurb { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 16px; min-height: 2.8em; }
.price-from { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-dark); margin-bottom: 2px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; }
.price-annual { font-family: var(--font-head); font-weight: 700; font-size: 2.7rem; color: var(--ink); line-height: 1; }
.price-per { color: var(--muted); font-weight: 600; }
.price-monthly { color: var(--teal-dark); font-weight: 700; font-size: .92rem; margin-top: 8px; }
.price-features { list-style: none; display: grid; gap: 11px; margin: 22px 0 26px; }
.price-features li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: .96rem; }
.price-features li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c6b62' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.price-card .btn { margin-top: auto; }
.pricing-foot { margin-top: 24px; color: var(--muted); font-size: .92rem; max-width: 840px; }
.pricing-foot + .pricing-foot { margin-top: 8px; }
.pricing-foot strong { color: var(--ink-soft); }

/* ==========================================================================
   BUSINESS & BUILDER PRICING
   ========================================================================== */
.section-business { background:
  radial-gradient(820px 420px at 90% 0%, var(--teal-soft), transparent 60%),
  var(--paper); }
.biz-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.biz-card { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.biz-card-featured { border: 2px solid var(--teal); box-shadow: var(--shadow); }
.biz-flag { position: absolute; top: -13px; left: 32px; background: var(--teal); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }
.biz-head { display: flex; align-items: center; gap: 15px; margin-bottom: 14px; }
.biz-ic { font-size: 1.9rem; width: 58px; height: 58px; flex-shrink: 0; display: grid; place-items: center; border-radius: 14px; background: var(--teal-soft); }
.biz-name { font-size: 1.4rem; }
.biz-audience { font-size: .8rem; font-weight: 800; letter-spacing: .04em; color: var(--clay-dark); text-transform: uppercase; margin-top: 3px; }
.biz-blurb { color: var(--ink-soft); font-size: .98rem; margin-bottom: 16px; }
.biz-price { display: flex; align-items: baseline; gap: 8px; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.biz-price-label { font-family: var(--font-head); font-weight: 700; font-size: 2rem; color: var(--ink); }
.biz-price-note { color: var(--muted); font-size: .92rem; font-weight: 600; }
.biz-features { list-style: none; display: grid; gap: 11px; margin-bottom: 26px; }
.biz-features li { position: relative; padding-left: 30px; color: var(--ink-soft); font-size: .96rem; }
.biz-features li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c6b62' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.biz-card .btn { margin-top: auto; }
.biz-foot { margin-top: 24px; color: var(--muted); font-size: .95rem; max-width: 72ch; }

/* ==========================================================================
   WHAT'S INCLUDED
   ========================================================================== */
.included-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 44px; }
.included-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.included-ic { font-size: 1.7rem; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 12px; background: var(--gold-soft); margin-bottom: 12px; }
.included-card h3 { margin-bottom: 6px; }
.included-card p { color: var(--ink-soft); font-size: .94rem; }

.included-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-col { border-radius: var(--radius); padding: 28px; border: 1px solid var(--line); }
.compare-col h3 { font-size: 1.15rem; margin-bottom: 16px; }
.compare-col ul { list-style: none; display: grid; gap: 12px; }
.compare-col li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.compare-them { background: var(--paper-2); }
.compare-them li::before { content: "–"; position: absolute; left: 6px; top: -1px; color: var(--muted); font-weight: 800; font-size: 1.2rem; }
.compare-us { position: relative; background: var(--teal); border-color: var(--teal-dark); color: #eef7f5; }
.compare-us h3 { color: #fff; }
.compare-us li { color: #e3f1ee; }
.compare-us li::before {
  content: ""; position: absolute; left: 4px; top: 3px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.compare-badge { position: absolute; top: -13px; right: 24px; background: var(--gold); color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; }

/* ==========================================================================
   ABOUT / TRUST
   ========================================================================== */
.section-trust { background:
  radial-gradient(800px 400px at 90% 10%, var(--teal-soft), transparent 60%), var(--paper); }
.about-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.about-art { display: grid; place-items: center; }
.about-badge { width: min(320px, 78%); aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, #fff, var(--teal-soft)); border: 1px solid var(--line); box-shadow: var(--shadow); }
.about-badge img { width: 74%; border-radius: 50%; }
.about-copy p { color: var(--ink-soft); margin-top: 14px; max-width: 58ch; }
.trust-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-stats li { flex: 1 1 130px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px; box-shadow: var(--shadow-sm); }
.trust-stats strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--teal-dark); line-height: 1.1; }
.trust-stats span { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { display: grid; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink);
}
.faq-q:hover { color: var(--teal-dark); }
.faq-chevron { flex-shrink: 0; width: 12px; height: 12px; border-right: 2.5px solid var(--clay); border-bottom: 2.5px solid var(--clay); transform: rotate(45deg); transition: transform .2s; margin-top: -4px; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(-135deg); margin-top: 4px; }
.faq-a { padding: 0 22px 22px; }
.faq-a p { color: var(--ink-soft); max-width: 70ch; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.section-contact { background: var(--ink); color: #f3ece2; }
.section-contact .eyebrow { color: var(--gold); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-copy > p { color: #d8cfc4; margin-top: 14px; max-width: 46ch; }
.contact-points { list-style: none; display: grid; gap: 12px; margin: 26px 0; }
.contact-points li { display: flex; align-items: center; gap: 12px; color: #ece4d9; }
.contact-points .ci { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--teal); color: #fff; font-size: .8rem; flex-shrink: 0; }
.contact-alt { color: #cbc1b5; font-size: .95rem; }
.contact-alt a { color: var(--gold); font-weight: 700; }

.contact-form { background: var(--card); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow); color: var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-weight: 700; font-size: .9rem; }
.field .optional { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--paper); color: var(--ink);
  transition: border-color .15s, box-shadow .15s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-soft); }
.field input.has-error, .field select.has-error { border-color: var(--clay); }
.field-error { color: var(--clay-dark); font-size: .82rem; font-weight: 700; min-height: 1em; }
.field textarea { resize: vertical; }
.form-note { margin-top: 12px; font-size: .82rem; color: var(--muted); text-align: center; }
.form-success { margin-top: 16px; padding: 16px 18px; border-radius: 10px; background: var(--teal-soft); color: var(--teal-dark); border: 1px solid var(--teal); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: #1a1614; color: #cfc6ba; padding-top: clamp(48px, 6vw, 72px); }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; margin-bottom: 14px; }
.footer-name { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff; }
.footer-tag { color: #a99e91; margin-top: 6px; max-width: 34ch; }
.footer-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-nav h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-nav ul { list-style: none; display: grid; gap: 10px; }
.footer-nav a { color: #cfc6ba; text-decoration: none; font-size: .94rem; }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-nav span { color: #a99e91; font-size: .94rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { font-size: .84rem; color: #8f8578; }
.footer-fine { color: #756c60; }

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.reviews-summary { display: flex; align-items: center; gap: 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-sm); }
.reviews-glogo { flex-shrink: 0; }
.reviews-glogo svg { width: 36px; height: 36px; display: block; }
.reviews-score { display: flex; flex-direction: column; line-height: 1.15; }
.reviews-rating { font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: var(--ink); }
.reviews-count { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.reviews-stars { font-size: 1rem; letter-spacing: 1px; }
.reviews-stars .star, .review-stars .star { color: #dcdce0; }
.reviews-stars .star.on, .review-stars .star.on { color: #fbbc04; }
.reviews-note { text-align: center; font-size: .85rem; font-style: italic; color: #8a6d1a; background: var(--gold-soft); border: 1px dashed var(--gold); border-radius: 10px; padding: 9px 14px; margin-bottom: 20px; }
.reviews-grid { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; }
.review-top { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.review-who { flex: 1; min-width: 0; }
.review-name { font-weight: 700; font-size: .98rem; }
.review-date { font-size: .8rem; color: var(--muted); }
.review-g { width: 20px; height: 20px; flex-shrink: 0; }
.review-g svg { width: 100%; height: 100%; display: block; }
.review-stars { font-size: 1.05rem; letter-spacing: 1px; }
.review-text { color: var(--ink-soft); font-size: .95rem; line-height: 1.6; }

/* ==========================================================================
   SERVICE DETAIL MODAL
   ========================================================================== */
body.modal-open { overflow: hidden; }
.modal-overlay {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px;
  background: rgba(26, 22, 20, .55); backdrop-filter: blur(3px);
  animation: modal-fade .2s ease both;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative; width: min(60vw, 880px); max-height: 88vh; overflow-y: auto;
  background: var(--card); border-radius: 20px; box-shadow: 0 40px 90px -25px rgba(0, 0, 0, .55);
  padding: clamp(24px, 3vw, 40px); animation: modal-pop .25s ease both;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--clay-soft); color: var(--clay-dark); }
.modal-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-right: 48px; }
.modal-ic { font-size: 2.2rem; width: 66px; height: 66px; flex-shrink: 0; display: grid; place-items: center; border-radius: 16px; background: var(--teal-soft); }
.modal-cadence { display: inline-block; margin-bottom: 8px; }
.modal-head h2 { font-size: clamp(1.4rem, 1.1rem + 1.3vw, 1.95rem); line-height: 1.15; }
.modal-detail { font-size: 1.06rem; color: var(--ink-soft); }
.modal-why { margin-top: 22px; background: var(--paper-2); border-left: 4px solid var(--teal); border-radius: 12px; padding: 18px 22px; }
.modal-why h3 { font-size: 1.05rem; color: var(--teal-dark); margin-bottom: 6px; }
.modal-why p { color: var(--ink-soft); }
.modal-fee { display: inline-block; font-weight: 800; color: var(--clay-dark); background: var(--clay-soft); border-radius: 999px; padding: 6px 14px; margin-bottom: 14px; font-size: .92rem; }
.modal-fee strong { color: var(--clay-dark); }
.modal-notes { margin-top: 18px; background: var(--clay-soft); border: 1px solid #eabfa8; border-radius: 12px; padding: 18px 22px; }
.modal-notes h3 { font-size: 1.02rem; color: var(--clay-dark); margin-bottom: 10px; display: flex; align-items: center; gap: 7px; }
.modal-notes ul { margin: 0; padding-left: 20px; display: grid; gap: 9px; }
.modal-notes li { color: var(--ink-soft); font-size: .93rem; line-height: 1.55; }
.modal-foot { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
@media (max-width: 640px) {
  .modal { width: 94vw; max-height: 90vh; }
  .modal-foot .btn { flex: 1 1 auto; }
  .modal-head { gap: 12px; }
  .modal-ic { width: 54px; height: 54px; font-size: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .modal-overlay, .modal { animation: none; }
  .service-flip { transition: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Nav collapses to the hamburger while the full row of links still fits — the
   7-item menu + brand + CTA needs the whole width, so switch early to avoid
   the links wrapping onto a second line. Keep the links on one line until then. */
.main-nav ul { flex-wrap: nowrap; }
.main-nav a { white-space: nowrap; }
@media (max-width: 1120px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  body.nav-open .main-nav {
    display: block; position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    margin: 0; padding: 12px clamp(18px, 4vw, 40px) 20px; z-index: 99;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  body.nav-open .main-nav ul { flex-direction: column; gap: 2px; }
  body.nav-open .main-nav a { display: block; padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); white-space: normal; }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 0; max-width: 560px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .assess-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-art { order: -1; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 620px) {
  .hero-badges { gap: 10px 18px; }
  .steps { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .assess-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .addon-options { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .included-compare { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 24px; }
  .hero-cta .btn { flex: 1 1 auto; }
}

@media (max-width: 380px) {
  .footer-nav { grid-template-columns: 1fr; }
  .size-btn { padding: 10px 16px; }
  .size-div { display: none; }
}
