/* yoursiteisdone.com — base stylesheet
   Atlas Unchained product. Vanilla CSS, no framework.
   Palette: soft whites, ink black, a confident violet accent.
*/

:root {
  --bg: #fdf9f1;              /* warm cream paper */
  --bg-soft: #f8f1e3;         /* slightly deeper cream for sections */
  --bg-tint: #fff5ee;         /* warm tinted bg for accents */
  --paper: #fffaf2;           /* photo / card background */
  --ink: #1a120a;             /* warm ink, not pure black */
  --ink-2: #2c2014;           /* secondary ink */
  --muted: #7a6a55;           /* warm muted */
  --muted-2: #a89880;         /* warmer muted variant */
  --line: #e8dcc6;            /* warm line */
  --line-2: #d6c8ad;          /* warmer line */
  --accent: #ea5234;          /* warm coral — primary CTA color */
  --accent-2: #ff7457;        /* hover/lighter variant */
  --accent-ink: #a82d18;      /* deep coral for ink-on-accent */
  --accent-tint: #fde9e2;     /* very pale coral for hover/tint backgrounds */
  --good: #2f7d32;            /* warmer green */
  --warn: #b96a07;
  --danger: #c2261a;
  --gold: #c89645;            /* hand-painted-sign gold */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(26, 18, 10, 0.06);
  --shadow: 0 4px 24px -8px rgba(26, 18, 10, 0.08), 0 2px 6px rgba(26, 18, 10, 0.04);
  --shadow-lg: 0 24px 60px -22px rgba(168, 45, 24, 0.22), 0 8px 24px -8px rgba(26, 18, 10, 0.10);
  --maxw: 1180px;
  --gutter: 24px;
  --t-fast: 120ms ease;
  --t: 180ms ease;
  /* Typography */
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --hand: 'Caveat', cursive;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  /* subtle paper texture — two layered radial dot patterns, very soft */
  background-image:
    radial-gradient(rgba(168,45,24,0.025) 1px, transparent 1px),
    radial-gradient(rgba(200,150,69,0.030) 1px, transparent 1px);
  background-size: 28px 28px, 36px 36px;
  background-position: 0 0, 14px 14px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent-ink); }

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

h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); letter-spacing: -0.018em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 600; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--accent); }
p  { margin: 0 0 1em; color: var(--ink-2); }

/* Handwritten accent — for "from the kitchen" style intros */
.script {
  font-family: var(--hand);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.4em;
  line-height: 1;
  display: inline-block;
}

/* Hand-drawn-feeling ornament between sections */
.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  padding: 28px 0;
  user-select: none;
}
.ornament::before, .ornament::after {
  content: ""; display: inline-block;
  width: 64px; height: 1px;
  background: var(--line-2);
  vertical-align: middle;
  margin: 0 14px;
}

/* Photo with cream frame — looks like a polaroid */
.photoframe {
  background: var(--paper);
  padding: 12px 12px 28px;
  box-shadow: 0 16px 40px -20px rgba(26,18,10,0.30), 0 2px 6px rgba(26,18,10,0.06);
  border: 1px solid var(--line);
  display: inline-block;
}
.photoframe img, .photoframe .photoframe__img {
  display: block; width: 100%; height: auto;
  background-size: cover; background-position: center;
}
.photoframe__caption {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: 1rem;
  text-align: center; margin-top: 8px;
  color: var(--muted);
}
.photoframe--rotate-l { transform: rotate(-1.4deg); }
.photoframe--rotate-r { transform: rotate(1.6deg); }

.muted   { color: var(--muted); }
.center  { text-align: center; }
.small   { font-size: 0.92rem; }
.tag     {
  display: inline-block; padding: 4px 12px;
  border-radius: 999px; font-size: 0.82rem; font-weight: 600;
  background: var(--accent-tint); color: var(--accent-ink);
  letter-spacing: 0.04em;
  font-family: var(--display); font-style: italic; font-weight: 500;
}

/* layout primitives */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 80px 0; }
.section--tight { padding: 56px 0; }
.section--bg { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%); }
.section--paper { background: var(--paper); }

/* nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,249,241,0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand__name {
  font-family: var(--display); font-weight: 600;
  font-size: 1.2rem; letter-spacing: -0.018em;
  color: var(--ink);
}
.brand__mark {
  width: 32px; height: 32px;
  display: block;
}
.brand__name {
  font-family: 'Inter', sans-serif;
  font-weight: 800; letter-spacing: -0.015em;
}
.nav__links { display: flex; gap: 26px; align-items: center; }
.nav__links a {
  color: var(--ink-2); font-weight: 500; font-size: 0.94rem;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a[aria-current="page"] {
  color: var(--ink); font-weight: 600;
}
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 1px;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; line-height: 1;
  border: 1px solid transparent; cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
              border-color var(--t-fast), box-shadow var(--t-fast),
              color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(234, 82, 52, 0.20);
}
.btn--primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 14px -4px rgba(26,18,10,0.30);
}
.btn--primary:hover { background: #000; color: #fff; box-shadow: 0 8px 22px -6px rgba(26,18,10,0.40); }
.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(234,82,52,0.55);
}
.btn--accent:hover { background: var(--accent-ink); color: #fff; box-shadow: 0 12px 28px -8px rgba(168,45,24,0.55); }
.btn--ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--paper); }
.btn--link {
  background: transparent; color: var(--accent);
  padding: 8px 0; border-radius: 0;
  border-bottom: 1px solid var(--accent);
  border-left: 0; border-right: 0; border-top: 0;
}
.btn--link:hover { color: var(--accent-ink); transform: none; border-bottom-color: var(--accent-ink); }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

/* hero */
.hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  font-size: 0.86rem; color: var(--muted); font-weight: 500;
  font-family: var(--display); font-style: italic;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good); box-shadow: 0 0 0 4px rgba(22,163,74,0.15);
}
.hero h1 .accent { color: var(--accent); }
.hero__sub {
  font-size: 1.15rem; color: var(--muted); max-width: 540px;
  margin-top: 16px;
}
.hero__cta { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 20px; color: var(--muted-2); font-size: 0.88rem;
}
.hero__meta strong { color: var(--ink-2); }

