/* ===========================================================================
   Goodland Web Co. — Portfolio
   Drawn from the logo: cream paper · deep teal · sunset orange · ocean cyan,
   with palm green, grape & magenta from the little window scene.
   =========================================================================== */

/* ===== Tokens ===== */
:root {
  --ink: #15414b;          /* deep teal — the "GOODLAND" wordmark */
  --ink-soft: #4a6670;
  --sand: #f5f1e6;         /* cream paper — the logo's background */
  --sand-2: #ece4d2;
  --sand-3: #e2d8c1;
  --terra: #a64dd6;        /* bright engaging violet — primary accent */
  --terra-dark: #8a39ba;
  --gold: #2f9fe0;         /* bright azure blue — secondary accent (named gold for legacy) */
  --aqua: #2f9fe0;         /* bright azure blue */
  --orange: #f1957f;       /* coral sand from the logo (lower-left) — tertiary accent */
  --ocean: #1f9aa8;        /* ocean cyan — secondary */
  --palm: #2f9e5f;         /* palm green */
  --grape: #8a3fa0;        /* mountain purple */
  --magenta: #c43d8f;      /* mountain magenta */
  --coral: #f48fa0;        /* coral sand */
  --cream: #fdfbf4;
  --line: rgba(21, 65, 75, 0.14);
  --shadow: 0 20px 45px -24px rgba(21, 65, 75, 0.42);
  --shadow-lift: 0 32px 70px -30px rgba(21, 65, 75, 0.5);
  --radius: 18px;
  --maxw: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* clip (not hidden) so the sticky header keeps working while we still block sideways scroll */
html, body { overflow-x: clip; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", "Georgia", serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--terra); color: var(--cream); box-shadow: var(--shadow); }
.btn--solid:hover { background: var(--terra-dark); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--block { width: 100%; }
.btn__ic { width: 1.05em; height: 1.05em; flex: none; }

/* ===== Logo ===== */
/* Header lockup: the browser-window "screen" (black-bordered) above the wordmark. */
.logo { display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--ink); }
.logo__screen {
  display: block; line-height: 0;
  border: 3px solid #111;
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.logo__screen img { display: block; height: 60px; width: auto; }
.logo__word { height: 25px; width: auto; display: block; }
/* Footer: same screen+wordmark lockup, sat on a cream tile so it reads on the dark bg. */
.logo--tile {
  background: var(--cream);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  gap: 0.45rem;
}
.logo--tile .logo__screen { box-shadow: none; }
.logo--tile .logo__screen img { height: 52px; }
.logo--tile .logo__word { height: 22px; }
.logo__mark { width: 38px; height: 38px; flex: none; color: var(--terra); }
.logo__word {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.logo__sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terra);
  margin-top: 2px;
}
.logo--light { color: var(--cream); }
.logo--light .logo__mark { color: #e3895f; }
.logo--light .logo__sub { color: var(--gold); }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 230, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
/* Full-width nav so the logo sits at the far left and links at the far right */
.nav .container { max-width: none; padding: 0 clamp(20px, 3.5vw, 48px); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 120px; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a { font-weight: 600; font-size: 0.95rem; }
.nav__links a:not(.btn):hover { color: var(--terra); }
/* icon-only links in the nav (e.g. email), styled like social icons */
.nav__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.nav__icon svg { width: 18px; height: 18px; }
.nav__icon:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* nav dropdowns (Work, Pricing) */
.nav__item { position: relative; display: inline-flex; align-items: center; }
.nav__caret { font-size: 0.7em; opacity: 0.7; transition: transform 0.15s ease; }
.nav__item:hover .nav__caret { transform: translateY(2px); }
.nav__dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  min-width: 180px; margin-top: 10px;
  display: flex; flex-direction: column; gap: 0.15rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lift); padding: 0.45rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 60;
}
/* invisible bridge so the cursor can cross the gap without the menu closing */
.nav__dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.nav__item:hover .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  padding: 0.55rem 0.8rem; border-radius: 8px; font-size: 0.92rem; font-weight: 600; white-space: nowrap;
}
.nav__dropdown a:hover { background: var(--sand-2); color: var(--terra); }

/* offset anchor jumps so targets clear the sticky header */
#work, #live-sites, #demo-sites, #reviews, #approach, #pricing, #addons, #marketing, #studio, #contact { scroll-margin-top: 130px; }
/* Studio follows the dark Pricing section — give it a bigger light top buffer and
   land the jump right under the nav so the dark section never peeks through. */
#studio { padding-top: clamp(8rem, 11vw, 10rem); scroll-margin-top: 4px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: clamp(2rem, 6vw, 3rem) 24px clamp(2.5rem, 6vw, 3.5rem);
  background:
    radial-gradient(circle at 88% 0%, rgba(47, 159, 224, 0.32), transparent 44%),
    radial-gradient(circle at 96% 8%, rgba(166, 77, 214, 0.2), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(47, 159, 224, 0.22), transparent 48%),
    radial-gradient(circle at 12% 90%, rgba(166, 77, 214, 0.14), transparent 40%);
}
/* mobile stacking order */
.hero__eyebrow   { order: 1; }
.hero__title     { order: 2; }
.hero__sub       { order: 3; }
.hero__actions   { order: 4; }
.hero__guarantee { order: 5; }
.hero__art       { order: 6; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero__art-cap {
  text-align: center; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.68rem; font-weight: 700; color: var(--ink-soft);
}

/* desktop: giant headline breaks the margins bottom-left, slider blown up middle/right */
@media (min-width: 941px) {
  .hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-areas:
      "eyebrow   art"
      "title     art"
      "sub       art"
      "actions   art"
      "guarantee art";
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: 0.45rem;
    align-items: center;
    padding: clamp(3rem, 5vw, 5rem) clamp(28px, 4vw, 56px);
  }
  .hero__eyebrow   { grid-area: eyebrow; align-self: end; }
  .hero__title {
    grid-area: title;
    margin: 0.5rem 0 0.3rem;
    max-width: none;
    font-size: clamp(2.8rem, 6vw, 5.6rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }
  .hero__sub       { grid-area: sub; max-width: 44ch; }
  .hero__actions   { grid-area: actions; margin-top: 0.5rem; }
  .hero__guarantee { grid-area: guarantee; align-self: start; }
  .hero__art       { grid-area: art; align-self: center; justify-self: end; width: 100%; }
  .hero__art .slider { max-width: 620px; margin: 0 auto; }
}

/* Engaging entrance — hero elements fade + rise in with a gentle stagger */
@media (prefers-reduced-motion: no-preference) {
  .hero__eyebrow, .hero__title, .hero__sub, .hero__actions, .hero__guarantee, .hero__art {
    animation: heroRise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .hero__eyebrow   { animation-delay: 0.02s; }
  .hero__title     { animation-delay: 0.10s; }
  .hero__sub       { animation-delay: 0.20s; }
  .hero__actions   { animation-delay: 0.28s; }
  .hero__guarantee { animation-delay: 0.36s; }
  .hero__art       { animation-delay: 0.18s; }
  @keyframes heroRise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero__art .slider { animation: floaty 7s ease-in-out 1s infinite; }
  @keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--palm);
  box-shadow: 0 0 0 4px rgba(47, 158, 95, 0.2);
}
.hero__title { font-size: clamp(1.75rem, 7vw, 4.4rem); font-weight: 600; max-width: 18ch; overflow-wrap: break-word; }
.hero__sub {
  margin: 1.4rem 0 2rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__guarantee {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  padding-left: 1.1rem;
  border-left: 3px solid var(--terra);
  color: var(--ink);
}
.hero__guarantee-num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 3.1rem;
  line-height: 0.85;
  color: var(--terra);
}
.hero__guarantee-copy { display: flex; flex-direction: column; gap: 0.12rem; }
.hero__guarantee-title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.05;
}
.hero__guarantee-sub { font-size: 0.84rem; color: var(--ink-soft); }
.hero__guarantee:hover .hero__guarantee-title { color: var(--terra); }

