/* ============================================================
   Savvy Clear Consulting
   Palette derived from the brand logo:
     - Deep teal-navy   #0A3340
     - Sage green       #8AA98E
     - Muted gold       #C9B687
   Backgrounds: warm white / soft gray. Calm consulting feel.
   ============================================================ */

:root {
  --c-bg:        #FAFAF7;   /* warm white */
  --c-bg-2:      #F2F1EC;   /* warm tint */
  --c-surface:   #FFFFFF;
  --c-soft:      #EDEFEA;   /* soft sage-gray */
  --c-line:      rgba(10,51,64,0.08);
  --c-line-2:    rgba(10,51,64,0.14);

  --c-ink:       #0A2430;   /* deep ink */
  --c-ink-2:     #2A4651;
  --c-muted:     #5F7079;

  --c-navy:      #0A3340;   /* primary brand */
  --c-navy-2:    #154353;
  --c-sage:      #8AA98E;
  --c-sage-2:    #6E8E72;
  --c-gold:      #C9B687;

  --c-blue-soft: #C7D7DC;
  --c-sage-soft: #DCE5DA;

  --shadow-sm: 0 1px 2px rgba(10,36,48,0.04), 0 2px 8px rgba(10,36,48,0.04);
  --shadow-md: 0 6px 24px rgba(10,36,48,0.06), 0 2px 6px rgba(10,36,48,0.04);
  --shadow-lg: 0 24px 60px rgba(10,36,48,0.10), 0 8px 24px rgba(10,36,48,0.06);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  --maxw: 1180px;

  --ff-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --ff-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --t-fast: 220ms cubic-bezier(.2,.7,.2,1);
  --t-mid:  420ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--c-navy); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-sage-2); }

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

.skip {
  position: absolute; left: -1000px; top: -1000px;
  background: var(--c-navy); color: #fff; padding: 10px 14px; border-radius: 8px;
}
.skip:focus { left: 12px; top: 12px; z-index: 1000; }

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

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--c-sage-2);
  margin: 0 0 14px;
}

.h-display {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--c-ink);
}
.h-display .line { display: block; }
.h-display .accent { color: var(--c-sage-2); font-style: italic; }

.h-section {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--c-ink);
}
.h-section .accent { color: var(--c-sage-2); font-style: italic; }

.lead {
  font-size: clamp(16px, 1.25vw, 19px);
  color: var(--c-ink-2);
  max-width: 60ch;
  margin: 0 0 22px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast);
  user-select: none;
}
.btn-primary {
  background: var(--c-navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(10,51,64,0.18);
}
.btn-primary:hover {
  background: var(--c-navy-2);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(10,51,64,0.22), 0 0 0 4px rgba(138,169,142,0.18);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line-2);
}
.btn-ghost:hover {
  border-color: var(--c-sage-2);
  color: var(--c-sage-2);
}
.btn-full { width: 100%; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,247,0.72);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), background var(--t-fast),
              padding var(--t-fast);
}
.nav.scrolled {
  border-color: var(--c-line);
  background: rgba(250,250,247,0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--c-ink);
}
.brand img { height: 54px; width: auto; }
.brand-text {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-text em { font-style: italic; color: var(--c-sage-2); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0 auto 0 20px;
  padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--c-ink-2);
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--c-sage-2);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { padding: 10px 18px; font-size: 14px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .brand-text { display: none; }
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}
.section-head .lead { margin: 0 auto; }

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

.hero {
  position: relative;
  padding: clamp(60px, 8vw, 96px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 88% 8%, rgba(138,169,142,0.22), transparent 60%),
    radial-gradient(800px 700px at 8% 90%, rgba(10,51,64,0.10), transparent 65%),
    linear-gradient(180deg, var(--c-bg), var(--c-bg-2));
  z-index: -2;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,51,64,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,51,64,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 50% 30%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 30%, #000 40%, transparent 80%);
  opacity: .7;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-copy .eyebrow { color: var(--c-sage-2); }

/* Hero logo display */
.hero-logo {
  margin-bottom: 22px;
  text-align: center;
}
.hero-logo img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(10,51,64,0.10));
}

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 12px; }

