/* ============================================================
   Laura Labs — Design System
   Deep teal on near-black, warm amber accent.
   Tokens mirror brand/brand-guide.md §5–§8. Change them there first.
   ============================================================ */

:root {
  /* --- Grounds --- */
  --ll-ink:        #0B1416;
  --ll-ink-2:      #101E21;
  --ll-surface:    #16282C;
  --ll-surface-2:  #1B3035;
  --ll-line:       #20383D;

  /* --- Text --- */
  --ll-paper:      #F4F1EC;
  --ll-mist:       #A9BCBD;

  /* --- Accents --- */
  --ll-teal:        #2E9B8F;
  --ll-teal-bright: #47C2B1;
  --ll-teal-deep:   #1E7266;
  --ll-amber:       #E8A33D;
  --ll-amber-deep:  #C87F1E;

  /* --- Light-ground set (the pricing section, print) --- */
  --ll-paper-bg:   #F7F5F1;
  --ll-paper-bg-2: #EFEBE4;
  --ll-ink-text:   #0B1416;
  --ll-line-light: #DDD7CD;

  /* --- Type --- */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Logo only. Never set body copy or headings in these. */
  --font-script: 'Lobster Two', 'Pacifico', 'Brush Script MT', cursive;
  --font-block: 'Archivo Black', 'Anton', Impact, sans-serif;

  /* --- Geometry --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --container: 1160px;

  --shadow-light: 0 12px 32px rgba(11, 20, 22, 0.10);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.4vw, 2.9rem); }
h3 { font-family: var(--font-body); font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.35; }

p { max-width: 68ch; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ll-teal);
  margin-bottom: 18px;
}

.lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ll-mist); line-height: 1.6; }

.num {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--ll-amber);
  letter-spacing: -0.02em;
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head p { color: var(--ll-mist); font-size: 1.1rem; margin-top: 16px; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--ll-teal-bright); outline-offset: 3px; }

.btn-primary { background: var(--ll-teal); color: #04100E; }
.btn-primary:hover { background: var(--ll-teal-bright); }

.btn-ghost { border: 1px solid var(--ll-line); color: var(--ll-paper); }
.btn-ghost:hover { border-color: var(--ll-teal); background: rgba(46, 155, 143, 0.07); }

.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-block { width: 100%; }

/* On the light pricing section */
.on-light .btn-primary { background: var(--ll-teal-deep); color: #fff; }
.on-light .btn-primary:hover { background: #185C53; }
.on-light .btn-ghost { border-color: var(--ll-line-light); color: var(--ll-ink-text); }
.on-light .btn-ghost:hover { border-color: var(--ll-teal-deep); background: rgba(30, 114, 102, 0.06); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 20, 22, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--ll-line); }

.nav-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.brand-type { display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.brand-laura {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.brand-labs {
  font-family: var(--font-block);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  color: var(--ll-teal);
  transform: skewX(-10deg);
  display: inline-block;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ll-mist);
  transition: color .16s var(--ease);
}
.nav-links a:hover { color: var(--ll-paper); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.92rem; font-weight: 600; color: var(--ll-mist);
  transition: color .16s var(--ease);
}
.nav-phone:hover { color: var(--ll-teal-bright); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ll-paper); border-radius: 2px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 80;
  background: var(--ll-ink);
  padding: 20px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-nav > a:not(.btn) {
  padding: 16px 0;
  border-bottom: 1px solid var(--ll-line);
  font-size: 1.15rem; font-weight: 600;
}
.mobile-nav .btn { margin-top: 26px; }
.mobile-nav-phone { margin-top: 18px; color: var(--ll-mist); font-weight: 600; }

/* ---------- Hero ---------- */

.hero { padding: clamp(72px, 11vw, 132px) 0 clamp(64px, 8vw, 104px); overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: -180px; right: -140px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(46, 155, 143, 0.13) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--ll-teal-bright); }
.hero-sub { font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--ll-mist); margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 34px; }
.hero-note { font-size: 0.9rem; color: var(--ll-mist); display: flex; align-items: center; gap: 8px; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 44px; padding-top: 30px;
  border-top: 1px solid var(--ll-line);
}
.hero-stat .num { font-size: 2rem; display: block; line-height: 1.1; }
.hero-stat span { font-size: 0.86rem; color: var(--ll-mist); }

/* Browser-frame mock */
.mock {
  border: 1px solid var(--ll-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ll-surface);
}
.mock-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 12px 15px;
  background: var(--ll-ink-2);
  border-bottom: 1px solid var(--ll-line);
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ll-line); }
.mock-url {
  margin-left: 10px; font-size: 0.74rem; color: var(--ll-mist);
  background: var(--ll-ink); padding: 4px 12px; border-radius: 20px;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.mock-body { padding: 26px; display: grid; gap: 14px; }
.mock-line { height: 11px; border-radius: 4px; background: var(--ll-surface-2); }
.mock-line.w-70 { width: 70%; }
.mock-line.w-45 { width: 45%; }
.mock-line.tall { height: 30px; width: 82%; background: var(--ll-line); }
.mock-btn { height: 34px; width: 128px; border-radius: 7px; background: var(--ll-teal); margin-top: 6px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin-top: 12px; }
.mock-card { height: 62px; border-radius: 8px; background: var(--ll-surface-2); border: 1px solid var(--ll-line); }
.mock-card:nth-child(2) { border-color: var(--ll-teal); }

/* ---------- Logo strip ---------- */

.strip { padding: 30px 0; border-top: 1px solid var(--ll-line); border-bottom: 1px solid var(--ll-line); background: var(--ll-ink-2); }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; }
.strip p { font-size: 0.92rem; color: var(--ll-mist); max-width: none; }