/* Hero art — work slider */
.hero__art { position: relative; display: flex; justify-content: center; }
.slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lift);
  background: var(--cream);
}
.slider__track { display: flex; height: 100%; transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1); }
.slide { position: relative; min-width: 100%; height: 100%; }
.slide__link { display: block; height: 100%; color: inherit; }
.slide__shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
.slide__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 2.2rem 1.1rem 0.95rem;
  background: linear-gradient(to top, rgba(12, 43, 49, 0.9), rgba(12, 43, 49, 0));
  color: #fff;
}
.slide__caphead { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.slide__title { font-size: 1.2rem; line-height: 1.1; }
.slide__tag { margin-top: 0.2rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.88); font-weight: 500; }
/* status sits inline next to the title here (not absolutely placed like on cards) */
.slide__status { position: static; top: auto; left: auto; }

/* top bar — labels what the slider is showing */
.slider__top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(to bottom, rgba(12, 43, 49, 0.82), rgba(12, 43, 49, 0));
}
.slider__label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(21, 65, 75, 0.8);
  padding: 0.42rem 0.85rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.slider__label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua); box-shadow: 0 0 0 4px rgba(47, 159, 224, 0.28);
}

/* controls */
.slider__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(253, 251, 244, 0.9); color: var(--ink);
  font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 3;
  transition: background 0.15s ease, transform 0.15s ease;
}
.slider__btn:hover { background: #fff; transform: translateY(-50%) scale(1.07); }
.slider__btn--prev { left: 0.6rem; }
.slider__btn--next { right: 0.6rem; }
.slider__nav { display: flex; align-items: center; gap: 0.6rem; }
.slider__count { color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; opacity: 0.9; }
.slider__dots { display: flex; gap: 0.4rem; }
.slider__dot {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; cursor: pointer;
  background: rgba(255, 255, 255, 0.55); transition: width 0.2s ease, background 0.2s ease;
}
.slider__dot.is-active { width: 20px; background: #fff; }

.arch {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(var(--shadow));
}
.arch__glow { transform-origin: 220px 300px; animation: sunpulse 6s ease-in-out infinite; }
@keyframes sunpulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}
.hero__art-badge {
  position: absolute;
  bottom: 6%;
  right: -4%;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero__art-badge strong { display: block; font-family: "Fraunces", serif; font-size: 1.1rem; }
.hero__art-badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); }

@media (prefers-reduced-motion: reduce) { .arch__glow { animation: none; } }

