/* Luminary Studio - Design Tokens v1 (2026-07-05)
   Source of truth for the premium redesign. Matches brand/tokens.css,
   BRAND_GUIDELINES.md, and the v3 business card. */

:root {
  --cream: #fff7e6;
  --paper: #fffdf6;
  --charcoal: #121412;
  --espresso: #1e2320;
  --amber: #f2a20c;
  --sun: #f2c66d;
  --peach: #ef9f7d;
  --coral: #d7604f;
  --olive: #3e5a48;
  --olive-deep: #34503f;
  --mint: #dcecdf;
  --line: #eadfc7;
  --ink-soft: #6a6f66;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Manrope", -apple-system, sans-serif;
  --h1: clamp(2.4rem, 6vw, 4.5rem);
  --h2: clamp(1.8rem, 4vw, 3rem);
  --h3: clamp(1.3rem, 2.5vw, 1.75rem);
  --body: 1.0625rem;
  --label: 0.75rem;
  --tracking-label: 0.22em;
  --leading-tight: 1.05;
  --leading-body: 1.65;
  --measure: 62ch;
  --space-section: clamp(4rem, 10vw, 8rem);
  --radius-btn: 9px;
  --radius-card: 8px;
  --keyline: 1.5px solid var(--sun);
  --shadow-max: 0 1px 2px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font: 500 var(--body) / var(--leading-body) var(--font-ui);
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-ui);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-weight: 650;
  line-height: var(--leading-tight);
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  margin-bottom: 1.25rem;
  font-size: var(--h1);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: var(--h2);
}

h3 {
  margin-bottom: 0.45rem;
  font-size: var(--h3);
}

p {
  max-width: var(--measure);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section-cream {
  background: var(--cream);
}

.section-paper {
  background: var(--paper);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--olive);
  font: 800 var(--label) / 1.35 var(--font-ui);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.eyebrow-on-dark {
  color: var(--sun);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 0 1.15rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border: 1px solid var(--amber);
  background: var(--amber);
  color: var(--charcoal);
}

.btn-secondary {
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
}

.anchor {
  position: relative;
  top: -110px;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(234, 223, 199, 0.9);
  background: rgba(255, 247, 230, 0.92);
  padding: 0.9rem max(1rem, calc((100vw - 1180px) / 2));
  backdrop-filter: blur(14px);
  max-width: 100vw;
}

.site-header > * {
  min-width: 0;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-wordmark {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.brand-wordmark strong {
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 650;
}

.brand-wordmark small {
  color: var(--olive);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.5rem);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  min-width: 0;
}

.nav a {
  padding: 0.3rem 0;
}

.nav a:hover {
  color: var(--charcoal);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--charcoal);
  border-radius: var(--radius-btn);
  padding: 0 0.95rem;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero {
  padding-block: clamp(4.5rem, 10vw, 8.5rem) clamp(3.5rem, 8vw, 6.5rem);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.4rem, 7vw, 5.5rem);
}

.hero-grid > *,
.two-column > *,
.contact-grid > *,
.section-heading,
.hero-copy {
  min-width: 0;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.35rem;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  margin: 0;
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.proof-strip span + span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.proof-pair {
  --proof-reveal: 0%;
  min-width: 0;
  margin: 0;
}

.proof-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: 0 24px 55px rgba(30, 35, 32, 0.12);
}

.proof-browser-bar {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0.78rem 0.9rem;
}

.proof-browser-bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.proof-browser-bar i:nth-child(2) {
  background: var(--sun);
}

.proof-browser-bar i:nth-child(3) {
  background: var(--olive);
}

.proof-browser-bar span {
  min-width: 0;
  margin-left: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-stage {
  position: relative;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  background: #e9e9e4;
}

.proof-state {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proof-before {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #efefe9;
  color: #353b38;
  font-family: Arial, sans-serif;
}

.before-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid #c9cbc5;
  background: #f8f8f4;
  padding: clamp(0.55rem, 1.7vw, 0.9rem);
  font-size: clamp(0.48rem, 1.1vw, 0.72rem);
  font-weight: 700;
}

.before-nav span {
  color: #7d817e;
  font-weight: 400;
  white-space: nowrap;
}

.before-copy {
  display: grid;
  max-width: 72%;
  align-content: center;
  justify-items: start;
  gap: clamp(0.3rem, 1.2vw, 0.75rem);
  padding: clamp(1rem, 4vw, 3rem);
}

.before-copy small {
  color: #747974;
  font-size: clamp(0.45rem, 1vw, 0.68rem);
  text-transform: uppercase;
}

.before-copy b {
  max-width: 12ch;
  color: #303532;
  font-family: Georgia, serif;
  font-size: clamp(1.15rem, 3.6vw, 2.7rem);
  font-weight: 400;
  line-height: 1.08;
}

.before-copy p {
  margin: 0;
  color: #777c78;
  font-size: clamp(0.52rem, 1.15vw, 0.8rem);
  line-height: 1.5;
}

.before-copy em {
  display: inline-block;
  border: 1px solid #828681;
  padding: clamp(0.28rem, 1vw, 0.5rem) clamp(0.55rem, 1.4vw, 0.9rem);
  font-size: clamp(0.48rem, 1vw, 0.66rem);
  font-style: normal;
}

.before-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.4rem, 1vw, 0.75rem);
  padding: clamp(0.55rem, 1.5vw, 0.9rem);
}

