:root {
  --ink: #241d18;
  --espresso: #3a2b22;
  --muted: #7b6d61;
  --line: #e8ded0;
  --paper: #fbf5eb;
  --cream: #f3e8d9;
  --ivory: #fffdf8;
  --terracotta: #9c614b;
  --gold: #b88d4a;
  --white: #ffffff;
  --shadow-soft: 0 18px 46px rgba(63, 43, 30, 0.1);
  --shadow-deep: 0 34px 90px rgba(63, 43, 30, 0.18);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(184, 141, 74, 0.2), transparent 28rem),
    radial-gradient(circle at 82% 22%, rgba(156, 97, 75, 0.12), transparent 32rem),
    linear-gradient(180deg, #fffaf2 0%, #f5eadb 48%, #fbf5eb 100%);
  font-family:
    "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(58, 43, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 43, 34, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

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

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.2vw, 108px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 0.94;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.08;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(36, 29, 24, 0.08);
  background: rgba(251, 245, 235, 0.76);
  backdrop-filter: blur(22px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--ivory);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.32), transparent 28%),
    linear-gradient(145deg, var(--espresso), #1f1712);
  box-shadow: inset 0 0 0 1px rgba(184, 141, 74, 0.2), 0 12px 30px rgba(36, 29, 24, 0.18);
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.footer a {
  transition: color 180ms ease;
}

.nav a:hover,
.footer a:hover {
  color: var(--terracotta);
}

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button-primary,
.lead-form button {
  color: var(--ivory);
  background: linear-gradient(135deg, var(--espresso), #201812);
  box-shadow: 0 16px 34px rgba(36, 29, 24, 0.18);
}

.button-secondary {
  border-color: rgba(36, 29, 24, 0.14);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
}

.button-light {
  color: var(--espresso);
  background: var(--ivory);
}

.button-ghost {
  border-color: rgba(255, 253, 248, 0.34);
  color: var(--ivory);
  background: rgba(255, 253, 248, 0.08);
}

.header-cta:hover,
.button:hover,
.lead-form button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(38px, 6vw, 92px) clamp(18px, 5vw, 72px) 34px;
}

.hero::before {
  position: absolute;
  top: 7%;
  left: clamp(18px, 5vw, 72px);
  width: min(34vw, 470px);
  height: min(34vw, 470px);
  border: 1px solid rgba(184, 141, 74, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 18px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-text,
.section-head p,
.intro-grid p,
.profit-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(36, 29, 24, 0.11);
  border-radius: 999px;
  color: var(--espresso);
  background: rgba(255, 253, 248, 0.54);
  font-size: 13px;
}

.micro-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 34px 0 0;
}

.hero-stats div {
  padding: 17px;
  border: 1px solid rgba(36, 29, 24, 0.1);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.58);
  box-shadow: 0 12px 30px rgba(63, 43, 30, 0.06);
}

.hero-stats dt {
  margin-bottom: 4px;
  font-family: Georgia, serif;
  font-size: 33px;
  font-weight: 600;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.66);
  border-radius: 46px;
  background: var(--cream);
  box-shadow: var(--shadow-deep);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-media::before {
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.24), transparent 38%);
}

.hero-media::after {
  background: linear-gradient(180deg, transparent 46%, rgba(36, 29, 24, 0.5));
}

.hero-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  max-width: 340px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.34);
  border-radius: 24px;
  color: var(--ivory);
  background: rgba(36, 29, 24, 0.58);
  backdrop-filter: blur(18px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: #e6c28d;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: calc(var(--max) - 144px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-band div {
  padding: 25px;
  background: rgba(255, 253, 248, 0.72);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 8px;
}

.trust-band span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 114px) clamp(18px, 5vw, 72px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.text-stack p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.chips span {
  padding: 9px 13px;
  border: 1px solid rgba(156, 97, 75, 0.18);
  border-radius: 999px;
  color: var(--terracotta);
  background: rgba(255, 253, 248, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.section-head {
  max-width: 880px;
  margin-bottom: 36px;
}

.section-head.compact {
  max-width: 760px;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.model-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 29, 24, 0.09);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}

.model-card-featured {
  transform: translateY(-16px);
  background: linear-gradient(180deg, var(--ivory), #f6eadb);
  box-shadow: var(--shadow-deep);
}

.model-card-featured:hover {
  transform: translateY(-22px);
}

.model-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.model-body {
  padding: 25px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(156, 97, 75, 0.14);
  border-radius: 999px;
  color: var(--terracotta);
  background: #f5e5d8;
  font-size: 12px;
  font-weight: 850;
}

.model-price {
  margin: 18px 0 12px;
  color: var(--espresso);
  font-family: Georgia, serif;
  font-size: 28px;
}

.model-body p,
.model-body li,
.profit-panel li,
.steps p,
.faq-list p {
  color: var(--muted);
  line-height: 1.56;
}

.model-body ul,
.profit-panel ul {
  padding-left: 20px;
}

.model-body a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--terracotta);
  font-weight: 850;
}

.flagship-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.7fr);
  gap: 22px;
  align-items: stretch;
}

.flagship-grid > img,
.flagship-grid > article,
.receive-grid article,
.quad-grid article,
.solution-strip article,
.finance article,
.delivery-grid article,
.product-card {
  border: 1px solid rgba(36, 29, 24, 0.09);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.flagship-grid > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: top;
}