/* ===== Marquee / trust strip ===== */
.marquee {
  background: linear-gradient(180deg, #15414b 0%, #123842 100%);
  padding: 1.6rem 0 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee__eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 1.4rem 0 0;
}
.marquee__viewport {
  overflow: hidden;
  /* soft fades on both edges */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__row { display: flex; width: max-content; animation: marquee 110s linear infinite; }
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; }
.marquee__chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  margin-right: 2.4rem;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.01em;
  color: rgba(245, 241, 230, 0.9);
}
/* subtle separator between items for clean scanning */
.marquee__chip::after {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.28); margin-left: 2.4rem; flex: none;
}
.marquee__chip--accent { color: var(--gold); font-weight: 700; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__row { animation: none; flex-wrap: wrap; gap: 0.6rem; padding: 0 24px; }
}

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--alt {
  background:
    radial-gradient(110% 70% at 88% 0%, rgba(166, 77, 214, 0.08), transparent 60%),
    radial-gradient(110% 70% at 0% 100%, rgba(47, 159, 224, 0.08), transparent 60%),
    linear-gradient(180deg, #efe9dc 0%, #e8e1d0 100%);
}

/* ===== Pricing — premium dark showcase (light cards pop on deep teal) ===== */
#pricing {
  background:
    radial-gradient(120% 80% at 86% -5%, rgba(166, 77, 214, 0.22), transparent 55%),
    radial-gradient(120% 85% at -6% 106%, rgba(47, 159, 224, 0.22), transparent 55%),
    linear-gradient(160deg, #124049 0%, #0f3038 55%, #0b262c 100%);
}
#pricing .section__eyebrow { color: var(--gold); }
#pricing .section__title { color: var(--cream); }
#pricing .section__lead { color: rgba(245, 241, 230, 0.78); }
#pricing .pricing__foot { color: rgba(245, 241, 230, 0.62); }
#pricing .addons__title { color: var(--cream); }
#pricing .addons__note,
#pricing .addons__subnote { color: rgba(245, 241, 230, 0.7); }
#pricing .addons__sub { color: rgba(245, 241, 230, 0.86); border-bottom-color: rgba(255, 255, 255, 0.14); }
.section__head { max-width: 640px; margin-bottom: 3rem; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 0.8rem;
}
.section__eyebrow--light { color: var(--gold); }
.section__title { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section__title--light { color: var(--cream); }
.section__lead { margin-top: 1rem; font-size: 1.1rem; color: var(--ink-soft); }

/* ===== Project Grid ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.75rem; }
.grid__empty { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Work groups (live client work vs. demo) ===== */
.work-group { margin-top: 2.5rem; }
.work-group:first-of-type { margin-top: 0; }
.work-group--demo {
  margin-top: 3.5rem;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2.4rem);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 80% at 86% -5%, rgba(166, 77, 214, 0.22), transparent 55%),
    radial-gradient(120% 85% at -6% 106%, rgba(47, 159, 224, 0.22), transparent 55%),
    linear-gradient(160deg, #124049 0%, #0f3038 55%, #0b262c 100%);
}
.work-group--demo .work-group__title { color: var(--cream); }
.work-group--demo .work-group__note { color: rgba(245, 241, 230, 0.72); }
.work-group__head { margin-bottom: 1.6rem; }
.work-group__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.6rem;
}
.work-group__title::before {
  content: "";
  width: 11px; height: 11px; border-radius: 50%;
  flex: none;
}
.work-group--live .work-group__title::before  { background: #2e9e6b; box-shadow: 0 0 0 4px rgba(46, 158, 107, 0.16); }
.work-group--demo .work-group__title::before  { background: var(--orange);  box-shadow: 0 0 0 4px rgba(241, 149, 127, 0.28); }
.work-group__note { margin-top: 0.35rem; color: var(--ink-soft); font-size: 1rem; }

.card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--from, var(--terra)), var(--to, var(--gold)));
  color: #fff;
  overflow: hidden;
}
.card__preview[aria-disabled="true"] { cursor: default; }
/* browser chrome bar */
.card__bar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; gap: 6px;
  height: 30px; padding: 0 12px;
  background: rgba(31, 46, 52, 0.72);
  backdrop-filter: blur(4px);
}
.card__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.5); }
.card__bar i:nth-child(1) { background: #ff6157; }
.card__bar i:nth-child(2) { background: #ffbd2e; }
.card__bar i:nth-child(3) { background: #28c840; }
.card__bar em {
  margin-left: 8px; font-style: normal;
  font-family: ui-monospace, Menlo, monospace; font-size: 0.72rem;
  color: rgba(255,255,255,0.85); letter-spacing: 0.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* screenshot fills the frame, anchored to the top (hero) */
.card__shot {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.card:hover .card__shot { transform: none; }
.card__glyph { font-size: 3.6rem; z-index: 1; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25)); }
.card__status {
  position: absolute; top: 38px; left: 0.9rem; z-index: 4;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.3rem 0.6rem; border-radius: 999px; background: rgba(31, 46, 52, 0.85); color: #fff;
}
.card__status.is-live::before    { content: "● "; color: #6ee7a0; }
.card__status.is-wip::before     { content: "● "; color: var(--orange); }
.card__status.is-concept::before { content: "● "; color: #9bc2e6; }
.card__open {
  position: absolute; bottom: 0.9rem; right: 0.9rem; z-index: 4;
  font-size: 0.78rem; font-weight: 700; padding: 0.35rem 0.7rem; border-radius: 999px;
  background: rgba(253, 251, 244, 0.92); color: var(--ink);
  opacity: 0; transform: translateY(6px); transition: opacity 0.18s ease, transform 0.18s ease;
}
.card:hover .card__open { opacity: 1; transform: translateY(0); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.5rem; }
.card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card__title { font-size: 1.55rem; }
.card__year { font-size: 0.85rem; color: var(--ink-soft); font-weight: 600; }
.card__tagline { margin-top: 0.3rem; font-weight: 600; color: var(--gold); }
/* highlight the location (where they operate/sell) so it stands out */
.card__loc { display: block; margin-top: 0.2rem; color: var(--terra); font-weight: 700; }
.card__loc::before {
  content: "";
  display: inline-block;
  width: 0.82em; height: 0.82em;
  margin-right: 0.32em;
  vertical-align: -2px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill-rule='evenodd' d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.card__blurb { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.95rem; }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.1rem; }
.card__tags li {
  font-size: 0.73rem; font-weight: 600; padding: 0.28rem 0.6rem; border-radius: 999px;
  background: var(--sand-2); border: 1px solid var(--line); color: var(--ink-soft);
}
.card__actions { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; padding-top: 1.3rem; }
.card__soon { font-weight: 600; color: var(--ink-soft); font-size: 0.9rem; }
.card__note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--sand-2);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0.7rem;
  border-radius: 0 8px 8px 0;
}

/* ===== Goldie — fun-fact mascot (sits beside the concept demos) ===== */
.goldie {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.7rem; text-align: center; padding: 0.5rem;
}
/* a proper speech box — rounded panel with a clean pointer down to Goldie */
.goldie__bubble {
  position: relative;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem;
  max-width: 290px;
}
.goldie__fact {
  margin: 0; color: var(--ink);
  font-family: "Fredoka", "Inter", sans-serif; font-weight: 500;
  font-size: 1rem; line-height: 1.45;
  min-height: 3.4em; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease;
}
/* long, sharp, curved speech tail (SVG) flowing down toward Goodie */
.goldie__bubble::before, .goldie__bubble::after { display: none; }
.goldie__tail {
  position: absolute; left: 50%; bottom: -33px; transform: translateX(-58%) rotate(7deg);
  width: 24px; height: 38px; overflow: visible;
}
.goldie__tail path { fill: var(--cream); stroke: var(--line); stroke-width: 1.5; }
/* slider controls under the tip */
.goldie__nav { display: flex; align-items: center; justify-content: center; gap: 0.7rem; margin-top: 0.55rem; }
.goldie__arrow {
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  border: 1px solid var(--line); background: var(--sand); color: var(--ink);
  cursor: pointer; font-size: 1.05rem; line-height: 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.goldie__arrow:hover { background: var(--terra); color: var(--cream); border-color: var(--terra); }
.goldie__count { font-size: 0.72rem; font-weight: 600; color: var(--ink-soft); min-width: 3.2em; text-align: center; }
.goldie__art { position: relative; line-height: 0; padding-bottom: 14px; }
.goldie__img {
  position: relative; z-index: 2; height: 150px; width: auto; display: block;
  cursor: pointer; transition: transform 0.18s ease;
}
.goldie__img:hover { transform: translateY(-3px) scale(1.02); }
.goldie__img:focus-visible { outline: 2px solid var(--terra); outline-offset: 4px; border-radius: 8px; }
/* a clean ground line + soft contact shadow, for perspective */
.goldie__ledge {
  position: absolute; z-index: 1; left: 50%; bottom: 4px; transform: translateX(-50%);
  width: 82%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(21, 65, 75, 0.22) 16%, rgba(21, 65, 75, 0.22) 84%, transparent);
}
.goldie__ledge::after {
  content: ""; position: absolute; left: 50%; top: -7px; transform: translateX(-50%);
  width: 56%; height: 14px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(21, 65, 75, 0.16), transparent 70%);
}
/* a couple of birds drifting above him (matches the logo flock) */
.goldie__birds { position: absolute; z-index: 1; top: -14px; left: 8%; width: 96px; height: 28px; opacity: 0.8; }
/* static "wave" lines next to his raised hand — no motion */
/* motion lines sit to the RIGHT of his raised hand, with a clear gap (never touching) */
.goldie__wave {
  position: absolute; z-index: 3; top: 11%; right: -28px; width: 22px; height: 44px;
  opacity: 0.7;
}
.goldie__name {
  font-family: "Fredoka", "Inter", sans-serif; font-weight: 600; font-size: 0.78rem;
  color: var(--ocean); letter-spacing: 0.02em;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.18rem 0.7rem; box-shadow: var(--shadow);
}
@media (prefers-reduced-motion: reduce) {
  .goldie__fact { transition: none; }
}

/* ===== Pricing ===== */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.tier:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lift);
  border-color: var(--terra);
}
.tier--feature {
  border: 2px solid var(--terra);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
/* the featured tier already sits raised — lift it a touch more on hover (kept gentle so the flag doesn't hit the divider) */
.tier--feature:hover { transform: translateY(-10px); }
.tier__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--terra); color: var(--cream);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 999px; white-space: nowrap;
}
.tier__head { border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; margin-bottom: 1.2rem; }
.tier__name { font-size: 1.7rem; }
.tier__for { color: var(--ink-soft); font-size: 0.95rem; margin-top: 0.2rem; }
.tier__price { font-family: "Fraunces", serif; font-size: 2.6rem; font-weight: 600; margin-top: 0.9rem; line-height: 1; }
.tier__from { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terra); font-family: "Inter", sans-serif; margin-bottom: 0.2rem; }
.tier__list { display: grid; gap: 0.65rem; margin-bottom: 1.3rem; }
.tier__list li { position: relative; padding-left: 1.6rem; font-size: 0.95rem; color: var(--ink-soft); }
.tier__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ocean); font-weight: 700; }
.tier__note { font-size: 0.88rem; color: var(--ink-soft); font-style: italic; margin-top: auto; margin-bottom: 1.3rem; }
.tier__example {
  display: block; text-align: center; margin: 0 0 1.1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--ink-soft);
}
.tier__example b { color: var(--terra); font-weight: 700; }
.tier__example span { color: var(--terra); }
.tier__example:hover b { text-decoration: underline; }
.tier .btn { margin-top: auto; }

