:root {
  --cream: #f4efe7;
  --paper: #fbf8f2;
  --wine: #661b2b;
  --wine-dark: #3b101b;
  --ink: #171411;
  --muted: #5f5750;
  --mustard: #b28a28;
  --line: rgba(23, 20, 17, 0.14);
  --shadow: 0 30px 80px rgba(57, 32, 25, 0.18);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Sora", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

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

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-mark sup {
  color: var(--wine);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0;
  vertical-align: top;
}

.brand-divider {
  width: 1px;
  height: 25px;
  background: var(--line);
}

.brand-line {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 66px;
  min-height: 780px;
  padding-block: 84px 110px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 13px;
  background: currentColor;
  vertical-align: middle;
}

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

h1,
h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

h1 {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: clamp(58px, 6vw, 88px);
}

h1 em,
h2 em {
  color: var(--wine);
  font-weight: 600;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 34px;
  color: #403a35;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 2px;
  padding: 0 25px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--wine);
  color: white;
  box-shadow: 0 15px 35px rgba(102, 27, 43, 0.23);
}

.button-primary:hover {
  background: var(--wine-dark);
  box-shadow: 0 18px 42px rgba(102, 27, 43, 0.3);
}

.button-dark {
  width: 100%;
  margin-top: 26px;
  background: var(--ink);
  color: white;
}

.text-link {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
}