.before-blocks span {
  height: clamp(18px, 3.5vw, 34px);
  background: #d8dad5;
}

.proof-after {
  z-index: 1;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--proof-reveal)) 0 0);
  transition: clip-path 1400ms cubic-bezier(0.22, 1, 0.36, 1) 300ms;
}

.proof-after picture,
.proof-after img {
  width: 100%;
  height: 100%;
}

.proof-after img {
  object-fit: cover;
  object-position: top center;
}

.proof-sweep {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: var(--proof-reveal);
  width: 2px;
  background: var(--amber);
  box-shadow: 0 0 20px 5px rgba(242, 162, 12, 0.35);
  transform: translateX(-1px);
  transition: left 1400ms cubic-bezier(0.22, 1, 0.36, 1) 300ms;
}

.proof-interactive .proof-after,
.proof-interactive .proof-sweep {
  transition-duration: 80ms;
  transition-delay: 0ms;
}

.proof-caption {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 0.1rem 0;
}

.proof-caption > span {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-control {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-control input {
  width: 100%;
  accent-color: var(--amber);
}

.audience-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.audience-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-block: 1rem;
}

.audience-list span {
  color: var(--olive);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.audience-list b {
  color: var(--amber);
  font-size: 0.82rem;
  line-height: 1;
}

.section-heading {
  display: grid;
  gap: 0.8rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.proof-layout {
  display: grid;
  gap: clamp(2.2rem, 7vw, 6rem);
  align-items: start;
}

.proof-layout .section-heading {
  margin-bottom: 0;
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.18rem;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.proof-notes {
  display: grid;
  border-top: var(--keyline);
}

.proof-notes article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-block: 1.35rem;
}

.proof-notes article > span {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1;
}

.proof-notes h3 {
  font-size: 1.35rem;
}

.proof-notes p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 1.4rem);
}

.work-frame {
  display: grid;
  min-width: 0;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: clamp(0.55rem, 2.4vw, 0.8rem);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-frame:hover,
.work-frame:focus-visible {
  border-color: rgba(242, 162, 12, 0.55);
  box-shadow: 0 16px 28px rgba(30, 35, 32, 0.08);
  transform: translateY(-3px);
}

.work-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.28 / 1;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-card) - 5px);
  object-fit: cover;
  object-position: top center;
  transition: transform 480ms ease, filter 180ms ease;
}

.work-frame:hover img,
.work-frame:focus-visible img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.015);
}

.work-frame span {
  color: var(--olive);
  font-size: clamp(0.68rem, 2.7vw, 0.76rem);
  font-weight: 800;
  letter-spacing: clamp(0.08em, 0.7vw, 0.18em);
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.work-frame-featured span {
  color: var(--charcoal);
}

.work-grid-secondary {
  margin-top: clamp(1rem, 3vw, 1.4rem);
}

.work-grid-secondary .work-frame {
  background: transparent;
}

.problem-section {
  background: var(--olive);
  color: var(--paper);
  padding-block: clamp(4rem, 10vw, 8rem);
}

.problem-frame {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  border: var(--keyline);
  padding: clamp(1.25rem, 5vw, 4.25rem);
}

.problem-mark {
  width: 56px;
}

.problem-section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.3rem, 6vw, 4.5rem);
}

.problem-lines {
  display: grid;
  gap: 1rem;
}