/* Sample carousel — rotates through real sample previews */
.hero__visual {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 32px 80px -24px rgba(13,12,28,0.20),
              0 12px 24px -8px rgba(13,12,28,0.06);
  border: 1px solid var(--line);
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-soft); border-radius: 10px 10px 0 0;
  padding: 10px 14px; margin: -14px -14px 12px -14px;
  border-bottom: 1px solid var(--line);
}
.browser-bar__dots { display: flex; gap: 6px; }
.browser-bar__dots span {
  width: 11px; height: 11px; border-radius: 50%; background: var(--line-2);
}
.browser-bar__dots span:nth-child(1) { background: #ff6b6b; }
.browser-bar__dots span:nth-child(2) { background: #ffd93d; }
.browser-bar__dots span:nth-child(3) { background: #6bcf7f; }
.browser-bar__url {
  flex: 1; background: #fff; border: 1px solid var(--line);
  padding: 5px 12px; border-radius: 6px;
  font-size: 0.78rem; color: var(--muted);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; gap: 6px;
}
.browser-bar__url::before {
  content: "🔒"; font-size: 0.7rem; opacity: 0.5;
}
.browser-bar__live {
  font-size: 0.7rem; padding: 3px 8px; border-radius: 999px;
  background: var(--accent-tint); color: var(--accent-ink);
  font-weight: 700; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 5px;
  text-transform: uppercase;
}
.browser-bar__live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--good); box-shadow: 0 0 0 3px rgba(22,163,74,0.18);
}

.hero-carousel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4 / 3;
  background: #1a1a22;
}
.hero-carousel__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 700ms ease;
}
.hero-carousel__slide.is-active { opacity: 1; }
.hero-carousel__caption {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(0,0,0,0.6); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.84rem; font-weight: 600;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-carousel__caption-cat {
  font-size: 0.72rem; opacity: 0.8; padding-left: 8px; border-left: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-carousel__dots {
  display: flex; gap: 6px; justify-content: center;
  padding: 12px 0 4px;
}
.hero-carousel__dot {
  appearance: none; -webkit-appearance: none;
  width: 24px; height: 4px; border-radius: 999px;
  background: var(--line); border: none; cursor: pointer; padding: 0;
  transition: background 200ms ease, width 200ms ease;
}
.hero-carousel__dot.is-active { background: var(--accent); width: 36px; }

/* Trust band under hero */
.trust-band {
  background: var(--bg-soft); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-band__row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; align-items: center;
}
.trust-stat { text-align: center; }
.trust-stat__num {
  font-family: var(--display);
  font-size: 2.2rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--accent); line-height: 1; font-style: italic;
}
.trust-stat__lbl {
  margin-top: 6px; font-size: 0.78rem; color: var(--muted);
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
}

/* feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.feature__num {
  display: inline-flex; width: 32px; height: 32px;
  align-items: center; justify-content: center;
  border-radius: 8px; background: var(--accent-tint); color: var(--accent-ink);
  font-weight: 700; font-size: 0.96rem;
  margin-bottom: 14px;
}
.feature h3 { font-size: 1.1rem; }
.feature p  { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* compare table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
.compare {
  width: 100%; border-collapse: collapse; font-size: 0.96rem;
}
.compare th, .compare td {
  text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare th { background: var(--bg-soft); font-weight: 600; color: var(--ink-2); font-size: 0.86rem; letter-spacing: 0.04em; text-transform: uppercase; }
.compare tr:last-child td { border-bottom: none; }
.compare td.tier-yes { color: var(--good); font-weight: 600; }
.compare td.tier-no { color: var(--muted-2); }

/* pricing cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.tier:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
}
.tier--featured {
  border-color: var(--accent);
  box-shadow: 0 24px 60px -28px rgba(168,45,24,0.30);
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg-tint) 100%);
  position: relative;
}
.tier--featured::before {
  content: "Most popular";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  padding: 5px 14px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
}
.tier__name { font-size: 0.88rem; font-weight: 600; color: var(--accent-ink); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.tier__price { display: flex; align-items: baseline; gap: 6px; margin: 8px 0 4px; }
.tier__price .num { font-family: var(--display); font-size: 3rem; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.tier__price .per { color: var(--muted); font-size: 0.96rem; }
.tier__sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 22px; }
.tier__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.tier__list li {
  padding: 8px 0 8px 26px; position: relative;
  font-size: 0.96rem; color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.tier__list li:last-child { border-bottom: none; }
.tier__list li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' stroke='%23ea5234' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* template gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  color: var(--ink);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-2);
  color: var(--ink);
}
.card__thumb {
  height: 220px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #1a1a22;
}
.card__thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.card__thumb-label {
  position: relative; z-index: 1;
  font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  padding: 14px 18px;
}
.card__body { padding: 18px 20px; }
.card__cat { font-size: 0.78rem; color: var(--accent-ink); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.card__title { font-weight: 700; font-size: 1.05rem; }
.card__desc { color: var(--muted); margin: 4px 0 0; font-size: 0.92rem; }

/* form */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-row { margin-bottom: 18px; }
.form-row--two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
label {
  display: block;
  font-weight: 600; font-size: 0.88rem; color: var(--ink-2);
  margin-bottom: 6px;
}
label .req { color: var(--accent); }
input[type="text"], input[type="email"], input[type="tel"], input[type="url"],
input[type="number"], textarea, select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: #fff;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(91,61,245,0.12);
}
textarea { min-height: 120px; resize: vertical; }
input[type="color"] {
  width: 64px; height: 44px; padding: 4px;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: #fff; cursor: pointer;
}
input[type="file"] { font-size: 0.94rem; }
.help { color: var(--muted-2); font-size: 0.85rem; margin-top: 6px; }