.hero-facts {
  display: flex;
  gap: 0;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 128px;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.hero-facts li + li {
  padding-left: 26px;
}

.hero-facts strong {
  display: block;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.hero-facts span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  padding: 18px 18px 88px;
  background: #e7ded0;
  border-radius: 220px 220px 8px 8px;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 70%;
  height: 65%;
  border: 1px solid rgba(178, 138, 40, 0.55);
  border-radius: 240px 240px 0 0;
}

.hero-frame img {
  width: 100%;
  height: 520px;
  border-radius: 200px 200px 2px 2px;
  object-fit: cover;
  object-position: 58% center;
}

.capacity-card {
  position: absolute;
  right: 36px;
  bottom: 28px;
  left: 36px;
  padding: 18px 20px 17px;
  background: rgba(251, 248, 242, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.capacity-topline,
.capacity-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.capacity-topline {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.capacity-topline strong {
  color: var(--wine);
  font-weight: 700;
}

.capacity-track {
  height: 6px;
  margin: 14px 0 9px;
  overflow: hidden;
  background: #ddd4c6;
}

.capacity-track span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--wine), var(--mustard));
}

.capacity-labels {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stamp {
  position: absolute;
  bottom: -48px;
  left: -42px;
  width: 132px;
  height: 132px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--wine);
  color: white;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: 0 20px 40px rgba(63, 15, 28, 0.26);
}

.hero-stamp span {
  font-family: var(--serif);
  font-size: 31px;
  line-height: 1;
}

.hero-stamp small {
  max-width: 90px;
  margin-top: 8px;
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.manifesto-section {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.manifesto-section::after {
  content: "PAC";
  position: absolute;
  right: -25px;
  bottom: -75px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 380px;
  line-height: 1;
}

.manifesto {
  position: relative;
  z-index: 1;
}

.manifesto .section-label {
  color: #d9b860;
}

.manifesto h2 {
  max-width: 980px;
  margin-bottom: 38px;
  font-size: clamp(48px, 6vw, 82px);
}

.manifesto h2 em {
  color: #d9b860;
}

.manifesto > p:last-child {
  max-width: 690px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.diagnostic-section {
  padding: 126px 0;
  background: var(--paper);
}

.diagnostic-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.diagnostic-copy {
  position: sticky;
  top: 45px;
}

.diagnostic-copy h2,
.section-heading h2,
.pilot-copy h2,
.form-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(44px, 4.5vw, 66px);
}

.diagnostic-copy > p:not(.section-label),
.form-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 16px;
}

.diagnostic-note {
  display: flex;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.diagnostic-note span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 30px;
}

.diagnostic-note p {
  max-width: 300px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.calculator {
  padding: 46px;
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(83, 57, 43, 0.08);
}

.calculator-field + .calculator-field {
  margin-top: 28px;
}

.calculator-field label {
  display: block;
  margin-bottom: 9px;
  color: #5c554f;
  font-size: 13px;
}

.number-input {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #9b9288;
}

.number-input input {
  width: 100%;
  border: 0;
  padding: 7px 0 13px;
  outline: 0;
  background: transparent;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 45px;
}

.number-input > span {
  flex: none;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.money-input {
  gap: 10px;
}

.money-input > span {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 30px;
  text-transform: none;
}

.calculator-result {
  margin-top: 38px;
  padding: 30px;
  background: var(--wine);
  color: white;
}

.result-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.result-main p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.result-main strong {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 0.9;
}

.result-track {
  height: 7px;
  margin: 20px 0 25px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.result-track span {
  display: block;
  width: 30%;
  height: 100%;
  background: #d7b34f;
  transition: width 300ms ease;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.result-grid div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.result-grid span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.result-grid strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.calculator-result small {
  display: block;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.6;
}

.comparison-section,
.flow-section,
.form-section,
.faq-section {
  padding: 126px 0;
}

.comparison-section {
  background: #e9e1d6;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 60px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison-card {
  min-height: 430px;
  padding: 48px;
}

.comparison-card > p {
  margin-bottom: 60px;
  font-family: var(--serif);
  font-size: 30px;
}

.comparison-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding: 15px 0 15px 28px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(125, 114, 103, 0.2);
  font-size: 14px;
}

.comparison-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #9e9387;
}

.muted-card {
  background: rgba(255, 255, 255, 0.45);
  color: #766d64;
}

.accent-card {
  background: var(--wine);
  color: white;
  box-shadow: 0 24px 65px rgba(72, 22, 35, 0.2);
}

.accent-card li {
  border-color: rgba(255, 255, 255, 0.15);
}

.accent-card li::before {
  content: "✓";
  color: #e3c36e;
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  min-height: 280px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, color 200ms ease;
}

.flow-list li:hover {
  background: var(--wine);
  color: white;
}

.flow-list li > span {
  color: var(--mustard);
  font-family: var(--serif);
  font-size: 25px;
}

.flow-list h3 {
  margin: 62px 0 13px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.flow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 200ms ease;
}

.flow-list li:hover p {
  color: rgba(255, 255, 255, 0.68);
}

.pilot-section {
  padding: 126px 0;
  background: var(--wine-dark);
  color: white;
}

.pilot-grid,
.form-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.pilot-copy p:not(.section-label) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
}

.light-label {
  color: #e2c46e;
}

.pilot-list div {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  min-height: 88px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pilot-list div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.pilot-list span {
  color: #d6b459;
  font-family: var(--serif);
  font-size: 27px;
}

.pilot-list p {
  margin: 0;
  font-size: 14px;
}

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

.form-copy ul {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.form-copy li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #5f5750;
  font-size: 14px;
}

.form-copy li::before {
  content: "✓";
  margin-right: 13px;
  color: var(--wine);
  font-weight: 700;
}

.lead-form {
  padding: 46px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(57, 32, 25, 0.09);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label:not(.consent) {
  display: block;
  margin-bottom: 22px;
  color: #5c544d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 0;
  border-bottom: 1px solid #afa399;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--wine);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 6px 0 26px;
  color: var(--muted);
  font-size: 11px;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: none;
  margin: 2px 0 0;
  accent-color: var(--wine);
}

.form-submit {
  width: 100%;
}

.lead-form > small {
  display: block;
  margin-top: 16px;
  color: #6f675f;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

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

.faq-grid {
  align-items: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--wine);
  font-family: var(--sans);
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 600px;
  padding: 0 45px 24px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 48px 0;
  background: var(--ink);
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr 1.3fr auto;
  gap: 40px;
  align-items: center;
}

.footer-brand {
  color: white;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.footer-note {
  text-align: right;
}

.cookie-settings {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 6px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  left: 24px;
  max-width: 760px;
  margin-left: auto;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(23, 20, 17, 0.25);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
}

.cookie-banner p {
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions button {
  min-height: 42px;
  border: 1px solid var(--wine);
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-reject {
  background: transparent;
  color: var(--wine);
}

.cookie-accept {
  background: var(--wine);
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 980px) {
  .hero,
  .diagnostic-grid,
  .pilot-grid,
  .form-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 80px;
    padding-top: 64px;
  }

  .diagnostic-copy {
    position: static;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-note {
    max-width: 600px;
    text-align: left;
  }

  .cookie-settings {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .nav {
    min-height: 74px;
  }

  .brand-line,
  .nav-cta {
    font-size: 9px;
  }

  .brand-divider {
    display: none;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .brand-mark {
    font-size: 25px;
  }

  .hero {
    min-height: 0;
    padding-block: 52px 95px;
  }

  h1 {
    font-size: clamp(46px, 13.5vw, 60px);
    line-height: 1.06;
  }

  .hero-actions,
  .button-primary {
    width: 100%;
  }

  .text-link {
    margin-inline: auto;
  }

  .hero-facts {
    justify-content: space-between;
    margin-top: 42px;
  }

  .hero-facts li,
  .hero-facts li + li {
    min-width: 0;
    padding-inline: 12px;
  }

  .hero-facts li:first-child {
    padding-left: 0;
  }

  .hero-frame {
    padding: 10px 10px 76px;
  }

  .hero-frame img {
    height: 420px;
  }

  .capacity-card {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .hero-stamp {
    bottom: -55px;
    left: 0;
    width: 112px;
    height: 112px;
  }

  .manifesto-section,
  .diagnostic-section,
  .comparison-section,
  .flow-section,
  .pilot-section,
  .form-section,
  .faq-section {
    padding-block: 86px;
  }

  .manifesto h2,
  .diagnostic-copy h2,
  .section-heading h2,
  .pilot-copy h2,
  .form-copy h2 {
    font-size: 44px;
  }

  .calculator,
  .comparison-card,
  .lead-form {
    padding: 28px 22px;
  }

  .result-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    min-height: 235px;
  }

  .comparison-card {
    min-height: 380px;
  }

  .pilot-grid,
  .form-grid,
  .faq-grid,
  .diagnostic-grid {
    gap: 55px;
  }

  .cookie-banner {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .button {
    transition: none;
  }
}
