:root {
  --ink: #17130f;
  --ink-soft: #3e382f;
  --muted: #756b5c;
  --paper: #f3eee4;
  --paper-light: #fbf8f1;
  --clay: #e4dac8;
  --stone: #c9bba4;
  --brass: #9a7440;
  --brass-light: #d3aa74;
  --olive: #4c5845;
  --line: rgba(23, 19, 15, 0.12);
  --line-dark: rgba(243, 238, 228, 0.14);
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --container: 1240px;
  --gutter: 28px;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad { padding: clamp(72px, 8vw, 116px) 0; }
.section-tight { padding: clamp(48px, 6vw, 92px) 0 clamp(68px, 8vw, 116px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 228, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand em { color: var(--brass); font-style: italic; }
.brand-mark {
  width: 21px;
  height: 21px;
  border: 1px solid currentColor;
  border-radius: 3px;
  position: relative;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 1px;
  background: currentColor;
}
.brand-mark::before { top: 8px; transform: rotate(-28deg); }
.brand-mark::after { bottom: 7px; background: var(--brass); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
}
.desktop-nav a:hover { color: var(--brass); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { background: var(--ink); color: var(--paper-light); border-color: var(--ink); }
.button-dark:hover { background: #000; }
.button-light { background: var(--paper-light); color: var(--ink); border-color: var(--paper-light); }
.button-outline { border-color: rgba(23, 19, 15, 0.28); color: var(--ink); }
.button-outline:hover { background: var(--clay); }
.text-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 3px;
}

.menu-button,
.mobile-nav { display: none; }

.kicker {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}
h1 {
  margin-bottom: 24px;
  font-size: 100px;
  line-height: 0.94;
  max-width: 8.5ch;
}
h2 {
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1;
  max-width: 12ch;
}
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.25; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.hero-lead {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.62;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 32px 0; }
.hero-actions.centered { justify-content: center; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 680px;
}
.hero-proof span {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}
.hero-proof span:last-child { border-right: 0; }

.kitchen-carousel {
  position: relative;
  min-height: clamp(480px, 58vw, 690px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--clay);
  box-shadow: 0 28px 90px -50px rgba(23, 19, 15, 0.45);
}
.carousel-track,
.carousel-slide {
  position: absolute;
  inset: 0;
}
.carousel-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms ease, transform 720ms ease;
}
.carousel-slide.active { opacity: 1; transform: scale(1); }
.carousel-ui {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  background: rgba(15, 12, 9, 0.78);
  color: var(--paper-light);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.carousel-ui > span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
.carousel-controls { display: flex; align-items: center; gap: 12px; }
.carousel-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--paper-light);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.carousel-dots { display: flex; gap: 6px; }
.carousel-dots span {
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}
.carousel-dots span.active { background: var(--brass-light); }

.problem { background: var(--paper-light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split-grid,
.mechanism-grid,
.demo-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 86px);
}
.problem-list { display: grid; border-top: 1px solid var(--line); }
.problem-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.problem-list article span { grid-row: 1 / span 2; }
.problem-list article h3,
.problem-list article p { grid-column: 2; }
.problem-list article h3 { margin-bottom: 0; }
.problem-list span,
.deliverables-grid span {
  color: var(--brass);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
}
.problem-list p,
.section-head p,
.mechanism-steps p,
.sales-uses p,
.deliverables-grid p,
.process-grid p,
.tier p,
.faq-list p,
.footer p { color: var(--muted); }

.section-head { margin-bottom: 48px; max-width: 850px; }
.section-head.narrow { max-width: 780px; text-align: center; margin-left: auto; margin-right: auto; }
.section-head.narrow h2 { margin-left: auto; margin-right: auto; }
.section-head.narrow p { margin-left: auto; margin-right: auto; max-width: 62ch; }

.image-panel {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--clay);
}
.image-panel.tall { min-height: 560px; }
.mechanism-steps { border-top: 1px solid var(--line); }
.mechanism-steps article { padding: 28px 0; border-bottom: 1px solid var(--line); }
.mechanism-steps span,
.tier-kicker,
.process-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--brass);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.sales-uses {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sales-uses article {
  padding: 28px 22px 30px;
  border-right: 1px solid var(--line);
}
.sales-uses article:last-child { border-right: 0; }

.deliverables-grid,
.process-grid,
.pricing-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.deliverables-grid article,
.process-grid article,
.tier {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.45);
}
.deliverables-grid article:nth-child(3n),
.process-grid article:nth-child(4),
.tier:last-child { border-right: 0; }
.deliverables-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.process { background: var(--clay); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid article { background: rgba(243, 238, 228, 0.52); }

.demo { background: var(--ink); color: var(--paper-light); }
.demo h2 { color: var(--paper-light); }
.demo p { color: rgba(243, 238, 228, 0.72); }
.demo .kicker { color: var(--brass-light); }
.demo-board {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  min-height: 520px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #100d0a;
}
.demo-main { margin: 0; min-height: 520px; }
.demo-sheet {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line-dark);
}
.demo-sheet span {
  color: var(--brass-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.demo-sheet h3 {
  margin-top: 18px;
  color: var(--paper-light);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.testimonials {
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.testimonial-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: end;
  margin-bottom: 42px;
}
.testimonial-head p:last-child {
  margin-bottom: 8px;
  max-width: 58ch;
  color: var(--muted);
}
.testimonial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 280px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper-light);
}
.feature-quote {
  padding: 48px;
}
.feature-quote span {
  display: block;
  margin-bottom: 22px;
  color: var(--brass-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.feature-quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  line-height: 1.06;
}
.testimonial-feature footer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 38px;
  border-left: 1px solid var(--line-dark);
  color: rgba(243, 238, 228, 0.72);
}
.testimonial-feature strong,
.testimonial-card strong {
  color: inherit;
  font-size: 15px;
}
.testimonial-feature span,
.testimonial-card span {
  color: inherit;
  font-size: 12px;
}
.testimonial-shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 31%);
  gap: 16px;
  margin-top: 16px;
  padding: 8px 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--stone) transparent;
}
.testimonial-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(243, 238, 228, 0.68);
  scroll-snap-align: start;
}
.testimonial-card blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.pricing { background: var(--paper-light); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tier {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  border-bottom: 0;
}
.tier h3 { font-family: var(--font-display); font-size: 34px; font-weight: 400; }
.tier .price { font-family: var(--font-display); font-size: 66px; line-height: 0.95; letter-spacing: 0; }
.tier ul { margin: 4px 0 10px; padding: 0; list-style: none; display: grid; gap: 10px; }
.tier li { color: var(--ink-soft); font-size: 14px; }
.tier li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 10px; background: var(--brass); }
.tier .button { margin-top: auto; align-self: flex-start; }
.tier.recommended { background: var(--ink); color: var(--paper-light); }
.tier.recommended p,
.tier.recommended li { color: rgba(243, 238, 228, 0.76); }
.tier.recommended .tier-kicker { color: var(--brass-light); }
.tier.recommended li::before { background: var(--brass-light); }