/* ---------- Generic section ---------- */

.section { padding: clamp(72px, 9vw, 116px) 0; }
.section.alt { background: var(--ll-ink-2); }
.on-light { background: var(--ll-paper-bg); color: var(--ll-ink-text); }
.on-light h1, .on-light h2, .on-light h3 { color: var(--ll-ink-text); }
.on-light .eyebrow { color: var(--ll-teal-deep); }
.on-light .section-head p, .on-light .lede { color: #4A5A5B; }
.on-light .num { color: var(--ll-amber-deep); }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.card:hover { border-color: var(--ll-teal); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ll-mist); font-size: 0.97rem; }

.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(46, 155, 143, 0.12);
  color: var(--ll-teal-bright);
  margin-bottom: 18px;
}

/* ---------- Process ---------- */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 8px; }
.step { padding: 30px 26px 30px 0; border-top: 2px solid var(--ll-line); position: relative; padding-right: 30px; }
.step::before {
  content: ''; position: absolute; top: -2px; left: 0; height: 2px; width: 0;
  background: var(--ll-teal); transition: width .7s var(--ease);
}
.step.in-view::before { width: 72%; }
.step-num { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; color: var(--ll-teal); margin-bottom: 12px; }
.step h3 { margin-bottom: 9px; }
.step p { color: var(--ll-mist); font-size: 0.95rem; }
.step-when { display: block; margin-top: 12px; font-size: 0.84rem; color: var(--ll-amber); font-weight: 600; }

/* ---------- Work / case study ---------- */

.work-card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
}
.work-visual { background: var(--ll-ink-2); padding: 34px; display: grid; place-items: center; border-right: 1px solid var(--ll-line); }
.work-body { padding: 40px 38px; }
.work-body h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; margin-bottom: 6px; }
.work-meta { font-size: 0.84rem; color: var(--ll-teal); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 18px; }
.work-body p { color: var(--ll-mist); margin-bottom: 22px; }
.work-results { display: flex; gap: 32px; padding-top: 20px; border-top: 1px solid var(--ll-line); margin-bottom: 24px; }
.work-result .num { font-size: 1.6rem; display: block; line-height: 1.15; }
.work-result span { font-size: 0.82rem; color: var(--ll-mist); }

.link-arrow { color: var(--ll-teal-bright); font-weight: 600; display: inline-flex; align-items: center; gap: 7px; }
.link-arrow:hover { gap: 11px; transition: gap .16s var(--ease); }

.work-soon {
  border: 1px dashed var(--ll-line);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  color: var(--ll-mist);
  font-size: 0.95rem;
  margin-top: 22px;
}