.pricing__foot { text-align: center; margin-top: 2rem; color: var(--ink-soft); font-size: 0.9rem; font-weight: 500; }

/* ===== Add-ons & aftercare ===== */
.addons {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid rgba(245, 241, 230, 0.16);
}
.addons__head { max-width: 640px; margin: 0 auto 2.2rem; text-align: center; }
.addons__title { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.addons__note { margin-top: 0.6rem; color: var(--ink-soft); }
.addons__sub {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 700;
  color: var(--ink-soft); margin: 2.2rem 0 1rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.6rem;
}
.addons__subtag {
  text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.6rem; font-weight: 700;
  color: var(--ocean); background: rgba(31, 154, 168, 0.12);
  padding: 0.22rem 0.55rem; border-radius: 999px;
}
.addons__subnote { margin: -0.4rem 0 1.3rem; color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Marketing comparison table ===== */
.mkt__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
.mkt {
  width: 100%; min-width: 600px;
  border-collapse: separate; border-spacing: 0;
  background: var(--cream); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.mkt th, .mkt td { padding: 0.8rem 1.1rem; border-bottom: 1px solid var(--line); }
.mkt thead th { vertical-align: bottom; text-align: center; border-bottom: 2px solid var(--line); padding-top: 1.35rem; }
.mkt__corner { text-align: left; vertical-align: bottom; font-family: "Fraunces", serif; font-size: 1.02rem; color: var(--ink); }
.mkt__name { display: block; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.3rem; color: var(--ink); }
.mkt__price { display: block; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.45rem; color: var(--terra); margin-top: 0.15rem; }
.mkt__price small { font-family: "Inter", sans-serif; font-size: 0.6rem; font-weight: 600; color: var(--ink-soft); }
.mkt__tag { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.4rem; font-weight: 500; }
.mkt__pop { display: inline-block; background: var(--terra); color: var(--cream); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 999px; margin-bottom: 0.5rem; }
.mkt tbody th[scope="row"] { text-align: left; font-weight: 500; color: var(--ink); font-size: 0.95rem; }
.mkt tbody td { text-align: center; font-size: 1.15rem; }
.mkt__y { color: var(--ocean); font-weight: 800; }
.mkt__n { color: rgba(21, 65, 75, 0.22); }
/* highlight the popular (Momentum) column */
.mkt__plan--pop, .mkt__c-pop { background: rgba(166, 77, 214, 0.06); }
.mkt tfoot td { padding: 1.1rem; text-align: center; vertical-align: top; border-bottom: none; }
@media (max-width: 600px) { .mkt__tag { display: none; } }
.pricing__fine { font-size: 0.82em; opacity: 0.7; }

/* annual-savings notes (small, muted) */
.mkt__yr { display: block; font-size: 0.72rem; color: var(--ink-soft); font-weight: 500; margin-top: 0.25rem; }
.addon__yr { color: var(--ink-soft); font-weight: 500; font-size: 0.85em; }

/* ===== Ask Goodie launcher (in the hero, on the right under the slider) ===== */
/* extra top room so the peeking mascot doesn't bump the slider above it */
.askbar { margin-top: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.askbar__desc { margin: 0; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.4; text-align: center; max-width: 32ch; }
/* wrapper lets a mini Goodie peek up from behind the pill on hover */
.askbar__wrap { position: relative; display: inline-flex; }
.askbar__peek {
  position: absolute; z-index: 1; left: 12px; top: 2px; width: 84px; height: auto;
  pointer-events: none; opacity: 0; transform: translateY(24%);
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.22s ease;
}
/* hidden at rest; on hover he fades in and rises higher so more of him shows */
.askbar__wrap:hover .askbar__peek { opacity: 1; transform: translateY(-70%); }
.askbar__btn {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 1rem 0.5rem 0.85rem; cursor: pointer; color: var(--ink);
  box-shadow: var(--shadow); font: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.askbar__btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
@media (prefers-reduced-motion: reduce) { .askbar__peek { transition: none; } }
.askbar__blip {
  width: 8px; height: 8px; border-radius: 50%; background: var(--palm); flex: none;
  box-shadow: 0 0 0 0 rgba(47, 158, 95, 0.5); animation: blip 2.2s ease-out infinite;
}
@keyframes blip {
  0% { box-shadow: 0 0 0 0 rgba(47, 158, 95, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(47, 158, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 158, 95, 0); }
}
.askbar__ic { width: 1.05rem; height: 1.05rem; color: var(--terra); flex: none; }
.askbar__txt { font-size: 0.9rem; }
.askbar__txt strong { color: var(--ink); }
.askbar__go { color: var(--terra); font-weight: 700; }
@media (max-width: 560px) { .askbar__txt { font-size: 0.82rem; } }
@media (prefers-reduced-motion: reduce) { .askbar__blip { animation: none; } }

/* ===== Ask Goldie — FAQ modal ===== */
.modal__panel--faq { max-width: min(94vw, 560px); max-height: 86vh; overflow-y: auto; }
.faq__head { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.1rem; padding-right: 1.6rem; }
.faq__avatar { width: 62px; height: auto; flex: none; }
.faq__list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq__item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--sand); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  text-align: left; background: none; border: none; cursor: pointer; font: inherit;
  font-weight: 600; color: var(--ink); padding: 0.8rem 1rem;
}
.faq__q:hover { color: var(--terra); }
.faq__chev { color: var(--terra); font-size: 1.25rem; flex: none; line-height: 1; }
.faq__a { padding: 0 1rem 0.9rem; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }
.faq__cta { margin-top: 1.2rem; }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.addons__grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.addons__grid--4 { grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); align-items: stretch; }
/* one-time row: equal-height cards with buttons aligned along the bottom */
.addons__grid--4 .addon .btn { margin-top: auto; }
.addon {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.addon:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.addon__top { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.4rem 0.8rem; flex-wrap: wrap; min-height: 2rem; }
.addon__name { font-size: 1.3rem; }
.addon__price { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.6rem; color: var(--terra); white-space: nowrap; }
/* tighter type in the 4-up one-time row so name + price never overflow */
.addons__grid--4 .addon__name { font-size: 1.12rem; line-height: 1.1; }
.addons__grid--4 .addon__price { font-size: 1.3rem; }
/* one-time cards: stack name then price uniformly (no side-by-side wrapping) */
.addons__grid--4 .addon__top { flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0.15rem; min-height: 0; }
.addon__per { font-family: "Inter", sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.addon__then { margin-top: 0.35rem; font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); }
.addon__was { font-size: 0.62em; font-weight: 600; color: #d23b3b; text-decoration: line-through; margin-right: 0.25rem; }
.addon__desc { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.95rem; }
.addon__desc strong { color: var(--ink); }
/* consistent breathing room before each CTA (cards size to content — no voids) */
.addon .btn { margin-top: 1.5rem; }
.addon__fine { margin-top: 0.9rem; font-size: 0.76rem; color: var(--ink-soft); font-style: italic; }
.addon__demo { display: inline-block; margin-top: 0.8rem; font-weight: 700; font-size: 0.9rem; color: var(--terra); }
.addon__demo:hover { text-decoration: underline; }
.addon__tag {
  font-family: "Inter", sans-serif; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ocean); background: rgba(31, 154, 168, 0.12);
  padding: 0.25rem 0.55rem; border-radius: 999px; white-space: nowrap;
}
/* shared badge pairing the two no-commitment services */
.addon__nocommit {
  align-self: flex-start; margin-top: 0.7rem;
  display: inline-flex; align-items: center;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean); background: rgba(31, 154, 168, 0.12);
  padding: 0.25rem 0.6rem; border-radius: 999px;
}
.addon__nocommit::before { content: "✓ "; margin-right: 0.3rem; }

/* Care Plan — featured */
.addon--plan { border: 2px solid var(--terra); box-shadow: var(--shadow-lift); }
.addon__flag {
  position: absolute; top: -12px; left: 1.6rem;
  background: var(--terra); color: var(--cream);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 999px;
}
.addon__list { margin: 1rem 0 0.4rem; display: grid; gap: 0.55rem; }
.addon__list li { position: relative; padding-left: 1.6rem; font-size: 0.94rem; color: var(--ink-soft); }
.addon__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ocean); font-weight: 700; }
.addon__when { font-size: 0.78rem; font-style: italic; color: var(--ink-soft); white-space: nowrap; }
.addon__tiers { margin: 1rem 0 0; display: grid; gap: 0; }
.addon__tiers li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0; border-top: 1px solid var(--line);
}
.addon__tiers li:first-child { border-top: none; padding-top: 0; }
.addon__lvl { font-weight: 600; font-size: 0.95rem; }
.addon__amt { font-family: "Fraunces", serif; font-weight: 600; color: var(--terra); white-space: nowrap; }