.tier-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tier-pick label {
  display: block;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  font-weight: 500; color: var(--ink-2);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.tier-pick input { display: none; }
.tier-pick input:checked + .tier-pick__inner {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.tier-pick__inner {
  display: block;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 16px;
  margin: -16px;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.tier-pick__inner strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: 4px; }
.tier-pick__inner span { color: var(--muted); font-size: 0.9rem; }

/* form sections — for the sectioned intake */
.form-section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  margin-top: 28px;
}
.form-section:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.form-section__head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 18px;
}
.form-section__num {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--accent); text-transform: uppercase;
  background: var(--accent-tint); padding: 4px 10px; border-radius: 999px;
}
.form-section__head h2 {
  font-size: 1.25rem; margin: 0;
  letter-spacing: -0.01em;
}
.form-section__head p {
  margin: 0; color: var(--muted); font-size: 0.94rem; flex: 1 1 100%;
}

/* chip selectors — for industry / style / tone / pages */
.chip-set {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.chip-set input[type="radio"],
.chip-set input[type="checkbox"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.chip-set label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-2);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
  cursor: pointer; user-select: none;
  transition: border-color var(--t-fast), background var(--t-fast),
              color var(--t-fast), box-shadow var(--t-fast);
  margin-bottom: 0;
}
.chip-set label:hover { border-color: var(--accent); color: var(--accent-ink); }
.chip-set input:checked + label,
.chip-set label:has(input:checked) {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 12px -6px rgba(91,61,245,0.45);
}
.chip-set label[data-checked="true"] {
  background: var(--accent); border-color: var(--accent); color: #fff;
  box-shadow: 0 4px 12px -6px rgba(91,61,245,0.45);
}

/* sample-picker grid — used in intake */
.sample-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.sample-picker__item {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  background: #fff;
  transition: border-color var(--t-fast), box-shadow var(--t-fast),
              transform var(--t-fast);
}
.sample-picker__item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px -12px rgba(91,61,245,0.25);
  transform: translateY(-2px);
}
.sample-picker__item input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.sample-picker__item .thumb {
  height: 100px;
  background-size: cover; background-position: center;
  background-color: #1a1a22;
}
.sample-picker__item .body {
  padding: 10px 12px;
}
.sample-picker__item .body .name {
  font-weight: 600; font-size: 0.92rem; color: var(--ink); line-height: 1.2;
}
.sample-picker__item .body .cat {
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--muted);
  text-transform: uppercase; margin-top: 2px;
}
.sample-picker__item:has(input:checked) {
  border-color: var(--accent); border-width: 2px;
  box-shadow: 0 8px 24px -10px rgba(91,61,245,0.45);
}
.sample-picker__item:has(input:checked) .body { background: var(--accent-tint); }
.sample-picker__item:has(input:checked) .body .cat { color: var(--accent-ink); }
.sample-picker__item.sample-picker__item--none .thumb {
  background:
    repeating-linear-gradient(45deg, var(--accent-tint), var(--accent-tint) 12px,
      #fff 12px, #fff 24px);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-ink); font-weight: 700;
  text-align: center; padding: 16px;
}

/* tiny URL inputs in a stack */
.url-stack input { margin-bottom: 8px; }
.url-stack input:last-child { margin-bottom: 0; }

/* order summary */
.summary {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px;
}
.summary__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.summary__row:last-of-type { border-bottom: none; }
.summary__row span:first-child { color: var(--muted); }
.summary__row span:last-child { font-weight: 600; color: var(--ink); }
.summary__total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 16px; margin-top: 4px;
  border-top: 1px solid var(--ink); font-weight: 700;
}
.summary__total .num { font-size: 1.6rem; }