.faq h2 { max-width: 9ch; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.15;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 0 24px; max-width: 72ch; }

.final-cta { text-align: center; }
.final-cta h2 { margin-left: auto; margin-right: auto; max-width: 10ch; }
.final-cta p { margin-left: auto; margin-right: auto; max-width: 56ch; color: var(--muted); }

.footer {
  background: #0f0c09;
  color: rgba(243, 238, 228, 0.74);
  padding: 72px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding-bottom: 46px;
  border-bottom: 1px solid var(--line-dark);
}
.brand-footer { color: var(--paper-light); margin-bottom: 20px; }
.footer-brand p { max-width: 34ch; }
.footer h3 {
  margin: 0 0 18px;
  color: rgba(243, 238, 228, 0.55);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer a { display: block; margin-bottom: 10px; color: rgba(243, 238, 228, 0.74); }
.footer a:hover { color: var(--paper-light); }
.footer-link { color: var(--brass-light) !important; font-weight: 700; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 26px;
  color: rgba(243, 238, 228, 0.48);
  font-size: 12px;
}
.footer-bottom a { margin: 0; }

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-cta { display: none; }
  .menu-button {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .menu-button span { width: 18px; height: 1px; background: var(--ink); }
  .mobile-nav.open { display: grid; }
  .mobile-nav {
    padding: 10px var(--gutter) 24px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .mobile-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 700; }
  .hero-grid,
  .split-grid,
  .mechanism-grid,
  .demo-grid,
  .testimonial-head,
  .faq-grid { grid-template-columns: 1fr; }
  h1 { max-width: 11ch; font-size: 84px; }
  h2 { font-size: 56px; }
  .testimonial-feature { grid-template-columns: 1fr; }
  .testimonial-feature footer { border-left: 0; border-top: 1px solid var(--line-dark); }
  .testimonial-shelf { grid-auto-columns: minmax(310px, 46%); }
  .sales-uses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sales-uses article:nth-child(2n) { border-right: 0; }
  .sales-uses article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .deliverables-grid,
  .pricing-menu { grid-template-columns: 1fr; }
  .deliverables-grid article,
  .tier { border-right: 0; }
  .deliverables-grid article:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .deliverables-grid article:last-child,
  .tier:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid article:nth-child(2n) { border-right: 0; }
  .process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; }
  .section-pad { padding: 64px 0; }
  .brand { font-size: 20px; }
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  .demo-sheet h3 { font-size: 32px; }
  .feature-quote { padding: 32px; }
  .feature-quote blockquote { font-size: 31px; }
  .testimonial-feature footer { padding: 28px 32px; }
  .testimonial-shelf { grid-auto-columns: 86%; }
  .testimonial-card { min-height: 320px; padding: 26px; }
  .hero-proof,
  .process-grid,
  .sales-uses,
  .demo-board,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-proof span,
  .sales-uses article,
  .process-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof span:last-child,
  .sales-uses article:last-child,
  .process-grid article:last-child { border-bottom: 0; }
  .kitchen-carousel { min-height: 430px; }
  .carousel-ui { align-items: flex-start; flex-direction: column; }
  .demo-main { min-height: 320px; }
  .demo-sheet { border-left: 0; border-top: 1px solid var(--line-dark); padding: 28px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
