:root {
  --ink: #2a1810;
  --ink-2: #4a3324;
  --cocoa: #6b4a32;
  --rust: #b8552e;
  --rust-deep: #8e3f1f;
  --amber: #d49a3c;
  --cream: #f6ebda;
  --parchment: #faf4e8;
  --paper: #fffcf6;
  --line: rgba(42, 24, 16, 0.12);
  --line-strong: rgba(42, 24, 16, 0.22);
  --shadow: 0 24px 60px -28px rgba(58, 36, 24, 0.35);
  --radius: 18px;
  --maxw: 1180px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
 font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 500px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 {
  font-size: clamp(40px, 6vw, 55px);
  font-weight: 700;
   font-family: 'Cormorant Garamond', serif;
}
h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 700;
   font-family: 'Cormorant Garamond', serif;
}
h3 {
  font-size: clamp(22px, 2.4vw, 26px);
   font-family: 'Cormorant Garamond', serif;
}
p {
  color: var(--ink-2);
  font-weight: 500px;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  /* font-family: "Inter", sans-serif; */
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: #aa5847;
  margin-left: 8PX;
}
.script {
  /* font-family: "Caveat", cursive; */
  color: white;
  font-weight: 600;
}
.section {
  padding: 120px 0;
  position: relative;
}
.section--cream {
  background: #fff4ea;
}
.section--parchment {
  background: #ffffff;
}
.section--paper {
  background: var(--paper);
}
.section--ink {
  background: #aa5847;
  color: #f0e2cb;
}
.section--ink h2,
.section--ink h3 {
  color: #fbedd2;
}
.section--ink p {
  color: rgba(240, 226, 203, 0.78);
}

/* NAV */
/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  background: rgba(255, 252, 246, 0);

  /* Reduced height */
  padding: 0;
}