/* alerts */
.alert {
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 0.96rem; margin-bottom: 18px;
}
.alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--info { background: var(--accent-tint); color: var(--accent-ink); border: 1px solid #fbc9b8; }
.alert--warn { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.alert--danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* admin table */
.admin-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  font-size: 0.94rem;
}
.admin-table th, .admin-table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table th {
  background: var(--bg-soft); font-weight: 600;
  color: var(--ink-2); font-size: 0.82rem;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.admin-table tr:last-child td { border-bottom: none; }
.status-pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
}
.status-new      { background: #fffbeb; color: #92400e; }
.status-paid     { background: #ecfdf5; color: #065f46; }
.status-building { background: var(--accent-tint); color: var(--accent-ink); }
.status-live     { background: #e0f2fe; color: #075985; }

/* cta band */
.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, #3d2918 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.cta-band::after {
  content: ""; position: absolute; right: -40px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,82,52,0.45), transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin: 0 0 8px; font-family: var(--display); }
.cta-band p { color: rgba(255,255,255,0.85); margin: 0; max-width: 460px; }
.cta-band .btn--accent { background: var(--accent); color: #fff; }
.cta-band .btn--accent:hover { background: var(--accent-2); color: #fff; }

/* ======= Marketing-page sections ======= */

/* Savings calculator */
.savings {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--line);
}
.savings__row {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px;
  align-items: center;
}
.savings__copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 8px 0 12px; }
.savings__copy p { color: var(--muted); margin: 0 0 16px; }
.savings__slider {
  margin-top: 20px; padding: 6px 0;
}
.savings__slider input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--pct, 50%), var(--line) var(--pct, 50%), var(--line) 100%);
  outline: none;
}
.savings__slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 4px 12px -2px rgba(234,82,52,0.55);
  cursor: pointer;
}
.savings__slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff; cursor: pointer;
  box-shadow: 0 4px 12px -2px rgba(234,82,52,0.55);
}
.savings__slider-labels {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted-2); margin-top: 8px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.savings__panel {
  background: var(--ink); color: #fff;
  padding: 36px; border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.savings__panel::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(234,82,52,0.40), transparent 70%);
}
.savings__panel-row {
  display: flex; justify-content: space-between; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  position: relative; z-index: 1;
}
.savings__panel-row .lbl { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.savings__panel-row .val { color: #fff; font-weight: 600; font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.96rem; }
.savings__panel-row.is-strike .val { text-decoration: line-through; color: rgba(255,255,255,0.5); }
.savings__panel-row.is-us .val { color: var(--accent-2); }
.savings__total {
  margin-top: 14px; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 1px solid rgba(255,255,255,0.20);
  position: relative; z-index: 1;
}
.savings__total .lbl {
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.savings__total .val {
  font-size: 2.6rem; font-weight: 800; color: var(--accent-2);
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

/* Tailoring demo */
.tailor {
  background: var(--bg-soft); border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 32px;
}
.tailor__head { display: flex; flex-wrap: wrap; gap: 18px; align-items: end; justify-content: space-between; margin-bottom: 22px; }
.tailor__pickers {
  display: flex; flex-wrap: wrap; gap: 18px;
  border-bottom: 1px solid var(--line); padding-bottom: 18px; margin-bottom: 22px;
}
.tailor__group { flex: 1; min-width: 220px; }
.tailor__group-label {
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-ink); font-weight: 700; margin-bottom: 8px;
}
.tailor__chips { display: flex; gap: 6px; flex-wrap: wrap; }
.tailor__chip {
  appearance: none; -webkit-appearance: none;
  background: #fff; color: var(--ink-2);
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 6px 12px; cursor: pointer;
  font-family: inherit; font-size: 0.84rem; font-weight: 500;
  transition: all 140ms ease;
}
.tailor__chip:hover { border-color: var(--accent); color: var(--accent); }
.tailor__chip.is-on {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.tailor__result {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px; min-height: 220px;
  transition: opacity 220ms ease;
  display: grid; grid-template-columns: 1fr 220px; gap: 28px; align-items: center;
}
.tailor__result h3 {
  font-size: 1.4rem; margin: 0 0 8px;
}
.tailor__result p { color: var(--muted); margin: 0 0 14px; }
.tailor__swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tailor__swatch {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-size: 0.88rem; color: var(--ink-2); font-weight: 500;
}
.tailor__swatch-dot { width: 14px; height: 14px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08); }
.tailor__preview {
  width: 100%; height: 220px; border-radius: var(--radius);
  background-size: cover; background-position: center;
}

/* Process timeline */
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.timeline::before {
  content: ""; position: absolute;
  top: 30px; left: 5%; right: 5%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--accent) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.timeline__step {
  position: relative; z-index: 1;
  padding: 0 18px;
}
.timeline__num {
  width: 60px; height: 60px; border-radius: 50%;
  background: #fff; border: 2px solid var(--accent); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px -4px rgba(234,82,52,0.40);
}
.timeline__step h3 { font-size: 1.1rem; margin: 0 0 6px; }
.timeline__step p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.timeline__time {
  display: inline-block; margin-top: 8px;
  font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-ink); font-weight: 700;
  padding: 3px 10px; border-radius: 999px; background: var(--accent-tint);
}

/* Compare table — vs builders, vs agency */
.compare-table {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.compare-table__cell {
  padding: 16px 20px; border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  display: flex; align-items: center;
}
.compare-table__cell:nth-child(4n) { border-right: none; }
.compare-table__cell.is-head {
  background: var(--bg-soft); font-weight: 700; font-size: 0.84rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink);
  flex-direction: column; align-items: flex-start; gap: 4px;
}
.compare-table__cell.is-head small {
  font-weight: 500; letter-spacing: 0; text-transform: none;
  color: var(--muted); font-size: 0.78rem;
}
.compare-table__cell.is-us {
  background: linear-gradient(180deg, var(--accent-tint) 0%, #fff 100%);
}
.compare-table__cell.is-us.is-head {
  background: var(--accent); color: #fff;
}
.compare-table__cell.is-us.is-head small { color: rgba(255,255,255,0.85); }
.compare-table__cell.is-row-head {
  background: var(--bg-soft); font-weight: 600; color: var(--ink);
}
.compare-table__cell .yes { color: var(--good); font-weight: 700; }
.compare-table__cell .no  { color: var(--muted-2); }
.compare-table__cell .meh { color: var(--warn); }

/* Testimonial cards with avatars */
.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.tcard__quote {
  font-size: 1.04rem; line-height: 1.55; color: var(--ink);
  font-style: italic; margin: 0;
  flex: 1;
}
.tcard__author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background-size: cover; background-position: center;
  background-color: var(--accent-tint);
  flex-shrink: 0;
}
.tcard__name { font-weight: 700; color: var(--ink); font-size: 0.94rem; }
.tcard__meta { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }
.tcard__stars { color: var(--accent); letter-spacing: 2px; font-weight: 800; font-size: 0.88rem; }

/* footer */
.footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 64px 0 24px;
  margin-top: 96px;
  position: relative;
}
.footer::before {
  content: "✻";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--bg-soft); color: var(--gold);
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  font-size: 0.9rem;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brandcol { padding-right: 24px; }
.footer__logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--ink);
  font-family: var(--display); font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.012em;
  margin-bottom: 14px;
}
.footer__logo img { display: block; }
.footer__pitch {
  color: var(--muted); font-size: 0.94rem; line-height: 1.6;
  margin: 0 0 16px; max-width: 320px;
}
.footer__contact a {
  font-family: var(--display); font-style: italic;
  color: var(--ink-2); font-size: 0.96rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.footer__contact a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer__col h4 {
  font-family: var(--body);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 14px;
}
.footer__col a {
  display: block; padding: 4px 0;
  color: var(--ink-2); font-size: 0.94rem;
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer__col a:hover { color: var(--accent); }
.footer__bar {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--line); padding-top: 22px;
  flex-wrap: wrap; gap: 16px;
}
.footer__small { color: var(--muted-2); font-size: 0.84rem; }
.footer__small a {
  color: var(--ink-2); font-weight: 600; text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer__small a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.footer__legal { display: flex; gap: 8px; align-items: center; color: var(--muted-2); font-size: 0.84rem; }
.footer__legal a { color: var(--muted); text-decoration: none; }
.footer__legal a:hover { color: var(--ink); }
@media (max-width: 920px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bar { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* responsive */
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .form-row--two { grid-template-columns: 1fr; }
  .tier-pick { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 28px; }
  .section { padding: 56px 0; }
  .form-card { padding: 24px; }
  .trust-band__row { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .savings__row { grid-template-columns: 1fr; gap: 24px; }
  .timeline { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav__links { display: none; }
  .nav__links--always { display: flex; }
  .nav__links--always a { font-size: 0.88rem; }
}