.problem-lines p {
  margin: 0;
  border-top: 1px solid rgba(242, 198, 109, 0.45);
  padding-top: 1rem;
  color: rgba(255, 253, 246, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.services-section {
  position: relative;
}

.price-list {
  border-top: var(--keyline);
}

.price-list article {
  display: grid;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.2rem, 3vw, 1.65rem) 0;
}

.price-list .price-primary {
  border-top: 3px solid var(--amber);
  background: color-mix(in srgb, var(--amber) 8%, transparent);
  padding-inline: clamp(0.8rem, 2vw, 1.2rem);
}

.price-label {
  color: var(--olive) !important;
  font-size: 0.75rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.price-list h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.price-list p {
  margin: 0;
  color: var(--ink-soft);
}

.price-list small {
  display: block;
  margin-top: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.price-list strong {
  color: var(--olive);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 650;
  white-space: nowrap;
}

.price-addons {
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
}

.price-cta {
  margin-top: 1.4rem;
}

.two-column {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
}

.speed-copy {
  display: grid;
  gap: 1rem;
}

.speed-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.process-line {
  display: grid;
  gap: 1.4rem;
  border-top: var(--keyline);
}

.process-line article {
  display: grid;
  gap: 0.4rem;
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.process-line span {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 650;
  line-height: 1;
}

.process-line p {
  margin: 0;
  color: var(--ink-soft);
}

.fit-section {
  background: var(--olive);
  color: var(--paper);
}

.fit-frame {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  border-block: 1px solid rgba(242, 198, 109, 0.55);
  padding-block: clamp(2rem, 5vw, 4rem);
}

.fit-frame h2,
.fit-frame h3 {
  color: var(--paper);
}

.fit-frame h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.fit-columns {
  display: grid;
  gap: 2rem;
}

.fit-columns > div {
  min-width: 0;
}

.fit-columns h3 {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(242, 198, 109, 0.4);
}

.fit-columns ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-columns li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(255, 253, 246, 0.82);
}

.fit-columns li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.faq-list {
  display: grid;
  border-top: var(--keyline);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}

.faq-list summary {
  cursor: pointer;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.2;
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
}

.review-frame {
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  border-block: var(--keyline);
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

.review-frame h2 {
  margin-bottom: 0;
}

.review-copy {
  display: grid;
  justify-items: start;
  gap: 1.25rem;
}

.review-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.2rem);
}

.roast-section {
  background:
    linear-gradient(90deg, rgba(220, 236, 223, 0.34), rgba(255, 253, 246, 0)),
    var(--paper);
}

.roast-frame {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  border: var(--keyline);
  background: var(--cream);
  padding: clamp(1.3rem, 5vw, 3.5rem);
}

.roast-frame h2 {
  max-width: 760px;
  margin: 0;
}

.roast-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.roast-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
}

.contact-section {
  background: var(--olive);
  color: var(--paper);
  padding-block: var(--space-section);
}

.contact-grid {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.contact-copy h2 {
  max-width: 700px;
  color: var(--paper);
  font-size: clamp(2.2rem, 6vw, 4.35rem);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 253, 246, 0.82);
}

.contact-promise {
  border-left: 3px solid var(--sun);
  padding-left: 1rem;
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid rgba(242, 198, 109, 0.35);
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--paper);
  border-bottom-color: currentColor;
}

.contact-form {
  display: grid;
  gap: 1rem;
  border: var(--keyline);
  padding: clamp(1.2rem, 4vw, 2rem);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 246, 0.45);
  border-radius: var(--radius-btn);
  background: var(--paper);
  color: var(--charcoal);
  padding: 0.9rem 0.95rem;
}

.contact-form select {
  min-height: 53px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.optional {
  color: rgba(255, 253, 246, 0.62);
  font-size: 0.64rem;
}

.honey-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.contact-form button {
  min-height: 54px;
  border: 1px solid var(--amber);
  border-radius: var(--radius-btn);
  background: var(--amber);
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 800;
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 246, 0.72);
  font-size: 0.92rem;
}

.form-status {
  margin: 0;
  border: 1px solid var(--sun);
  border-radius: 4px;
  background: rgba(242, 162, 12, 0.12);
  color: var(--paper);
  padding: 0.8rem;
  font-size: 0.9rem;
  font-weight: 700;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.voice-agent {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 0.7rem;
  pointer-events: none;
}

.voice-agent button,
.voice-agent a {
  pointer-events: auto;
}

.voice-agent-launch {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid var(--sun);
  border-radius: var(--radius-btn);
  background: var(--charcoal);
  box-shadow: 0 10px 28px rgba(18, 20, 18, 0.2);
  color: var(--paper);
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
  font-weight: 800;
}

.voice-agent-launch svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--sun);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.voice-agent-launch:hover,
.voice-agent-launch:focus-visible {
  background: var(--olive-deep);
}

