/* ============================================================
   Coulee Web Co.
   Palette: warm paper, bluff green, river rust, limestone sand.
   No external dependencies — system fonts, inline SVG only.
   ============================================================ */

:root {
  --paper:      #FAF7F0;
  --paper-2:    #F3EEE3;
  --sand:       #E9E1D2;
  --sand-line:  #DAD0BC;

  --ink:        #171E1C;
  --ink-2:      #37433F;
  --muted:      #5F6D67;

  --bluff:      #1E3A34;
  --bluff-2:    #162925;
  --bluff-soft: #2F534A;

  --rust:       #B0512A;
  --rust-2:     #93411F;
  --rust-tint:  #F6E7DF;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, ui-serif, serif;
  --sans:  ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1120px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(23,30,28,.06), 0 2px 8px rgba(23,30,28,.05);
  --shadow-md: 0 2px 4px rgba(23,30,28,.05), 0 12px 32px rgba(23,30,28,.09);
  --shadow-lg: 0 4px 8px rgba(23,30,28,.06), 0 24px 60px rgba(23,30,28,.14);

  color-scheme: light;
}

/* ── reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

::selection { background: var(--rust); color: #fff; }

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

.skip {
  position: absolute; left: -9999px;
  background: var(--bluff); color: var(--paper);
  padding: .75rem 1.25rem; z-index: 999; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; top: 0; }

/* ── layout ────────────────────────────────────────────────── */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }
.wrap-narrow { max-width: 740px; }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

.section-sand { background: var(--paper-2); border-block: 1px solid var(--sand-line); }