/* ===== Reviews ===== */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.review {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.review__stars { color: var(--orange); letter-spacing: 2px; font-size: 1.05rem; }
.review__quote { margin: 0.85rem 0 1.4rem; font-size: 1.06rem; line-height: 1.55; }
.review__quote::before { content: "“"; }
.review__quote::after { content: "”"; }
.review__by { margin-top: auto; }
.review__author { display: block; font-weight: 700; }
.review__role { display: block; font-size: 0.85rem; color: var(--ink-soft); }
.review__link { display: inline-block; margin-top: 1.1rem; font-weight: 600; font-size: 0.9rem; color: var(--terra); }
.review__link:hover { text-decoration: underline; }
.reviews__cta { margin-top: 2.6rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.reviews__cta p { color: var(--ink-soft); }
/* blank placeholder review cards */
.review--empty { border-style: dashed; background: transparent; box-shadow: none; }
.review--empty:hover { transform: none; box-shadow: none; }
.review__stars--empty { color: rgba(21, 65, 75, 0.25); }
.review__placeholder { margin: 0.85rem 0 1.4rem; font-size: 1.05rem; font-style: italic; color: var(--ink-soft); opacity: 0.6; }
.review--empty .review__author { color: var(--ink-soft); opacity: 0.6; }

/* ===== Leave-a-review modal ===== */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 1.5rem; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(12, 43, 49, 0.55); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1; width: 100%; max-width: 460px;
  background: var(--cream); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  padding: 2rem 1.9rem; max-height: 90vh; overflow: auto;
}
.modal__close {
  position: absolute; top: 0.7rem; right: 0.9rem; border: none; background: none;
  font-size: 1.7rem; line-height: 1; color: var(--ink-soft); cursor: pointer;
}
.modal__close:hover { color: var(--ink); }
.modal__title { font-size: 1.6rem; }
.modal__sub { margin-top: 0.4rem; color: var(--ink-soft); font-size: 0.95rem; }
.rform { display: grid; gap: 1rem; margin-top: 1.4rem; }
.rform__field { display: grid; gap: 0.4rem; }
.rform__label { font-size: 0.8rem; font-weight: 700; }
.rform input, .rform textarea, .rform select {
  font: inherit; width: 100%; padding: 0.65rem 0.8rem;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); resize: vertical;
}
.rform input[type="file"] { padding: 0.5rem 0.6rem; font-size: 0.86rem; background: var(--sand); }
.rform input:focus, .rform textarea:focus, .rform select:focus { outline: 2px solid var(--terra); outline-offset: 1px; border-color: transparent; }
.rform__stars { display: flex; gap: 0.2rem; }
.rform__star { border: none; background: none; cursor: pointer; font-size: 1.7rem; line-height: 1; color: rgba(21, 65, 75, 0.22); padding: 0; transition: color 0.1s ease; }
.rform__star.is-on { color: var(--orange); }
.rform__note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: -0.1rem; }