.nav.scrolled {
  background: rgba(255, 252, 246, 0.96);
  backdrop-filter: blur(10px);
  box-shadow:
    0 1px 0 var(--line),
    0 8px 30px -20px rgba(0, 0, 0, 0.15);

  /* Reduced scrolled height */
  padding: 0;
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo-img {
  width: 150px; /* Reduced logo size */
  height: auto;
  display: block;
  object-fit: contain;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  /* Reduced button height */
  padding: 10px 18px;

  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn--primary {
  background: #000;
  color: var(--paper);
}
.btn--primary:hover {
  background: #aa5847;
  transform: translateY(-1px);
}
.btn--rust {
  background: #aa5847;
  color: #fff;
}
.btn--rust:hover {
  background: var(--rust-deep);
}
.btn--ghost {
  background: transparent;
  color: white;
  border: 1px solid var(--line-strong);
  background-color: #aa5847;
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn svg {
  width: 14px;
  height: 14px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
  background: #fff4ea;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
.hero .eyebrow {
  margin-bottom: 24px;
  display: inline-block;
  animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero h1 sm {
  /* font-style: italic; */
  font-weight: 700;
   font-family: 'Cormorant Garamond', serif;
  background:#aa5847;
  /* background-size: 200% auto;
  -webkit-background-clip: text; */
  background-clip: text;
  color: transparent;
  animation: textShimmer 4s linear infinite;
}

/* HERO TEXT LOAD ANIMATIONS */
@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  margin-bottom: 24px;
  opacity: 0;
  animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroTextReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta div {
  flex: 1;
}
.hero-meta .k {
  /* font-family: "Fraunces", serif; */
  font-size: 28px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}
.hero-meta .l {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: #aa5847;
  margin-top: 6px;
  white-space: nowrap;
}
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4.5/5;
  box-shadow: var(--shadow);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 252, 246, 0.95);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-tag .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rust);
  box-shadow: 0 0 0 4px rgba(184, 85, 46, 0.18);
}
.hero-tag span {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* GENERIC SECTION HEAD */
.sec-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.sec-head .eyebrow {
  margin-bottom: 18px;
  display: block;
}
.sec-head h2 {
  margin-bottom: 18px;
}
.sec-head p {
  font-size: 18px;
}
.sec-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* WHAT IS STORIES */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 5/6;
  object-fit: cover;
  width: 100%;
}
.two-col h2 sm {
  /* font-style: italic; */
  color: #aa5847;
  font-weight: 700;
}
.feature-list {
  list-style: none;
  margin-top: 32px;
}
.feature-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.feature-list .n {
  font-family: "Fraunces", serif;
  color: #aa5847;
  font-size: 15px;
  font-weight: 600;
  min-width: 32px;
  padding-top: 4px;
}
.feature-list strong {
  display: block;
  /* font-family: "Fraunces", serif; */
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-list span {
  font-size: 15px;
  color: var(--ink-2);
}

/* PROBLEM */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}
.problem-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.problem-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.problem-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.problem-card:hover img {
  transform: scale(1.04);
}
.problem-card .body {
  padding: 28px;
}
.problem-card .num {
  /* font-family: "Fraunces", serif; */
  color: #aa5847;
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  font-weight: 600;
}
.problem-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.problem-card p {
  font-size: 15px;
}
.problem-close {
  margin-top: 56px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  /* font-family: "Fraunces", serif; */
  font-size: 24px;
  color: var(--ink);
  /* font-style: italic; */
  line-height: 1.4;
}

/* MARKET / SWEET SPOT */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 48px;
}
.stat {
  padding: 36px 24px;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  /* font-family: "Fraunces", serif; */
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(to right, var(--ink) 20%, var(--amber) 50%, var(--ink) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShimmer 4s linear infinite;
}
.stat .lbl {
  font-size: 13px;
 color: #000;
  margin-top: 10px;
  letter-spacing: 0.06em;
}
.stat .num em {
  font-style: normal;
  color: #aa5847;
  font-weight: 600;
}

/* BENCH TABLE */
.bench {
  margin-top: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.bench-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.bench-table th,
.bench-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.bench-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.bench-table tbody tr:last-child td {
  border-bottom: none;
}
.bench-table tbody tr.us {
  background: linear-gradient(
    90deg,
    rgba(184, 85, 46, 0.07),
    rgba(212, 154, 60, 0.05)
  );
}
.bench-table tbody tr.us td {
  font-weight: 500;
  color: var(--ink);
}
.bench-table .row-name {
  font-weight: 600;
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 16px;
}
.yn {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.yn.y {
  background: rgba(184, 85, 46, 0.14);
  color: var(--rust);
}
.yn.n {
  background: rgba(42, 24, 16, 0.08);
  color: var(--cocoa);
}

/* PRODUCT GALLERY */
.gal {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  margin-top: 48px;
  aspect-ratio: 16/9;
}
.gal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.gal .a {
  grid-row: 1/3;
}
.menu-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  justify-content: center;
}
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: var(--paper);
}

/* COVER MODEL */
.cover-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 48px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.cover-box .left {
  padding: 56px;
  background: #aa5847;
  color: var(--paper);
}
.cover-box .left .price {
  /* font-family: "Fraunces", serif; */
  font-size: 80px;
  line-height: 1;
  color: var(--amber);
  font-weight: 500;
}
.cover-box .left .ph {
  font-size: 14px;
  color: rgba(240, 226, 203, 0.7);
  margin-top: 8px;
  letter-spacing: 0.06em;
}
.cover-box .left p {
  color: rgba(240, 226, 203, 0.85);
  margin-top: 24px;
  font-size: 16px;
}
.cover-box .right {
  padding: 48px;
}
.cover-box ul {
  list-style: none;
}
.cover-box li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink-2);
  display: flex;
  gap: 14px;
}
.cover-box li:last-child {
  border-bottom: none;
}
.cover-box li svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.disclaimer {
  font-size: 18px;
  color: var(--cocoa);
  margin-top: 18px;
  margin-bottom: -30px;
  align-items: center;
  justify-content: center;
  /* font-style: italic; */
}

/* FINANCIAL MODELS - 3 cards */
.models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.model {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.model:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.model .tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aa5847;
  font-weight: 600;
  margin-bottom: 14px;
}
.model h3 {
  margin-bottom: 14px;
}
.model .invest {
  /* font-family: "Fraunces", serif; */
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-top: 8px;
  background: #aa5847;
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShimmer 4s linear infinite;
}
.model .invest small {
  font-size: 12px;
  color: var(--cocoa);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 6px;
  letter-spacing: 0.04em;
}
.model .desc {
  font-size: 14px;
  color: var(--ink-2);
  margin: 20px 0 24px;
  flex-grow: 0;
}
.model dl {
  margin: 8px 0 28px;
  border-top: 1px solid var(--line);
}
.model dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.model dl dt {
  color: var(--cocoa);
}
.model dl dd {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.model .btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}

/* RISK TABLE */
.risk {
  margin-top: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.risk table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}