.voice-agent-panel {
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100dvh - 92px);
  overflow-y: auto;
  border: 1px solid var(--sun);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 56px rgba(18, 20, 18, 0.24);
  color: var(--charcoal);
  padding: 1.2rem;
  pointer-events: auto;
}

.voice-agent-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.voice-agent-header > div {
  display: grid;
  gap: 0.25rem;
}

.voice-agent-kicker {
  color: var(--olive);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.voice-agent-header strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
}

.voice-agent-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.voice-agent-copy {
  margin: 1rem 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.voice-agent-status {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 0.7rem 0.8rem;
}

.voice-agent-status > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink-soft);
}

.voice-agent-status p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
}

.voice-agent-status[data-voice-status="connecting"] > span,
.voice-agent-status[data-voice-status="thinking"] > span {
  background: var(--amber);
  animation: voicePulse 1.1s ease-in-out infinite;
}

.voice-agent-status[data-voice-status="listening"] > span {
  background: var(--olive);
  animation: voicePulse 1.35s ease-in-out infinite;
}

.voice-agent-status[data-voice-status="speaking"] > span {
  background: var(--peach);
}

.voice-agent-status[data-voice-status="error"] > span {
  background: var(--coral);
}

.voice-agent-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.voice-agent-start,
.voice-agent-stop,
.voice-agent-handoff {
  min-height: 48px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  padding: 0.7rem 0.9rem;
  font-weight: 800;
}

.voice-agent-start {
  border: 1px solid var(--amber);
  background: var(--amber);
  color: var(--charcoal);
}

.voice-agent-stop {
  border: 1px solid var(--charcoal);
  background: transparent;
  color: var(--charcoal);
}

.voice-agent-handoff {
  width: 100%;
  margin-top: 0.7rem;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--paper);
}

.voice-agent-start:disabled,
.voice-agent-stop:disabled {
  cursor: wait;
  opacity: 0.62;
}

.voice-agent button:focus-visible,
.voice-agent a:focus-visible {
  outline: 3px solid rgba(242, 162, 12, 0.42);
  outline-offset: 3px;
}

.voice-agent-privacy {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.5;
}

.voice-agent-text-link {
  display: inline-block;
  margin-top: 0.65rem;
  border-bottom: 1px solid var(--olive);
  color: var(--olive-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

@keyframes voicePulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.86);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.footer {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-lockup img {
  width: min(238px, 72vw);
}

.footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 300ms ease,
    transform 300ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1fr);
  }

  .proof-layout,
  .review-frame {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .fit-frame {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .fit-columns,
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-frame img {
    aspect-ratio: 4 / 3;
  }

  .work-frame-featured {
    grid-column: 1 / -1;
  }

  .work-frame-featured img {
    aspect-ratio: 16 / 7;
  }

  .price-list article {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .price-list strong {
    text-align: right;
  }

  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .process-line article {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .process-line article:first-child {
    padding-left: 0;
  }

  .process-line article:nth-child(even) {
    border-right: 0;
  }

  .process-line article:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    padding-right: 0;
  }
}

@media (min-width: 1080px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-line {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-line article:last-child {
    grid-column: auto;
  }

  .process-line article:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .process-line article:last-child {
    border-right: 0;
  }

  .roast-frame {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
  }

  .hero-lede,
  .hero-copy .eyebrow {
    max-width: 32ch;
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 0.75rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 32px);
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
  }

  .site-header {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.08rem, 10vw, 2.7rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  p {
    max-width: 100%;
  }

  .brand-wordmark strong {
    font-size: 1rem;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .site-header {
    gap: 0.7rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .header-cta {
    max-width: 148px;
    text-align: center;
  }

  .proof-stage {
    aspect-ratio: 4 / 5;
  }

  .proof-caption {
    gap: 0.55rem;
  }

  .proof-control {
    grid-template-columns: auto minmax(70px, 1fr) auto;
    gap: 0.4rem;
  }

  .audience-list {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .proof-strip {
    display: grid;
  }

  .proof-strip span + span::before {
    display: none;
  }

  .contact-details {
    letter-spacing: 0.08em;
  }

  .voice-agent {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
  }

  .voice-agent-panel {
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 84px);
  }

  .voice-agent-launch {
    width: 48px;
    min-height: 48px;
    border-radius: 50%;
    padding: 0;
  }

  .voice-agent-launch span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .voice-agent-status > span {
    animation: none !important;
  }
}

@media print {
  .voice-agent {
    display: none;
  }
}