/* wide panel (≈⅓ screen) for the multi-edit update form */
.modal__panel--wide { max-width: min(94vw, 680px); }
.rform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rform__editsLabel { margin-top: 0.2rem; }
.rform__edits { display: grid; gap: 0.8rem; }
.edit-row { border: 1px solid var(--line); border-radius: 12px; padding: 0.8rem; background: var(--sand); display: grid; gap: 0.55rem; }
.edit-row__head { display: flex; gap: 0.6rem; }
.edit-row__type { flex: 1; }
.edit-row__del {
  flex: none; width: 38px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  font-size: 1.2rem; line-height: 1; color: var(--ink-soft); cursor: pointer;
}
.edit-row__del:hover { color: var(--terra); border-color: var(--terra); }
.edit-row__desc { width: 100%; }
.rform__add {
  justify-self: start; background: none; border: 1px dashed var(--line); border-radius: 999px;
  padding: 0.5rem 1rem; font: inherit; font-weight: 600; font-size: 0.88rem; color: var(--terra); cursor: pointer;
}
.rform__add:hover { background: rgba(166, 77, 214, 0.08); }
.rform__total {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 0.9rem; margin-top: 0.3rem; font-weight: 600;
}
.rform__total strong { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--terra); }
@media (max-width: 520px) { .rform__row { grid-template-columns: 1fr; } }

/* ===== Studio ===== */
.studio__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.studio__art { display: flex; justify-content: center; }
.arch--sm { max-width: 320px; }
/* Santa Barbara photo (replaces the old arch art) */
.studio__photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  background: linear-gradient(180deg, #cfe7ee 0%, #8fc6d0 42%, #2f8fa0 78%, #1c6f7e 100%);
}
.studio__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.studio__photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.8rem 1.1rem 0.95rem;
  background: linear-gradient(to top, rgba(12, 43, 49, 0.85), transparent);
  color: #fff; font-weight: 600; font-size: 0.95rem;
}
/* graceful state before a real photo is dropped in */
.studio__photo.is-empty::after {
  content: "Santa Barbara, CA";
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: "Fraunces", serif; font-size: 1.6rem; color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}
.studio__text p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.05rem; }
.studio__list { margin: 1.6rem 0; display: grid; gap: 0.8rem; }
.studio__list li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.studio__list .ic { width: 22px; height: 22px; flex: none; color: var(--terra); }