.risk th,
.risk td {
  padding: 22px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 15px;
}
.risk thead th {
  background: var(--cream);
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.risk tbody tr:last-child td {
  border-bottom: none;
}
.risk .rname {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.impact {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.impact.h {
  background: rgba(184, 85, 46, 0.14);
  color: var(--rust-deep);
}
.impact.m {
  background: rgba(212, 154, 60, 0.18);
  color: #8b6420;
}
.impact.l {
  background: rgba(107, 74, 50, 0.12);
  color: var(--cocoa);
}

/* SUPPORT 2-COL */
.support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.sup-card {
  background: #fff4ea;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.sup-card h3 {
  margin-bottom: 8px;
}
.sup-card .sub {
  color: #aa5847;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.sup-list {
  list-style: none;
}
.sup-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.sup-list svg {
  flex-shrink: 0;
  margin-top: 5px;
  color: var(--rust);
}
.sup-list strong {
  font-family: "Fraunces", serif;
  font-weight: 500;
  color: var(--ink);
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}
.sup-list span {
  font-size: 14px;
  color: var(--ink-2);
}

/* ROADMAP TIMELINE */
.timeline {
  margin-top: 56px;
  position: relative;
  overflow-x: auto;
  padding-bottom: 20px;
}
.timeline-track {
  display: flex;
  gap: 0;
  min-width: 980px;
  position: relative;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 38px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line-strong) 0 6px,
    transparent 6px 12px
  );
}
.ts {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.ts .node {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line-strong);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  flex-direction: column;
  line-height: 1;
  transition: all 0.3s;
}
.ts:hover .node {
  background: #aa5847;
  border-color: var(--rust);
  color: #fff;
}
.ts .node small {
  font-size: 12px;
  color: var(--cocoa);
  margin-top: 3px;
  font-family: "Inter";
  font-weight: 500;
}
.ts:hover .node small {
  color: rgba(255, 255, 255, 0.85);
}
.ts h4 {
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.ts p {
  font-size: 12px;
  color: var(--cocoa);
  line-height: 1.4;
  /* white-space: nowrap; */
}

/* LEADERSHIP - 3 clusters */
.lead {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.lead-card {
  background: #231510;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(212, 154, 60, 0.18);
}
.lead-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 154, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 22px;
}
.lead-card h3 {
  color: #fbedd2;
  font-size: 22px;
  margin-bottom: 6px;
}
.lead-card .role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 600;
  margin-bottom: 18px;
}
.lead-card p {
  font-size: 14px;
  color: rgba(240, 226, 203, 0.75);
}
.ebg-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(212, 154, 60, 0.22);
  border-bottom: 1px solid rgba(212, 154, 60, 0.22);
}
.ebg-stats div {
  padding: 32px 24px;
  border-right: 1px solid rgba(212, 154, 60, 0.18);
  text-align: center;
}
.ebg-stats div:last-child {
  border-right: none;
}
.ebg-stats .v {
  font-family: "Fraunces", serif;
  font-size: 46px;
  color: var(--amber);
  font-weight: 500;
  line-height: 1;
}
.ebg-stats .l {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(240, 226, 203, 0.7);
  margin-top: 8px;
}