.hero-visual {
  position: relative;
  aspect-ratio: 5/4;
  min-height: 360px;
}
.hero-stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.hero-art {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(10,51,64,0.12));
  opacity: .95;
}
.hero-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-lines path {
  fill: none;
  stroke: var(--c-sage);
  stroke-width: 1.4;
  stroke-dasharray: 6 6;
  opacity: .55;
}

.float-card {
  position: absolute;
  width: 30%;
  max-width: 200px;
  filter: drop-shadow(0 14px 28px rgba(10,51,64,0.14));
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.float-card img {
  border-radius: var(--r-md);
}
.fc-idea     { top: 4%;  left: -2%;  width: 30%; }
.fc-workflow { top: 28%; right: -4%; width: 34%; }
.fc-reqs     { bottom: 8%; left: 4%; width: 30%; }
.fc-handoff  { bottom: 0%; right: 6%; width: 28%; }
.fc-calendar { top: 50%; left: 38%;  width: 24%; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 18px;
  transform: translateX(-50%);
  color: var(--c-muted); font-size: 18px;
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob {
  0%,100% { transform: translate(-50%, 0); opacity: .7; }
  50%     { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- About ---------- */

.about { background: var(--c-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
}

.bullet-list {
  list-style: none; margin: 18px 0 0; padding: 0;
}
.bullet-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-2);
}
.bullet-list li::before {
  content: "";
  position: absolute; left: 4px; top: 18px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--c-sage-2) 0 5px, transparent 6px),
    var(--c-sage-soft);
}

/* ---------- Services ---------- */

.services { background: linear-gradient(180deg, var(--c-bg), var(--c-bg-2)); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              border-color var(--t-fast);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-sage);
  box-shadow: var(--shadow-md);
}
.service-card h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 20px;
  margin: 14px 0 6px;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.service-card p {
  margin: 0;
  color: var(--c-muted);
  font-size: 15px;
}

.svc-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: var(--c-navy);
  background: var(--c-sage-soft);
  border-radius: 12px;
}
.service-card:hover .svc-icon {
  background: #DBE7DC;
  color: var(--c-sage-2);
}

.pricing-note {
  text-align: center;
  margin: 48px auto 0;
  color: var(--c-ink-2);
  font-size: 16px;
}
.pricing-note strong {
  color: var(--c-navy);
  font-family: var(--ff-display);
  font-weight: 500;
}

/* ---------- Why ---------- */

.why { background: var(--c-bg); }
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

.why-pillars {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.why-pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.why-pillars li:hover {
  border-color: var(--c-sage);
  transform: translateX(4px);
}
.why-pillars .num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 26px;
  color: var(--c-sage-2);
  line-height: 1;
  padding-top: 4px;
}
.why-pillars h3 {
  margin: 0 0 4px;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--c-ink);
}
.why-pillars p {
  margin: 0;
  color: var(--c-muted);
  font-size: 15px;
}

/* ---------- Process (pinned) ---------- */

.process { background: linear-gradient(180deg, var(--c-bg-2), var(--c-bg)); padding-bottom: 0; }
.process-pin {
  position: relative;
  min-height: 100vh;
}
.process-stage {
  position: relative;
  padding: 60px 28px 120px;
}
.process-line {
  width: 100%;
  height: 200px;
  margin-bottom: -120px;
  display: block;
}
.process-line path {
  fill: none;
  stroke: var(--c-sage-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: .9;
}
.process-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr; } }

.step {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 28px 26px 30px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-mid), transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
}
.step.in {
  opacity: 1; transform: translateY(0);
  box-shadow: var(--shadow-md);
  border-color: var(--c-sage);
}
.step-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .12em;
  color: var(--c-sage-2);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step h3 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--c-ink);
}
.step p { margin: 0; color: var(--c-muted); font-size: 15.5px; }

.process-art {
  margin: 60px auto 0;
  max-width: 880px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-line);
  background: var(--c-surface);
}

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

.contact { background: var(--c-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-meta {
  color: var(--c-muted);
  font-size: 15px;
  margin-top: 8px;
}
.contact-meta a { color: var(--c-navy); border-bottom: 1px solid var(--c-line-2); }
.contact-meta a:hover { color: var(--c-sage-2); border-color: var(--c-sage-2); }

.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  display: grid; gap: 16px;
}
.contact-form label {
  display: grid; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--c-ink-2);
  letter-spacing: .02em;
}
.contact-form input,
.contact-form textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--c-ink);
  background: var(--c-bg);
  border: 1px solid var(--c-line-2);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  width: 100%;
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-sage-2);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(138,169,142,0.18);
}