.flagship-grid > article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background:
    linear-gradient(160deg, rgba(255, 253, 248, 0.86), rgba(246, 234, 219, 0.9)),
    radial-gradient(circle at top right, rgba(184, 141, 74, 0.18), transparent 18rem);
}

.flagship-grid article span {
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flagship-grid li,
.delivery-grid li {
  color: var(--muted);
  line-height: 1.6;
}

.quad-grid,
.receive-grid,
.solution-strip,
.finance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.receive-grid,
.solution-strip,
.finance {
  grid-template-columns: repeat(3, 1fr);
}

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

.quad-grid article,
.receive-grid article,
.solution-strip article,
.finance article {
  padding: 26px;
}

.quad-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 34px;
}

.quad-grid p,
.receive-grid p,
.solution-strip p,
.finance p,
.delivery-grid p,
.product-card p {
  color: var(--muted);
  line-height: 1.6;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
}

.product-card-wide {
  display: grid;
  grid-column: span 3;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
}

.product-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.product-card-wide img {
  height: 560px;
}

.product-card > :not(img),
.product-card-wide > div {
  padding: 26px;
}

.compare {
  padding-top: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 21px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--terracotta);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #f4e6d5;
}

tr:last-child td {
  border-bottom: 0;
}

.profit {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  max-width: none;
  color: var(--ivory);
  background:
    radial-gradient(circle at 18% 14%, rgba(223, 203, 181, 0.18), transparent 24rem),
    linear-gradient(135deg, #2c211a, #4a362b);
}

.profit .eyebrow {
  color: #e6c28d;
}

.profit h2,
.profit h3 {
  color: var(--ivory);
}

.profit-copy,
.profit-panel {
  max-width: 680px;
}

.profit-panel p {
  color: rgba(255, 253, 248, 0.74);
  line-height: 1.65;
}

.profit-copy p,
.profit-panel li {
  color: rgba(255, 253, 248, 0.74);
}

.profit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.1);
}

.profit-form label,
.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.profit-form input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(36, 29, 24, 0.13);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--ink);
  font: inherit;
  background: var(--ivory);
}

.profit-form input {
  border-color: rgba(255, 253, 248, 0.2);
  color: var(--ivory);
  background: rgba(255, 253, 248, 0.1);
}

.result {
  grid-column: 1 / -1;
  padding: 23px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(184, 141, 74, 0.2), rgba(255, 253, 248, 0.06));
}

.result span,
.result strong {
  display: block;
}

.result span {
  color: rgba(255, 253, 248, 0.64);
}

.result strong {
  margin-top: 8px;
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 500;
}

.profit-panel {
  padding: 32px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(156, 97, 75, 0.34), rgba(255, 253, 248, 0.06)),
    rgba(255, 253, 248, 0.04);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #e6c28d;
  background: rgba(255, 253, 248, 0.08);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 178px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 253, 248, 0.76);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(5),
.gallery-grid img:nth-child(6) {
  grid-column: span 3;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.delivery-grid img {
  width: 100%;
  height: 680px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.delivery-grid article {
  padding: 30px;
}

.service {
  border-top: 1px solid rgba(36, 29, 24, 0.08);
  border-bottom: 1px solid rgba(36, 29, 24, 0.08);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.steps article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 12px 30px rgba(63, 43, 30, 0.055);
}

.steps span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 19px 21px;
  background: rgba(255, 253, 248, 0.74);
  box-shadow: 0 10px 24px rgba(63, 43, 30, 0.045);
}

summary {
  font-weight: 850;
  cursor: pointer;
}

summary::marker {
  color: var(--terracotta);
}

details p {
  margin: 14px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.contact-card,
.lead-form {
  border-radius: 34px;
}

.contact-card {
  padding: clamp(30px, 5vw, 58px);
  color: var(--ivory);
  background:
    linear-gradient(120deg, rgba(36, 29, 24, 0.88), rgba(36, 29, 24, 0.5)),
    url("https://images.unsplash.com/photo-1560750588-73207b1ef5b8?auto=format&fit=crop&w=1200&q=82") center/cover;
  box-shadow: var(--shadow-deep);
}

.contact-card .eyebrow {
  color: #e6c28d;
}

.contact-card p {
  color: rgba(255, 253, 248, 0.76);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(36, 29, 24, 0.08);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-deep);
}

.lead-form textarea {
  min-height: 110px;
  resize: vertical;
}

.lead-form small {
  color: var(--muted);
  line-height: 1.45;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .nav {
    display: none;
  }

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

  .hero-media,
  .hero-media img {
    min-height: 520px;
  }

  .trust-band,
  .model-grid,
  .steps,
  .catalog-grid,
  .quad-grid,
  .receive-grid,
  .solution-strip,
  .finance,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .model-card-featured,
  .model-card-featured:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .intro-grid,
  .split,
  .profit,
  .contact,
  .flagship-grid {
    grid-template-columns: 1fr;
  }

  .profit-copy,
  .profit-panel {
    max-width: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }

  .gallery-grid img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .flagship-grid > img,
  .delivery-grid img,
  .product-card-wide img {
    height: 460px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero::before {
    width: 260px;
    height: 260px;
  }

  .hero-stats,
  .profit-form {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
    border-radius: 30px;
  }

  .hero-card {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .footer {
    flex-direction: column;
  }
}