/* ---------- Pricing ---------- */

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.price-card {
  background: #fff;
  border: 1px solid var(--ll-line-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  height: 100%;
}
.price-card.featured {
  border: 2px solid var(--ll-teal-deep);
  box-shadow: var(--shadow-light);
  position: relative;
}
.price-flag {
  position: absolute; top: -13px; left: 28px;
  background: var(--ll-teal-deep); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.price-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.price-for { font-size: 0.9rem; color: #6B7877; margin-bottom: 22px; }
.price-tag { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-tag .num { font-size: 2.7rem; }
.price-tag small { font-size: 0.88rem; color: #6B7877; font-weight: 500; }
.price-time { font-size: 0.88rem; color: var(--ll-teal-deep); font-weight: 600; margin-bottom: 24px; }
.price-list { display: grid; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-list li { display: flex; gap: 10px; font-size: 0.94rem; line-height: 1.5; align-items: flex-start; }
.price-list svg { flex-shrink: 0; margin-top: 4px; color: var(--ll-teal-deep); }

.care {
  margin-top: 40px;
  background: var(--ll-paper-bg-2);
  border: 1px solid var(--ll-line-light);
  border-radius: var(--radius-md);
  padding: 30px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.care h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.care p { color: #4A5A5B; font-size: 0.97rem; }

/* ---------- FAQ ---------- */

.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--ll-line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 0;
  font-size: 1.08rem; font-weight: 600; text-align: left;
  transition: color .16s var(--ease);
}
.faq-q:hover { color: var(--ll-teal-bright); }
.faq-q svg { flex-shrink: 0; transition: transform .28s var(--ease); color: var(--ll-teal); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .34s var(--ease); }
.faq-a p { color: var(--ll-mist); padding-bottom: 24px; }

/* ---------- CTA band ---------- */

.cta-band { background: var(--ll-teal-deep); padding: clamp(60px, 7vw, 88px) 0; text-align: center; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0 auto 32px; font-size: 1.12rem; }
.cta-band .btn-primary { background: var(--ll-paper); color: var(--ll-ink); }
.cta-band .btn-primary:hover { background: #fff; }
.cta-band .btn-ghost { border-color: rgba(255, 255, 255, 0.35); }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact-points { display: grid; gap: 22px; margin-top: 32px; }
.contact-point { display: flex; gap: 14px; align-items: flex-start; }
.contact-point svg { color: var(--ll-teal); flex-shrink: 0; margin-top: 3px; }
.contact-point strong { display: block; font-size: 0.97rem; margin-bottom: 2px; }
.contact-point span { font-size: 0.92rem; color: var(--ll-mist); }

.form {
  background: var(--ll-surface);
  border: 1px solid var(--ll-line);
  border-radius: var(--radius-md);
  padding: 32px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--ll-ink);
  border: 1px solid var(--ll-line);
  border-radius: 8px;
  color: var(--ll-paper);
  font-family: var(--font-body);
  font-size: 0.97rem;
  transition: border-color .16s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ll-teal);
}
.field textarea { resize: vertical; min-height: 108px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 0.84rem; color: var(--ll-mist); margin-top: 14px; text-align: center; }
.form-success,
.form-error {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 0.94rem;
  margin-bottom: 18px;
}
.form-success {
  background: rgba(46, 155, 143, 0.12);
  border: 1px solid var(--ll-teal);
}
.form-error {
  background: rgba(232, 163, 61, 0.12);
  border: 1px solid var(--ll-amber);
  color: var(--ll-paper);
}
.form-success.show,
.form-error.show { display: block; }

/* Honeypot — must be hidden from people but reachable by bots. */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

button[disabled] { opacity: 0.65; cursor: wait; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ll-ink-2); border-top: 1px solid var(--ll-line); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid p { color: var(--ll-mist); font-size: 0.94rem; margin-top: 16px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ll-mist); margin-bottom: 16px; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.94rem; color: var(--ll-paper); }
.footer-col a:hover { color: var(--ll-teal-bright); }
.footer-bottom {
  border-top: 1px solid var(--ll-line);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.87rem; color: var(--ll-mist);
}

/* ---------- Reveal on scroll ---------- */

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .step::before { width: 72%; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .work-card { grid-template-columns: 1fr; }
  .work-visual { border-right: none; border-bottom: 1px solid var(--ll-line); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-right .btn, .phone-text { display: none; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { padding-right: 0; }
  .hero-stats { gap: 26px; }
  .work-body { padding: 30px 24px; }
  .field-row { grid-template-columns: 1fr; }
  .form { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .care { flex-direction: column; align-items: flex-start; }
}
