/* ============================================================
   SiteElixir - styles
   Brand: Honey + Charcoal
   Type:  Bricolage Grotesque (single family, variable opsz+wdth+wght)
   Last updated: 2026-05-20
   ============================================================ */

:root {
  --surface: #FAF6EE;
  --surface-warm: #F6EFE0;          /* slightly deeper paper for alt sections */
  --ink: #1F1A14;
  --ink-soft: rgba(31, 26, 20, 0.72);
  --ink-muted: rgba(31, 26, 20, 0.55);
  --brand: #D89A2C;
  --brand-hover: #C18820;
  --border: rgba(31, 26, 20, 0.12);
  --border-strong: rgba(31, 26, 20, 0.22);

  --font-sans: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);

  --wrap-max: 1120px;
  --wrap-prose: 720px;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; text-decoration-color: var(--border-strong); }
a:hover { text-decoration-color: var(--brand); color: var(--ink); }

/* visually-hidden for accessible labels */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header { padding: 24px 0; }
.header-wrap { display: flex; align-items: center; }
.wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.wordmark .x {
  color: var(--brand);
  font-weight: 700;
}
.wordmark:hover { color: var(--ink); }
.wordmark:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 56px 0 96px; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--ink);
  max-width: 940px;
  text-wrap: balance;
}
.hero-headline__second { display: block; color: var(--ink-soft); text-wrap: balance; }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 0 36px;
  color: var(--ink-soft);
}

/* ---------- URL form ---------- */
.url-form { max-width: 620px; }
.url-form__row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: stretch;
}
.url-form input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  padding: 16px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color 120ms ease;
}
.url-form input[type="text"]:focus {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-color: var(--ink);
}
.url-form input[type="text"]::placeholder { color: var(--ink-muted); }

.url-form button {
  padding: 16px 22px;
  border: none;
  border-radius: 8px;
  background: var(--brand);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 120ms ease;
}
.url-form button:hover { background: var(--brand-hover); }
.url-form button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.url-form__micro {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
}

.hero-footnote {
  margin-top: 56px;
  max-width: 560px;
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============================================================
   SHARED SECTION
   ============================================================ */
.section { padding: 96px 0; border-top: 1px solid var(--border); }
.section-head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--ink);
  max-width: 720px;
}
.section-sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 720px;
  margin: 0 0 56px;
  color: var(--ink-soft);
}

/* ============================================================
   SECTION 2 - HOW IT WORKS
   ============================================================ */
.how { background: var(--surface); }
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 760px;
  border-top: 1px solid var(--border);
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.01em;
}
.step__body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}
.step__body strong { font-weight: 600; }

/* ============================================================
   SECTION 3 - MEET THE DESIGNERS
   ============================================================ */
.designers { background: var(--surface-warm); }
.designer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.designer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0 0 28px;
  overflow: hidden;
}
.designer__portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.designer__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 28px 4px;
  color: var(--ink);
}
.designer__role {
  margin: 0 28px 12px;
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.designer__role em { font-style: normal; }
.designer__bio {
  margin: 0 28px 20px;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.designer__pick {
  margin: 0 28px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.designer__pick strong { font-weight: 600; color: var(--ink); }

.designer-foot {
  max-width: 720px;
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ============================================================
   SECTION 4 - WHAT YOU GET
   ============================================================ */
.gets-list {
  max-width: 760px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.get {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.get__head {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.get p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
}

/* ============================================================
   SECTION 5 - PRICING
   ============================================================ */
.pricing { background: var(--surface-warm); }
.pricing-wrap { max-width: 760px; text-align: left; }
.pricing-head {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.pricing-sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 48px;
  max-width: 620px;
}
.pricing-anchor {
  padding: 32px;
  background: rgba(216, 154, 44, 0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 32px;
}
.pricing-anchor p { margin: 0 0 8px; font-size: 16.5px; line-height: 1.5; color: var(--ink); }
.pricing-anchor p:last-child { margin: 0; color: var(--ink-soft); }
.pricing-anchor strong { color: var(--ink); font-weight: 600; }
.pricing-micro {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0;
  max-width: 620px;
}

/* ============================================================
   SECTION 6 - FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  border-top: 1px solid var(--border);
}
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--ink);
}
.faq-item p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 680px;
}

/* ============================================================
   SECTION 7 - CLOSING CTA
   ============================================================ */
.closing { background: var(--surface); }
.closing-wrap { max-width: 760px; }
.closing-head { margin-bottom: 32px; }
.url-form--closing { max-width: 620px; }

/* ============================================================
   TRUST BEAT
   ============================================================ */
.trust {
  background: var(--surface-warm);
  padding: 72px 0;
}
.trust-wrap { max-width: 720px; text-align: center; }
.trust-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 16px;
}
.trust-line strong { font-weight: 500; }
.trust-sub {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   LEGAL PAGES (privacy / terms)
   ============================================================ */
.legal-wrap { max-width: 720px; }
.legal-meta {
  font-size: 14px;
  color: var(--ink-muted);
  margin: -16px 0 48px;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 40px 0 10px;
  color: var(--ink);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  margin: 0 0 16px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.legal-body a { color: var(--ink); }
.legal-back {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.legal-back a { color: var(--ink-soft); }
.legal-back a:hover { color: var(--ink); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--surface);
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  font-size: 14.5px;
  color: var(--ink-muted);
}
.footer-col p { margin: 0; }
.footer-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-muted);
  margin: 0 0 6px !important;
}
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--ink); }

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

@media (min-width: 640px) {
  .footer-wrap { grid-template-columns: repeat(3, 1fr); }
  .designer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (min-width: 920px) {
  .wrap { padding: 0 40px; }
  body { font-size: 17px; }
  .hero { padding: 80px 0 128px; }
  .section { padding: 128px 0; }
  .designer-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .step__num { font-size: 32px; }
  .step__body { font-size: 19px; }
}

@media (min-width: 1180px) {
  .designer-grid { gap: 32px; }
}

@media (max-width: 480px) {
  .url-form__row { flex-direction: column; }
  .url-form input[type="text"] { width: 100%; }
  .url-form button { width: 100%; }
  .hero { padding: 32px 0 72px; }
  .section { padding: 72px 0; }
  .step { grid-template-columns: 40px 1fr; gap: 16px; }
  .step__num { font-size: 24px; }
  .step__body { font-size: 16.5px; }
  .designer__name { font-size: 22px; }
  .faq__q { font-size: 19px; }
}