/* URGENCY */
.urgency {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.urgency .pic {
  aspect-ratio: 5/4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.urgency .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.urgency .body p {
  font-size: 18px;
  margin-bottom: 18px;
}
.terr {
  margin-top: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}
.terr h4 {
  font-family: "Fraunces", serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.terr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.terr-grid span {
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
}
.terr-grid em {
  font-style: normal;
  font-weight: 600;
}
.terr-grid em.open {
  color: var(--rust);
}
.terr-grid em.taken {
  color: var(--cocoa);
  opacity: 0.55;
  text-decoration: line-through;
}

/* FORM */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(58, 36, 24, 0.4);
  margin-top: 56px;
}
.form-left {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 50px;
}
.form-left .eyebrow {
  color: var(--amber);
}
.form-left h3 {
  color: #fff4ea;
  font-size: 36px;
  margin: 18px 0 28px;
}
.form-left .reasons {
  margin-top: 32px;
  list-style: none;
}
.form-left .reasons li {
  padding: 20px 0;
  border-top: 1px solid rgba(212, 154, 60, 0.18);
  display: flex;
  gap: 16px;
}
.form-left .reasons .num {
  /* font-family: "Fraunces", serif; */
  color: var(--amber);
  font-size: 22px;
  font-weight: 500;
  min-width: 30px;
}
.form-left .reasons strong {
  display: block;
  /* font-family: "Fraunces", serif; */
  font-size: 18px;
  color: #fbedd2;
  font-weight: 500;
  margin-bottom: 4px;
}
.form-left .reasons span {
  font-size: 14px;
  color: rgba(240, 226, 203, 0.72);
  line-height: 1.5;
}
.form-right {
  padding: 60px 50px;
}
.form-right h3 {
  margin-bottom: 8px;
}
.form-right .sub {
  color: var(--cocoa);
  font-size: 15px;
  margin-bottom: 32px;
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cocoa);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--paper);
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  transition: all 0.2s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(184, 85, 46, 0.1);
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field.err input,
.field.err select {
  border-color: var(--rust);
}
.field .em {
  color: var(--rust);
  font-size: 12px;
  margin-top: 6px;
  display: none;
}
.field.err .em {
  display: block;
}
.submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  justify-content: center;
  margin-top: 8px;
}
.privacy {
  font-size: 16px;
  color: var(--cocoa);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.success {
  display: none;
  padding: 40px;
  text-align: center;
  background: rgba(184, 85, 46, 0.06);
  border-radius: 14px;
}
.success.show {
  display: block;
}
.success svg {
  margin: 0 auto 18px;
}
.success h4 {
  font-family: "Fraunces", serif;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 10px;
}
.success p {
  color: var(--ink-2);
}



/* =========================
   FOOTER SECTION
========================= */
footer {
  background: #1f140f;
  padding: 10px 20px 30px;
  text-align: center;
  color: #f5f1eb;
  position: relative;
  overflow: hidden;
}

/* Container */
footer .container {
  max-width: 900px;
  margin: 0 auto;
}

/* =========================
   LOGO
========================= */
.logo {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
  margin-bottom: -50px;
  margin-top: -20px;
}

.footer-logo:hover {
  transform: scale(1.05);
}

/* =========================
   TAGLINE
========================= */
.tag {
  font-size: 20px;
  font-weight: 600;
  color: #fff4ea;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

/* =========================
   LEGAL TEXT
========================= */
.legal {
  max-width: 820px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(198, 193, 193, 0.72);
  font-weight: 400;
}

/* =========================
   TOP BORDER EFFECT
========================= */
/* footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #c0955e;
  border-radius: 50px;
} */

/* =========================
   RESPONSIVE
========================= */
@media screen and (max-width: 768px) {

  footer {
    padding: 55px 18px 35px;
  }

  .footer-logo {
    width: 150px;
  }

  .tag {
    font-size: 17px;
    line-height: 1.6;
  }

  .legal {
    font-size: 13px;
    line-height: 1.8;
  }


 .stat .num {
  /* font-family: "Fraunces", serif; */
  font-size: 26px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}

.stat .lbl {
  font-size: 11px;
  color: #000;
  margin-top: 10px;
  letter-spacing: 0.06em;
}

}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes textShimmer {
  to {
    background-position: 200% center;
  }
}

/* MICRO-INTERACTIONS */
.btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover svg {
  transform: translateX(4px);
}
.problem-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(58, 36, 24, 0.15);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav {
    padding: 6px 0;
  }
  .nav.scrolled {
    padding: 4px 0;
  }
  .logo-img {
    width: 90px;
  }
  .section {
    padding: 80px 0;
  }
  .hero {
    padding-top: 110px;
  }
  .hero-grid,
  .two-col,
  .urgency,
  .cover-box,
  .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .problem-grid,
  .models,
  .lead,
  .support {
    grid-template-columns: 1fr;
  }
  .stat-row,
  .ebg-stats {
    grid-template-columns: 1fr 1fr;
  }
  .stat,
  .ebg-stats div {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
  .gal {
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gal .a {
    grid-row: auto;
    grid-column: 1/3;
    aspect-ratio: 16/9;
  }
  .gal img:not(.a) {
    aspect-ratio: 1/1;
  }
  .cover-box .left,
  .cover-box .right,
  .form-left,
  .form-right {
    padding: 40px 28px;
  }
  .cover-box .left .price {
    font-size: 60px;
  }
  .hero-meta {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-meta div {
    flex: 1 1 45%;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .bench-table {
    font-size: 13px;
  }
  .bench-table th,
  .bench-table td {
    padding: 12px 10px;
  }
}