.section-dark { background: var(--bluff); color: #D6E0DC; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #FCFBF7; }

.kicker {
  font-family: var(--sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}
.kicker-light { color: #C98A63; }

.section-title { font-size: clamp(1.85rem, 4.1vw, 2.9rem); max-width: 20ch; }
.section-sub {
  margin-top: 1.25rem;
  max-width: 58ch;
  font-size: 1.125rem;
  color: var(--muted);
}
.section-dark .section-sub { color: #A9BAB4; }

.dim { color: var(--muted); font-size: .95rem; }

/* ── buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5ch;
  padding: .8rem 1.4rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, background-color .16s ease, border-color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-solid { background: var(--rust); color: #fff; box-shadow: var(--shadow-sm); }
.btn-solid:hover { background: var(--rust-2); box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--sand-line); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(23,30,28,.03); }

.btn-lg { padding: 1rem 1.75rem; font-size: 1.0125rem; }
.btn-sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn-block { display: flex; width: 100%; }

/* ── header ────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,240,.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--sand-line);
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
  min-height: 68px;
}
.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  text-decoration: none; font-family: var(--serif);
  font-weight: 600; font-size: 1.075rem; color: var(--ink);
  letter-spacing: -.01em; flex-shrink: 0;
}
.brand-mark { width: 26px; height: 26px; fill: var(--bluff); flex-shrink: 0; }

.site-nav { display: flex; gap: 1.6rem; margin-left: auto; }
.site-nav a {
  text-decoration: none; font-size: .925rem; font-weight: 500;
  color: var(--muted); padding-block: .35rem; position: relative;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--rust); transform: scaleX(0);
  transition: transform .18s ease; transform-origin: left;
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

@media (max-width: 940px) {
  .site-nav { display: none; }
  .header-cta { margin-left: auto; }
}
@media (max-width: 420px) {
  .header-cta { display: none; }
}

/* ── hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(6rem, 14vw, 11rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, #FFFDF8 0%, transparent 60%),
    var(--paper);
}
.hero-bluffs { position: absolute; inset: auto 0 0 0; height: 46%; min-height: 190px; pointer-events: none; }
.hero-bluffs svg { width: 100%; height: 100%; }
.bluff-3 { fill: #EDE6D7; }
.bluff-2 { fill: #DFD8C6; }
.bluff-1 { fill: #CFC7B2; }

.hero-inner { position: relative; z-index: 1; max-width: 780px; }

.eyebrow {
  font-size: .75rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  letter-spacing: -.024em;
  margin-bottom: 1.75rem;
}

.lede {
  font-size: clamp(1.075rem, 1.9vw, 1.24rem);
  color: var(--ink-2);
  max-width: 60ch;
}
.lede + .lede { margin-top: 1rem; }
.lede strong { color: var(--ink); font-weight: 650; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2.5rem; }

.hero-badges {
  list-style: none; padding: 0; margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.75rem;
  font-size: .875rem; color: var(--muted); font-weight: 500;
}
.hero-badges span { color: var(--rust); margin-right: .4ch; }

/* ── problem ───────────────────────────────────────────────── */
.problem-grid {
  display: grid; gap: 1.25rem; margin-top: 3rem;
  grid-template-columns: repeat(2, 1fr);
}
.problem-card {
  background: #fff;
  border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
}
.problem-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }

.problem-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-bottom: .9rem; line-height: 1.25;
}
.problem-card p { color: var(--muted); font-size: 1rem; }
.problem-card p + p { margin-top: .75rem; }

.num {
  display: block; font-family: var(--sans); font-size: .7rem;
  font-weight: 700; letter-spacing: .14em; color: var(--rust);
  margin-bottom: .6rem;
}

/* the fake search-results panel */
.serp {
  background: #fff; border: 1px solid var(--sand-line);
  border-radius: var(--radius); padding: 1rem;
  box-shadow: var(--shadow-md); font-size: .8125rem;
}
.serp-bar {
  border: 1px solid var(--sand-line); border-radius: 100px;
  padding: .55rem 1rem; margin-bottom: 1.1rem;
  color: var(--ink); background: var(--paper);
  display: flex; align-items: center; gap: .6rem;
}
.serp-bar::before {
  content: ""; width: 13px; height: 13px; flex-shrink: 0;
  border: 1.8px solid var(--muted); border-radius: 50%;
  box-shadow: 4px 4px 0 -2.5px var(--muted);
}
.serp-query { font-size: .875rem; }

.serp-result { padding: .7rem 0; border-top: 1px dashed var(--sand-line); position: relative; }
.serp-result:first-of-type { border-top: 0; padding-top: 0; }

.serp-rank {
  font-size: .625rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bluff-soft); margin-bottom: .35rem;
}
.serp-ad {
  display: inline-block; margin-top: .5rem;
  font-size: .625rem; letter-spacing: .06em; text-transform: uppercase;
  color: #9AA5A0; border: 1px dashed var(--sand-line);
  padding: .2rem .5rem; border-radius: 4px;
}

.serp-url { color: var(--muted); font-size: .75rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.serp-title { color: #1a4fa0; font-size: .95rem; font-weight: 500; margin-top: .15rem; line-height: 1.35; }
.serp-snippet { color: var(--muted); margin-top: .2rem; line-height: 1.45; }
.serp-snippet em { color: var(--rust-2); font-style: normal; font-weight: 600; }

.serp-tag {
  background: var(--rust-tint); color: var(--rust-2);
  font-size: .625rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .12rem .45rem; border-radius: 4px;
}

.serp-missing { opacity: .55; }
.serp-missing .serp-title { color: var(--muted); font-style: italic; font-weight: 400; }

.serp-note {
  margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--sand-line);
  font-size: .7rem; color: #9AA5A0; line-height: 1.5;
}

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card-wide { grid-template-columns: 1fr; }
}

/* ── before & after ────────────────────────────────────────── */
.ba-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 3rem;
}
.ba-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.5rem; padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  text-decoration: none; text-align: center;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.ba-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-3px);
}
.ba-tag {
  font-family: var(--sans); font-size: .6875rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 100px;
}
.ba-tag-before { background: rgba(176,81,42,.18); color: #E4A47E; border: 1px solid rgba(228,164,126,.4); }
.ba-tag-after { background: rgba(255,255,255,.1); color: #FCFBF7; border: 1px solid rgba(255,255,255,.35); }

.ba-shot { display: flex; justify-content: center; }
.ba-copy h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); color: #FCFBF7; }
.ba-copy p { color: #BACCC6; margin-top: .75rem; font-size: .975rem; max-width: 46ch; }
.ba-link { color: #E4A47E !important; font-weight: 600; }
.ba-card:hover .ba-link span { display: inline-block; transform: translateX(4px); transition: transform .2s ease; }

@media (max-width: 780px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* the "before" phone: a cramped directory page */
.phone-screen-bad { background: #F1F1F1; padding: 8px 8px 0; gap: 6px; }
.psb-bar { height: 14px; border-radius: 100px; background: #DDD; }
.psb-ad {
  padding: 7px 6px; background: #E3E3E3; border: 1px dashed #BFBFBF;
  font-size: 6.5px; letter-spacing: .12em; text-transform: uppercase;
  color: #8A8A8A; text-align: center;
}
.psb-title { font-size: 9.5px; line-height: 1.3; color: #1a4fa0; font-weight: 600; text-align: left; }
.psb-line { font-size: 7.5px; color: #5c5c5c; text-align: left; }
.psb-line b { color: #A33A17; }
.psb-claim {
  font-size: 7px; color: #1a4fa0; text-decoration: underline; text-align: left;
}
.psb-lines { display: flex; flex-direction: column; gap: 5px; margin-top: 2px; }
.psb-lines i { height: 5px; border-radius: 3px; background: #D0D0D0; }
.psb-lines i:nth-child(2) { width: 84%; }
.psb-lines i:nth-child(3) { width: 62%; }

/* ── example (legacy card, kept for mockup pages) ──────────── */
.example-card {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(1.75rem, 5vw, 4rem); align-items: center;
  margin-top: 3rem; padding: clamp(1.75rem, 4vw, 3rem);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.example-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-3px);
}

.example-shot { display: flex; justify-content: center; }

/* miniature phone rendering of the mockup */
.phone {
  width: 190px; height: 380px; flex-shrink: 0;
  background: #0D1A17; border-radius: 26px; padding: 7px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.1);
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 20px; overflow: hidden;
  background: #FDF6E9; display: flex; flex-direction: column;
}
.ps-nav {
  height: 22px; background: #1F4A4A; display: flex; align-items: center;
  justify-content: space-between; padding-inline: 8px;
}
.ps-nav span { height: 3px; border-radius: 2px; background: rgba(255,255,255,.55); }
.ps-nav span:first-child { width: 38px; }
.ps-nav span:last-child { width: 14px; }

.ps-hero {
  background: linear-gradient(165deg, #2A5C5C, #17393A);
  color: #FBF6EA; padding: 16px 12px 18px; text-align: center;
}
.ps-eyebrow { font-size: 6px; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }
.ps-title { font-family: var(--serif); font-size: 23px; line-height: 1.02; margin-top: 6px; font-weight: 600; }
.ps-stars { font-size: 7px; color: #D98A2B; margin-top: 8px; letter-spacing: .1em; }
.ps-stars small { color: rgba(251,246,234,.75); font-size: 6px; letter-spacing: 0; }
.ps-btn { width: 84px; height: 13px; border-radius: 100px; background: #D98A2B; margin: 10px auto 0; }

.ps-strip { display: flex; gap: 4px; padding: 8px; background: #EFE6D3; }
.ps-strip span { flex: 1; height: 15px; border-radius: 3px; background: rgba(31,74,74,.16); }

.ps-lines { padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.ps-lines i { height: 6px; border-radius: 3px; background: rgba(36,31,28,.11); }
.ps-lines i:nth-child(2) { width: 82%; }
.ps-lines i:nth-child(3) { width: 60%; }

.example-copy h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
}
.example-badge {
  font-family: var(--sans); font-size: .625rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.35); color: #D6E0DC;
  padding: .2rem .55rem; border-radius: 100px;
}
.example-meta { color: #92A69F; font-size: .875rem; margin-top: .5rem; }
.example-copy p { color: #BACCC6; margin-top: 1rem; }
.example-copy strong { color: #FCFBF7; font-weight: 600; }
.example-link { color: #E4A47E !important; font-weight: 600; margin-top: 1.25rem !important; }
.example-card:hover .example-link span { display: inline-block; transform: translateX(4px); transition: transform .2s ease; }

.fineprint { margin-top: 1.5rem; font-size: .8rem; color: #7C8F89; max-width: 62ch; }

@media (max-width: 780px) {
  .example-card { grid-template-columns: 1fr; }
}

/* ── what you get ──────────────────────────────────────────── */
.check-grid {
  list-style: none; padding: 0; margin-top: 3rem;
  display: grid; gap: 1.75rem 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.check-grid li { position: relative; padding-left: 2.25rem; }
.check-grid li::before {
  content: ""; position: absolute; left: 0; top: .3rem;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  background: var(--rust-tint);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B0512A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: .8rem; background-repeat: no-repeat; background-position: center;
}
.check-grid h3 { font-size: 1.075rem; margin-bottom: .4rem; line-height: 1.35; }
.check-grid p { color: var(--muted); font-size: .95rem; }

/* ── steps ─────────────────────────────────────────────────── */
.steps {
  list-style: none; padding: 0; margin-top: 3rem; counter-reset: s;
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.steps li {
  background: var(--paper); border: 1px solid var(--sand-line);
  border-radius: var(--radius); padding: 1.75rem 1.5rem;
  position: relative;
}
.step-num {
  display: grid; place-items: center;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--bluff); color: var(--paper);
  font-family: var(--serif); font-size: 1rem; font-weight: 600;
  margin-bottom: 1rem;
}
.steps h3 { font-size: 1.125rem; margin-bottom: .5rem; }
.steps p { color: var(--muted); font-size: .95rem; }

/* ── pricing ───────────────────────────────────────────────── */
.price-grid {
  display: grid; gap: 1.5rem; margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}
.price-card {
  background: #fff; border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm); position: relative;
}
.price-card-featured {
  border: 2px solid var(--bluff);
  box-shadow: var(--shadow-lg);
}
.price-flag {
  position: absolute; top: -.85rem; left: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--bluff); color: var(--paper);
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 100px;
}
.price-card h3 { font-size: 1.4rem; margin-bottom: .35rem; }
.price-for { color: var(--muted); font-size: .875rem; margin-bottom: 1.25rem; }
.price { display: flex; align-items: baseline; gap: .4ch; }
.price-num { font-family: var(--serif); font-size: clamp(2.75rem, 6vw, 3.6rem); color: var(--ink); font-weight: 600; letter-spacing: -.03em; }
.price-per { color: var(--muted); font-size: 1rem; font-weight: 500; }
.price-note { color: var(--muted); font-size: .9rem; margin-top: .35rem; }

.price-list { list-style: none; padding: 0; margin: 1.75rem 0; display: grid; gap: .7rem; }
.price-list li { position: relative; padding-left: 1.65rem; font-size: .95rem; color: var(--ink-2); }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: .48rem;
  width: .95rem; height: .95rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3A34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.price-anchor {
  margin-top: 2rem; text-align: center;
  font-size: 1.05rem; color: var(--muted); max-width: 60ch; margin-inline: auto;
}
.price-anchor strong { color: var(--ink); font-weight: 650; }

.segment-note {
  margin-top: 2.5rem; padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--rust-tint); border: 1px solid #E7CDBE;
  border-radius: var(--radius-lg);
}
.segment-note h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.segment-note p { color: var(--ink-2); max-width: 68ch; }
.segment-note strong { color: var(--rust-2); }

/* ── honest panel: what costs extra / what we don't do ────── */
.honest {
  margin-top: 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  background: #fff; border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 780px) { .honest { grid-template-columns: 1fr; } }

.honest-col h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.honest-sub { color: var(--muted); font-size: .875rem; margin-bottom: 1.35rem; }

.x-list { list-style: none; padding: 0; display: grid; gap: .1rem; }
.x-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--sand-line);
  font-size: .95rem;
}
.x-list li:last-child { border-bottom: 0; }
.x-list span { color: var(--ink-2); }
.x-list b { color: var(--ink); font-weight: 650; white-space: nowrap; font-size: .9rem; }

.x-list-plain li { color: var(--muted); }
.x-list-plain span { position: relative; padding-left: 1.4rem; color: var(--muted); }
.x-list-plain span::before {
  content: "×"; position: absolute; left: 0; top: -.1rem;
  color: var(--rust); font-weight: 700; font-size: 1.05rem;
}

.honest-note {
  margin-top: 1.35rem; font-size: .875rem; color: var(--muted); line-height: 1.6;
}

.honest-warn {
  margin-top: 1.5rem; padding: 1.1rem 1.25rem;
  background: var(--rust-tint); border: 1px solid #E7CDBE;
  border-radius: 12px; font-size: .9rem; color: var(--ink-2); line-height: 1.6;
}
.honest-warn strong { color: var(--rust-2); }

/* ── ownership terms ───────────────────────────────────────── */
.terms-list { list-style: none; padding: 0; margin-top: 3rem; display: grid; gap: 1.75rem; max-width: 820px; }
.terms-list li { display: grid; grid-template-columns: 2.6rem 1fr; gap: 1.25rem; align-items: start; }
.term-num {
  display: grid; place-items: center;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.28); color: #E4A47E;
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
}
.terms-list h3 { font-size: 1.15rem; margin-bottom: .45rem; line-height: 1.3; }
.terms-list p { color: #A9BAB4; font-size: .975rem; }
.terms-list strong { color: #FCFBF7; font-weight: 600; }
@media (max-width: 560px) {
  .terms-list li { grid-template-columns: 1fr; gap: .75rem; }
}

/* ── online ordering ───────────────────────────────────────── */
.ordering-split {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem); margin-top: 2.75rem; align-items: start;
}
@media (max-width: 860px) { .ordering-split { grid-template-columns: 1fr; } }

.ordering-copy p { color: var(--ink-2); font-size: 1.05rem; }
.ordering-copy p + p { margin-top: 1.1rem; }
.ordering-copy strong { color: var(--ink); font-weight: 650; }

.ordering-honest {
  margin-top: 1.75rem !important; padding: 1.25rem 1.4rem;
  background: var(--paper); border-left: 3px solid var(--rust);
  border-radius: 0 10px 10px 0; font-size: .95rem !important; color: var(--muted) !important;
}
.ordering-honest strong { color: var(--rust-2) !important; }

.order-card {
  background: #fff; border: 1px solid var(--sand-line);
  border-radius: var(--radius-lg); padding: 2rem 1.75rem;
  box-shadow: var(--shadow-md);
}
.order-card h3 { font-size: 1.2rem; }
.order-price { margin-top: .5rem; color: var(--muted); font-size: .875rem; }
.order-price span {
  font-family: var(--serif); font-size: 2.25rem; color: var(--ink);
  font-weight: 600; letter-spacing: -.02em; margin-right: .4ch;
}
.order-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.order-list li { position: relative; padding-left: 1.65rem; font-size: .925rem; color: var(--ink-2); }
.order-list li::before {
  content: ""; position: absolute; left: 0; top: .42rem;
  width: .9rem; height: .9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E3A34' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}
.order-note { margin-top: 1.5rem; font-size: .8125rem; color: var(--muted); font-style: italic; line-height: 1.6; }

/* ── about ─────────────────────────────────────────────────── */
.about-wrap-light .about-body { color: var(--muted); font-size: 1.1rem; margin-top: 1.5rem; }
.about-wrap-light .about-body:first-of-type { margin-top: 2rem; }

/* ── faq ───────────────────────────────────────────────────── */
.faq { margin-top: 2.75rem; border-top: 1px solid var(--sand-line); }
.faq details { border-bottom: 1px solid var(--sand-line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  font-family: var(--serif); font-size: 1.125rem; font-weight: 600;
  color: var(--ink); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .35rem; top: 50%;
  width: .7rem; height: .7rem; margin-top: -.45rem;
  border-right: 2px solid var(--rust); border-bottom: 2px solid var(--rust);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -.2rem; }
.faq summary:hover { color: var(--rust-2); }
.faq p { padding: 0 1.5rem 1.5rem 0; color: var(--muted); max-width: 68ch; }

/* ── contact ───────────────────────────────────────────────── */
.contact-form { margin-top: 2.5rem; display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.field label { font-size: .8125rem; font-weight: 600; color: var(--ink); letter-spacing: .01em; }
.opt { color: var(--muted); font-weight: 400; }

.field input, .field textarea {
  width: 100%; padding: .8rem 1rem;
  background: var(--paper);
  border: 1.5px solid var(--sand-line);
  border-radius: 10px;
  font-size: 1rem; resize: vertical;
  transition: border-color .15s ease, background-color .15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--bluff); background: #fff;
  box-shadow: 0 0 0 3px rgba(30,58,52,.1);
}
.field ::placeholder { color: #9AA5A0; }

.form-note { font-size: .8125rem; color: var(--muted); text-align: center; margin-top: .25rem; }

.contact-direct { margin-top: 3rem; text-align: center; }
.contact-direct > p:first-child { font-size: .8125rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-lines { margin-top: .75rem; font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.4rem); }
.contact-lines a { color: var(--ink); text-decoration: none; border-bottom: 2px solid var(--rust); padding-bottom: 1px; }
.contact-lines a:hover { color: var(--rust-2); }
.contact-lines .sep { color: var(--sand-line); margin-inline: .75rem; }
.contact-direct .dim { margin-top: 1rem; }

/* ── footer ────────────────────────────────────────────────── */
.site-footer { background: var(--bluff-2); color: #8FA39D; padding-block: 3.5rem 3rem; }
.footer-inner { text-align: center; }
.footer-brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-size: 1.15rem; color: #FCFBF7; font-weight: 600;
}
.footer-brand .brand-mark { width: 24px; height: 24px; fill: #FCFBF7; }
.footer-tag { margin-top: .75rem; font-size: .9rem; }
.footer-links { margin-top: 1rem; font-size: .8125rem; }
.footer-links a { color: #B7C6C0; text-decoration: none; border-bottom: 1px solid #4A5F58; padding-bottom: 1px; }
.footer-links a:hover { color: #FCFBF7; }
.footer-legal { margin-top: 2rem; font-size: .75rem; color: #64786F; max-width: 62ch; margin-inline: auto; line-height: 1.6; }