.btn .btn-check { width: 18px; height: 18px; opacity: 0; transform: scale(.6); transition: opacity var(--t-fast), transform var(--t-fast); }
.btn.sent .btn-label { opacity: .8; }
.btn.sent .btn-check { opacity: 1; transform: scale(1); }

.form-success {
  margin: 6px 0 0;
  color: var(--c-sage-2);
  font-weight: 600;
  font-size: 14px;
}

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

.site-footer {
  border-top: 1px solid var(--c-line);
  padding: 36px 0 44px;
  background: var(--c-bg-2);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.foot-brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--c-ink-2); font-size: 14px;
}
.foot-brand img { height: 36px; width: auto; }
.foot-brand p { margin: 0; line-height: 1.35; }
.foot-brand small { color: var(--c-muted); font-size: 12px; }
.copyright { color: var(--c-muted); font-size: 13px; margin: 0; }

/* ---------- Reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1),
              transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1; transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   v2 additions: hero bullets, trust row, problem/fix, pricing,
   testimonials, FAQ, calendar embed, mobile CTA bar
   ============================================================ */

.hero-bullets {
  list-style: none; padding: 0; margin: 18px 0 26px;
  display: grid; gap: 10px;
}
.hero-bullets li {
  position: relative; padding-left: 28px;
  color: var(--c-ink-2); font-size: 15.5px;
}
.hero-bullets li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-sage-soft);
  color: var(--c-navy);
  font-size: 12px; font-weight: 700;
}

.hero-guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 16px 0 0;
  font-size: 13.5px; color: var(--c-muted);
  background: rgba(255,255,255,0.6);
  padding: 10px 14px; border-radius: 999px;
  border: 1px solid var(--c-line);
}
.hero-guarantee .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-sage-2);
  box-shadow: 0 0 0 4px rgba(138,169,142,0.18);
}

/* Trust row under hero */
.trust-row {
  margin-top: 56px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--c-line);
}
.trust-row p {
  margin: 0; color: var(--c-muted);
  font-size: 12.5px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
}
.trust-row ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 14px 22px;
  padding: 0; margin: 0;
}
.trust-row li {
  color: var(--c-ink-2);
  font-family: var(--ff-display); font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
}

/* Problem/Fix */
.problem { background: var(--c-bg); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-list {
  list-style: none; padding: 0; margin: 0;
}
.problem-list li {
  position: relative; padding: 12px 0 12px 32px;
  border-top: 1px solid var(--c-line);
  color: var(--c-ink-2);
}
.problem-list li::before {
  content: "×";
  position: absolute; left: 4px; top: 10px;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #F4E4E2; color: #8C3A35;
  font-weight: 700; font-size: 14px;
}

/* Pricing */
.pricing { background: linear-gradient(180deg, var(--c-bg), var(--c-bg-2)); }
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform var(--t-fast), box-shadow var(--t-fast),
              border-color var(--t-fast);
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-sage);
  box-shadow: var(--shadow-md);
}
.price-card h3 {
  margin: 0;
  font-family: var(--ff-display); font-weight: 500;
  font-size: 22px; letter-spacing: -0.01em; color: var(--c-ink);
}
.price-card .price {
  margin: 4px 0 0;
  display: flex; align-items: baseline; gap: 10px;
}
.price-card .amt {
  font-family: var(--ff-display); font-weight: 500;
  font-size: 40px; color: var(--c-navy); letter-spacing: -0.02em;
}
.price-card .per {
  color: var(--c-muted); font-size: 14px;
}
.price-desc { margin: 0; color: var(--c-ink-2); font-size: 15px; }
.price-card ul {
  list-style: none; padding: 0; margin: 6px 0 18px;
  display: grid; gap: 8px;
}
.price-card ul li {
  position: relative; padding-left: 24px;
  color: var(--c-ink-2); font-size: 14.5px;
}
.price-card ul li::before {
  content: ""; position: absolute; left: 6px; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-sage-2);
}
.price-card-feature {
  border-color: var(--c-sage);
  box-shadow: 0 18px 44px rgba(10,51,64,0.10);
  transform: translateY(-6px);
}
.price-card-feature .amt { color: var(--c-sage-2); }
.ribbon {
  position: absolute; top: -12px; right: 18px;
  background: var(--c-navy); color: #fff;
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; font-weight: 600;
}