/* ===== Contact ===== */
.contact {
  text-align: center;
  background:
    radial-gradient(circle at 78% 12%, rgba(47, 159, 224, 0.22), transparent 50%),
    radial-gradient(circle at 12% 95%, rgba(166, 77, 214, 0.18), transparent 45%),
    linear-gradient(135deg, #103840 0%, #155059 55%, #0c2b31 100%);
  color: var(--sand);
}
.contact__inner { max-width: 680px; margin: 0 auto; }
.contact__lead { margin: 1.2rem auto 2rem; color: rgba(250, 244, 232, 0.82); font-size: 1.12rem; }
.contact__actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact__or { color: rgba(250, 244, 232, 0.7); font-size: 0.95rem; }
.contact__or a { color: var(--gold); font-weight: 600; }
.contact__note { margin-top: 1.4rem; color: rgba(250, 244, 232, 0.55); font-size: 0.85rem; }

/* ===== Footer ===== */
.footer { background: #0f343b; color: rgba(245, 241, 230, 0.72); padding: 3.5rem 0 2rem; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between; }
.footer__brand { max-width: 420px; }
.footer__brand p { margin-top: 1rem; font-size: 0.92rem; line-height: 1.6; }
.footer__col h4 { font-family: "Inter", sans-serif; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem; }
.footer__col a, .footer__loc { display: block; margin-bottom: 0.5rem; font-size: 0.92rem; }
.footer__col a:hover { color: var(--cream); }
.footer__top { font-weight: 600; color: var(--gold); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 244, 232, 0.12); font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero__art { max-width: 380px; margin: 0 auto; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .tier--feature { transform: none; }
  .studio__grid { grid-template-columns: 1fr; }
  .studio__art { max-width: 260px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .nav__inner { height: 74px; }
  .nav__links { gap: 0.5rem; }
  .nav__links a:not(.btn):not(.nav__icon) { display: none; }
  .nav__item { display: none; }                /* hide dropdown toggles on mobile */
  .logo { flex-direction: row; gap: 0.5rem; align-items: center; }
  .logo__screen { border-width: 3px; }
  .logo__screen img { height: 38px; }
  .logo__word { height: 16px; }
  .nav__icon { width: 36px; height: 36px; }
  .nav__links .btn--sm { padding: 0.55rem; }    /* book button → icon only */
  .nav__links .btn--sm .btn__t { display: none; }
  .nav__links .btn--sm .btn__ic { margin: 0; }
  /* keep the giant headline inside the screen on phones */
  .hero__title { font-size: 1.85rem; line-height: 1.14; }
  .hero__title br { display: none; }
}

/* ===== Legal pages (Terms, Privacy) ===== */
.legalbar { border-bottom: 1px solid var(--line); background: rgba(245, 241, 230, 0.9); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 20; }
.legalbar .container { display: flex; align-items: center; justify-content: space-between; height: 92px; }
.legalbar .logo { flex-direction: row; gap: 0.7rem; }
.legalbar .logo__screen { border-width: 3px; }
.legalbar .logo__screen img { height: 44px; }
.legalbar .logo__word { height: 17px; }
.legal { max-width: 800px; margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 24px; }
.legal h1 { font-size: clamp(2rem, 5vw, 2.8rem); color: var(--ink); }
.legal__updated { color: var(--ink-soft); margin: 0.6rem 0 1.8rem; font-size: 0.92rem; }
.legal__note { background: var(--sand-2); border: 1px solid var(--line); border-radius: 14px; padding: 1.1rem 1.3rem; font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.5rem; line-height: 1.6; }
.legal h2 { font-size: 1.35rem; margin: 2.1rem 0 0.5rem; color: var(--ink); }
.legal h3 { font-size: 1.05rem; margin: 1.2rem 0 0.4rem; color: var(--ink); }
.legal p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.7rem; }
.legal ul { margin: 0.4rem 0 1rem 1.3rem; list-style: disc; }
.legal li { color: var(--ink-soft); line-height: 1.7; margin-bottom: 0.35rem; }
.legal strong { color: var(--ink); }
.legal a { color: var(--terra); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal__foot { border-top: 1px solid var(--line); padding: 1.6rem 24px; text-align: center; color: var(--ink-soft); font-size: 0.9rem; }
.legal__foot a { color: var(--terra); font-weight: 600; }
.footer__legal { display: flex; align-items: center; gap: 1.25rem; }
.footer__legal a { color: rgba(245, 241, 230, 0.7); font-weight: 600; font-size: 0.9rem; }
.footer__legal a:hover { color: var(--cream); }

/* ===== "Terms explained" modal + triggers ===== */
.addon__more, .addons__terms {
  background: none; border: none; padding: 0; font: inherit; cursor: pointer;
  color: var(--terra); font-weight: 700; font-style: normal; text-decoration: underline;
}
.addon__more { display: inline-block; margin: 0.3rem 0 0.8rem; }
.addon__more:hover, .addons__terms:hover { color: var(--terra-dark); }
.addons__terms { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.6rem; font-size: 0.92rem; }
#pricing .addons__terms { color: var(--gold); }
.terms { display: flex; flex-direction: column; }
.terms__item { padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.terms__item:last-child { border-bottom: 0; }
.terms dt { font-weight: 700; color: var(--ink); display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.5rem; }
.terms dt span { font-size: 0.76rem; font-weight: 600; color: var(--terra); }
.terms dd { margin: 0.25rem 0 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
/* when Goodie's tip is a call-to-action, the box becomes clickable (opens booking) */
.goldie__bubble--cta { cursor: pointer; }
.goldie__bubble--cta:hover { border-color: var(--terra); }

/* ===== Add-on card hover — themed colour glow + lift (engaging, not noisy) ===== */
.addon::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; z-index: 0;
  opacity: 0; transition: opacity 0.28s ease; pointer-events: none;
  background: radial-gradient(110% 85% at 85% 0%, var(--glow, rgba(166, 77, 214, 0.16)), transparent 62%);
}
.addon:hover::before { opacity: 1; }
.addon > *:not(.addon__flag) { position: relative; z-index: 1; }
.addon__flag { z-index: 2; }
/* themed tints per one-time add-on */
.addons__grid--4 .addon:nth-child(2) { --glow: rgba(47, 159, 224, 0.16); }   /* social — azure */
.addons__grid--4 .addon:nth-child(3) { --glow: rgba(196, 61, 143, 0.16); }   /* interactive — magenta */
.addons__grid--4 .addon:nth-child(4) { --glow: rgba(31, 154, 168, 0.16); }   /* domain — teal */
/* the Logo card gets a vibrant four-corner logo-colour wash on hover
   (corners glow; the centre stays light so the text stays readable) */
.addons__grid--4 .addon:nth-child(1)::before {
  background:
    radial-gradient(62% 58% at 0% 0%, rgba(47, 159, 224, 0.5), transparent 58%),
    radial-gradient(62% 58% at 100% 0%, rgba(166, 77, 214, 0.5), transparent 58%),
    radial-gradient(62% 58% at 0% 100%, rgba(31, 154, 168, 0.45), transparent 58%),
    radial-gradient(62% 58% at 100% 100%, rgba(241, 149, 127, 0.5), transparent 58%);
}

/* ===== Goodie signifier in the add-ons header (he's a click away) ===== */
.addons__ask {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem;
  background: var(--cream); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.32rem 0.9rem 0.32rem 0.4rem; cursor: pointer;
  color: var(--ink); font: inherit; font-size: 0.85rem; box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.addons__ask:hover { transform: translateY(-1px); box-shadow: var(--shadow-lift); }
.addons__ask strong { color: var(--terra); }
.addons__ask-pic {
  width: 30px; height: 30px; border-radius: 50%; flex: none; background: var(--sand);
  object-fit: cover; object-position: 50% 26%;
}
/* FAQ contextual note + relevant-item highlight */
.faq__context { margin: 0 0 0.8rem; color: var(--terra); font-weight: 600; font-size: 0.92rem; }
.faq__context:empty { display: none; }
.faq__item--rel { border-color: var(--terra); box-shadow: 0 0 0 1px rgba(166, 77, 214, 0.22); }
.faq__item--rel .faq__q { color: var(--terra); }

/* ===== Approach flow (Design → Build → Host → Grow) ===== */
.flow { list-style: none; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.6rem; }
.flow::before {
  content: ""; position: absolute; top: 33px; left: 12%; right: 12%; height: 3px; border-radius: 2px; z-index: 0;
  background: linear-gradient(90deg, var(--gold), var(--terra), var(--orange)); opacity: 0.55;
}
.flow__step { position: relative; text-align: center; }
.flow__ic {
  position: relative; z-index: 1; width: 66px; height: 66px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; color: var(--terra);
  background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.flow__ic svg { width: 28px; height: 28px; }
.flow__step:hover .flow__ic { transform: translateY(-4px); box-shadow: var(--shadow-lift); color: var(--terra-dark); }
.flow__step h3 { font-size: 1.2rem; }
.flow__step p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.35rem; }
.flow__proof { text-align: center; margin-top: 2.4rem; color: var(--ink-soft); font-size: 0.98rem; }
.flow__proof a { color: var(--terra); font-weight: 700; }
.flow__proof a:hover { text-decoration: underline; }
.flow__proof span { opacity: 0.85; }
@media (max-width: 720px) {
  .flow { grid-template-columns: 1fr; gap: 1.4rem; max-width: 420px; margin-inline: auto; }
  .flow::before { display: none; }
  .flow__step {
    display: grid; grid-template-columns: 66px 1fr; column-gap: 1rem; row-gap: 0.1rem;
    align-items: center; text-align: left;
    grid-template-areas: "ic name" "ic desc";
  }
  .flow__ic { grid-area: ic; margin: 0; align-self: start; }
  .flow__step h3 { grid-area: name; font-size: 1.1rem; align-self: end; }
  .flow__step p { grid-area: desc; align-self: start; }
}

/* ===== Quiet Goodie in the Studio — speaks up on hover/focus, opens FAQ ===== */
.studio__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.goodiehi { position: relative; display: inline-flex; align-items: flex-end; background: none; border: none; cursor: pointer; padding: 0; }
.goodiehi__img { width: 84px; height: auto; display: block; transition: transform 0.2s ease; }
.goodiehi:hover .goodiehi__img, .goodiehi:focus-visible .goodiehi__img { transform: translateY(-3px); }
/* floating notification badge to his upper-right — off his body, ringed so it reads as intentional */
.goodiehi__blip {
  position: absolute; top: -4px; right: -6px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--palm); border: 2.5px solid var(--sand);
  box-shadow: 0 0 0 0 rgba(47, 158, 95, 0.5); animation: blip 2.2s ease-out infinite;
}
/* bubble pops to the RIGHT (into open space) so it never covers the list text */
.goodiehi__bubble {
  position: absolute; left: calc(100% + 12px); top: 16%; bottom: auto; transform: translateX(8px);
  background: var(--cream); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 0.5rem 0.9rem; white-space: nowrap;
  font-family: "Fredoka", "Inter", sans-serif; font-weight: 500; font-size: 0.9rem; color: var(--ink);
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.goodiehi__bubble::after {
  content: ""; position: absolute; right: 100%; top: 50%; transform: translateY(-50%);
  border: 7px solid transparent; border-right-color: var(--cream);
}
.goodiehi:hover .goodiehi__bubble, .goodiehi:focus-visible .goodiehi__bubble { opacity: 1; transform: translateX(0); }
@media (max-width: 480px) {
  .goodiehi__bubble { left: auto; right: calc(100% + 12px); transform: translateX(-8px); }
  .goodiehi__bubble::after { right: auto; left: 100%; border-right-color: transparent; border-left-color: var(--cream); }
  .goodiehi:hover .goodiehi__bubble, .goodiehi:focus-visible .goodiehi__bubble { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) { .goodiehi__blip { animation: none; } }

/* slight divider between Reviews and the All-in-one (approach) section — both light */
#approach { padding-top: clamp(2rem, 4vw, 3.2rem); }
#approach > .container { border-top: 1px solid var(--line); padding-top: clamp(2.6rem, 4.5vw, 4rem); }
/* Studio divider — pricing used to separate these; keep a clean line now that it's its own page */
#studio { padding-top: clamp(2rem, 4vw, 3.2rem); }
#studio > .container { border-top: 1px solid var(--line); padding-top: clamp(2.6rem, 4.5vw, 4rem); }

/* ===== Collapsible "what's included" on ongoing-care cards ===== */
.addon__details { margin: 0.5rem 0 0; }
.addon__details > summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--terra); font-weight: 700; font-size: 0.9rem; padding: 0.2rem 0;
}
.addon__details > summary::-webkit-details-marker { display: none; }
.addon__details > summary::after { content: "\25BE"; font-size: 0.8em; transition: transform 0.15s ease; }
.addon__details[open] > summary::after { transform: rotate(180deg); }
.addon__details > summary:hover { color: var(--terra-dark); }
.addon__details .addon__list, .addon__details .addon__tiers { margin-top: 0.7rem; }
.addon__details .addon__fine { margin-top: 0.7rem; }
/* greyed, non-clickable tier example when a site isn't live yet */
.tier__example--soon { color: var(--ink-soft); opacity: 0.75; cursor: default; }
.tier__example--soon b { color: inherit; }

/* ===== Required-hosting callout in the Website packages section ===== */
.pricing__hosting {
  max-width: 660px; margin: 2.2rem auto 0; text-align: center;
  background: rgba(245, 241, 230, 0.06); border: 1px solid rgba(245, 241, 230, 0.18);
  border-radius: 14px; padding: 1rem 1.4rem;
}
.pricing__hosting p { margin: 0; color: rgba(245, 241, 230, 0.92); font-size: 1rem; line-height: 1.5; }
.pricing__hosting strong { color: var(--cream); }
.pricing__hosting-sub { margin-top: 0.4rem !important; color: rgba(245, 241, 230, 0.7) !important; font-size: 0.9rem !important; }
.pricing__hosting a { color: var(--gold); font-weight: 700; }
.pricing__hosting a:hover { text-decoration: underline; }

/* ===== One-time add-ons: one professional panel, items as divided rows ===== */
.onetime { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.onetime__list { display: flex; flex-direction: column; }
.onetime__row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 1.4rem; padding: 1.15rem 1.6rem; border-bottom: 1px solid var(--line); }
.onetime__row:last-child { border-bottom: 0; }
.onetime__name { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.18rem; color: var(--ink); display: block; }
.onetime__desc { margin: 0.25rem 0 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.onetime__desc a, .onetime__desc .addon__more { color: var(--terra); font-weight: 600; }
.onetime__price { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.4rem; color: var(--terra); white-space: nowrap; }
.onetime__cta { display: inline-flex; align-items: center; gap: 0.35rem; white-space: nowrap; border: 1.5px solid var(--ink); color: var(--ink); border-radius: 999px; padding: 0.5rem 1.15rem; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: background 0.15s ease, color 0.15s ease; }
.onetime__cta:hover { background: var(--ink); color: var(--cream); }
@media (max-width: 640px) {
  .onetime__row { grid-template-columns: 1fr auto; gap: 0.4rem 1rem; }
  .onetime__price { grid-column: 2; grid-row: 1; font-size: 1.2rem; }
  .onetime__cta { grid-column: 2; grid-row: 2; justify-self: end; }
  .onetime__info { grid-column: 1; grid-row: 1 / span 2; }
}

/* Logo design offering — quiet azure accent so it reads a touch different from the others */
.onetime__row--logo { box-shadow: inset 3px 0 0 var(--gold); }
.onetime__list .onetime__row--logo:hover,
.onetime__list .onetime__row--logo:focus-within { background-color: rgba(47, 159, 224, 0.09); }

/* Toast (e.g. "email copied") */
.toast { position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 14px); background: var(--ink); color: var(--cream); padding: 0.7rem 1.15rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-lift); z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; }
.toast.is-show { opacity: 1; transform: translate(-50%, 0); }

/* Green "live" ping — used on the Live sites menu item */
.ping { display: inline-block; width: 8px; height: 8px; margin-right: 7px; border-radius: 50%; background: #2fbf71; position: relative; vertical-align: middle; }
.ping::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #2fbf71; animation: pingPulse 1.8s ease-out infinite; }
@keyframes pingPulse { 0% { transform: scale(1); opacity: 0.65; } 100% { transform: scale(2.6); opacity: 0; } }

/* One-time rows — gentle hover feedback (tint + nudging arrow) */
.onetime__row { transition: background-color 0.2s ease; }
.onetime__row:hover { background-color: rgba(198, 111, 76, 0.07); }
.onetime__row:hover .onetime__cta span { animation: ctaNudge 0.7s ease-in-out infinite; }
@keyframes ctaNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }
@media (prefers-reduced-motion: reduce) { .ping::before, .onetime__row:hover .onetime__cta span { animation: none; } }

/* Footer consult CTA + brand tagline spacing */
.footer__cta { display: inline-block; margin-top: 0.85rem; padding: 0.5rem 1.05rem; border: 1.5px solid rgba(245, 241, 230, 0.3); border-radius: 999px; color: var(--cream); font-weight: 600; font-size: 0.86rem; transition: background 0.2s ease, border-color 0.2s ease; }
.footer__cta:hover { background: var(--terra); border-color: var(--terra); color: var(--cream); }
.footer__brand .footer__loc { margin-top: 0.85rem; opacity: 0.85; }

.tier__fine { margin-top: 0.5rem; font-size: 0.72rem; line-height: 1.45; color: var(--ink-soft); font-style: italic; }

.mkt__sub { display: block; margin-top: 0.2rem; font-size: 0.66rem; font-weight: 500; line-height: 1.3; color: var(--ink-soft); }

/* Flagship "Everything in Signature, plus…" — emphasized as a header, not a feature */
.tier__list li.tier__inherit { padding-left: 0; font-weight: 700; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 0.6rem; margin-bottom: 0.15rem; }
.tier__list li.tier__inherit::before { content: none; }

/* Cube demo link — hover preview of the interactive cube */
.addon__demo { position: relative; display: inline-block; }
.cubepop {
  position: absolute; left: 0; bottom: calc(100% + 10px); width: 240px; padding: 6px;
  background: var(--cream); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lift);
  z-index: 40; opacity: 0; transform: translateY(6px) scale(0.98); transform-origin: bottom left;
  pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
}
.addon__demo:hover .cubepop, .addon__demo:focus-visible .cubepop { opacity: 1; transform: translateY(0) scale(1); }
.cubepop img { display: block; width: 100%; border-radius: 8px; }
.cubepop__cap { display: block; text-align: center; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terra); padding: 5px 0 2px; }

.rform__hint { display: block; font-weight: 400; font-size: 0.72rem; color: var(--ink-soft); margin-top: 0.1rem; }