/* Testimonials */
.testimonials { background: var(--c-bg); }
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.t-card blockquote {
  margin: 0 0 18px;
  font-family: var(--ff-display);
  font-weight: 500; font-size: 18px;
  line-height: 1.45; color: var(--c-ink);
  position: relative; padding-left: 18px;
}
.t-card blockquote::before {
  content: "“";
  position: absolute; left: -2px; top: -8px;
  font-size: 38px; color: var(--c-sage-2); line-height: 1;
}
.t-card figcaption {
  color: var(--c-muted); font-size: 13.5px;
}
.t-card figcaption strong {
  color: var(--c-ink-2); font-weight: 600;
  font-family: var(--ff-body);
}
.t-note {
  text-align: center; margin: 26px 0 0;
  color: var(--c-muted); font-size: 13px;
}

/* FAQ */
.faq { background: linear-gradient(180deg, var(--c-bg), var(--c-bg-2)); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-list details[open] {
  border-color: var(--c-sage);
  box-shadow: var(--shadow-md);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 17.5px;
  color: var(--c-ink);
  display: flex; justify-content: space-between; gap: 16px;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--ff-body); font-weight: 400;
  font-size: 22px; color: var(--c-sage-2);
  transition: transform var(--t-fast);
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 12px 0 0;
  color: var(--c-ink-2);
  font-size: 15px;
}

/* Contact form additions */
.form-title {
  margin: 0 0 4px;
  font-family: var(--ff-display); font-weight: 500;
  font-size: 18px; color: var(--c-ink);
}
.contact-form .check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--c-muted); font-weight: 500;
}
.contact-form .check input {
  width: auto; padding: 0; margin: 0;
  accent-color: var(--c-sage-2);
}
.form-fineprint {
  margin: 6px 0 0;
  color: var(--c-muted); font-size: 12px; text-align: center;
}

/* Calendar embed */
.calendar-embed {
  margin-top: 22px;
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 460px;
}
.calendar-embed iframe {
  width: 100%; height: 560px;
  border: 0; display: block;
  background: var(--c-surface);
}
.cal-fallback {
  position: absolute; inset: auto 0 0 0;
  text-align: center; margin: 0; padding: 12px;
  color: var(--c-muted); font-size: 13px;
  background: linear-gradient(180deg, transparent, var(--c-surface) 50%);
  pointer-events: none;
}
.cal-fallback a { pointer-events: auto; color: var(--c-navy); }

/* Footer */
.footer-grid { align-items: flex-start; }
.foot-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 18px; flex-wrap: wrap;
}
.foot-links a {
  color: var(--c-ink-2); font-size: 14px; font-weight: 500;
}
.foot-links a:hover { color: var(--c-sage-2); }

/* Mobile sticky CTA bar */
.mobile-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: var(--c-navy); color: #fff;
  text-align: center;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600; font-size: 15px;
  box-shadow: 0 14px 28px rgba(10,51,64,0.25);
  text-decoration: none;
}
.mobile-cta:hover { color: #fff; background: var(--c-navy-2); }
@media (max-width: 720px) {
  .mobile-cta { display: block; }
  /* prevent footer being hidden behind CTA */
  .site-footer { padding-bottom: 96px; }
}

/* ===== About / Founder section ===== */
.section.about { background: linear-gradient(180deg, #fff 0%, #f6f9fb 100%); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 48px;
  align-items: center;
}
.about-visual {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.about-visual picture,
.about-visual img {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  box-shadow:
    0 18px 36px rgba(10, 51, 64, 0.18),
    0 2px 6px rgba(10, 51, 64, 0.08);
}
.about-visual figcaption {
  font-size: 14px;
  color: var(--c-muted, #5a6b73);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.about-copy .lead { margin-top: 10px; }
.about-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
  display: grid;
  gap: 10px;
}
.about-bullets li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
}
.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--c-navy, #0a3340);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 12 10 18 20 6'/></svg>");
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }
  .about-visual img,
  .about-visual picture { max-width: 260px; }
  .about-visual { align-items: flex-start; }
}

/* Form sending state */
.contact-form button.sending { opacity: 0.7; cursor: progress; }
.form-error {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff1f1;
  color: #8a1a1a;
  font-size: 14px;
  border: 1px solid #f6c8c8;
}

/* Calendar placeholder (until cal.com integration ships) */
.calendar-embed .cal-placeholder {
  padding: 22px 24px;
  border: 1px dashed rgba(10,51,64,0.18);
  border-radius: 14px;
  background: #f6f9fb;
  color: #233a44;
  font-size: 15px;
  line-height: 1.55;
}
.calendar-embed .cal-placeholder p { margin: 0 0 8px; }
.calendar-embed .cal-placeholder p:last-child { margin-bottom: 0; }

/* ============================================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================================ */

/* Tablets and smaller (max-width: 768px) */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  
  /* Hero */
  .hero { padding: clamp(40px, 6vw, 60px) 0 clamp(50px, 7vw, 80px); }
  .hero-visual { display: none; } /* Hide the complex floating card visual on mobile */
  .hero-grid { gap: 20px; }
  .hero-logo img { width: 120px; }
  .h-display { font-size: clamp(32px, 8vw, 42px); margin-bottom: 16px; }
  .hero-copy .lead { font-size: 16px; }
  .cta-row { flex-direction: column; gap: 10px; }
  .cta-row .btn { width: 100%; text-align: center; }
  .hero-guarantee { font-size: 12px; padding: 8px 12px; }
  .hero-bullets li { font-size: 14.5px; }
  
  /* Trust row */
  .trust-row { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 36px; }
  .trust-row ul { gap: 8px 16px; }
  .trust-row li { font-size: 15px; }
  
  /* Sections */
  .section { padding: clamp(50px, 8vw, 80px) 0; }
  .section-head { margin-bottom: clamp(32px, 5vw, 48px); }
  .h-section { font-size: clamp(26px, 6vw, 34px); }
  
  /* Problem */
  .problem-grid { gap: 40px; }
  
  /* Services */
  .service-card { padding: 22px 20px 20px; }
  .service-card h3 { font-size: 18px; }
  
  /* Why */
  .why-grid { gap: 36px; }
  .why-pillars li { padding: 18px 20px; }
  .why-pillars .num { font-size: 22px; }
  .why-pillars h3 { font-size: 17px; }
  
  /* About / Founder */
  .about-grid { gap: 24px; }
  .about-visual { align-items: center; }
  .about-visual img,
  .about-visual picture { 
    max-width: 280px; 
    aspect-ratio: auto;
    object-fit: contain;
  }
  
  /* Process */
  .process-pin { min-height: auto; }
  .process-line { display: none; }
  .process-stage { padding: 30px 20px 60px; }
  .process-art { margin-top: 30px; }
  .step { padding: 22px 20px 24px; }
  .step h3 { font-size: 19px; }
  
  /* Pricing */
  .price-card { padding: 26px 22px 22px; }
  .price-card .amt { font-size: 34px; }
  .price-card h3 { font-size: 20px; }
  
  /* Testimonials */
  .t-card { padding: 20px 18px; }
  .t-card blockquote { font-size: 16px; }
  
  /* FAQ */
  .faq-list details { padding: 14px 18px; }
  .faq-list summary { font-size: 16px; }
  
  /* Contact */
  .contact-grid { gap: 36px; }
  .calendar-embed { min-height: 200px; }
  .contact-form { padding: 22px 18px; }
  
  /* Footer */
  .footer-grid { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-links { gap: 12px; }
  
  /* Scroll hint */
  .scroll-hint { display: none; }
}

/* Small phones (max-width: 420px) */
@media (max-width: 420px) {
  .container { padding: 0 16px; }
  .h-display { font-size: 28px; }
  .h-section { font-size: 24px; }
  .lead { font-size: 15px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .brand img { height: 42px; }
  .nav-inner { padding-top: 12px; padding-bottom: 12px; }
  .hero-guarantee { flex-direction: row; text-align: left; }
  .price-card .amt { font-size: 30px; }
  .about-visual img,
  .about-visual picture { max-width: 220px; }
}
