:root {
  --ink: #191614;
  --muted: #6d625b;
  --line: #e8dfd7;
  --paper: #fffaf5;
  --cream: #f4ebe1;
  --rose: #9f5849;
  --rose-dark: #713b32;
  --sage: #6f7d69;
  --gold: #c59a55;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(47, 31, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(197, 154, 85, 0.18), transparent 32rem),
    linear-gradient(180deg, #fffaf5 0%, #f6eee5 45%, #fbf7f0 100%);
}

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

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

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

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  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:hover,
.footer a:hover {
  color: var(--rose-dark);
}

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.header-cta,
.button-primary,
.lead-form button {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(25, 22, 20, 0.18);
}

.button-secondary {
  border-color: rgba(25, 22, 20, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.64);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px) 38px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6.7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

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

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

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

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(25, 22, 20, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

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

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

.hero-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(25, 22, 20, 0.66));
}

.hero-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  max-width: 320px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  color: var(--white);
  background: rgba(25, 22, 20, 0.55);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: #f1c78b;
  font-size: 13px;
  font-weight: 800;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.trust-band div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
}

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

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

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

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

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

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

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

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

.model-card {
  overflow: hidden;
  border: 1px solid rgba(25, 22, 20, 0.1);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(47, 31, 24, 0.08);
}

.model-card-featured {
  transform: translateY(-14px);
  box-shadow: var(--shadow);
}

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

.model-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--rose-dark);
  background: #f6ded4;
  font-size: 12px;
  font-weight: 800;
}

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

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

.model-body a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--rose-dark);
  font-weight: 800;
}

.compare {
  padding-top: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

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

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

th {
  color: var(--rose-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #fbf1e8;
}

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

.profit {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(300px, 0.74fr);
  gap: 24px;
  align-items: stretch;
  color: var(--white);
  background: var(--ink);
}

.profit .eyebrow {
  color: #f1c78b;
}

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

.profit-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.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(25, 22, 20, 0.14);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

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

.result {
  grid-column: 1 / -1;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

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

.result span {
  color: rgba(255, 255, 255, 0.62);
}

.result strong {
  margin-top: 8px;
  font-size: clamp(34px, 6vw, 64px);
  font-family: Georgia, serif;
}

.profit-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(159, 88, 73, 0.36), rgba(255, 255, 255, 0.06));
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(47, 31, 24, 0.08);
}

.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;
}

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

.steps article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
}

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

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

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: 30px;
}

.contact-card {
  padding: clamp(28px, 5vw, 54px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(25, 22, 20, 0.9), rgba(25, 22, 20, 0.58)),
    url("https://images.unsplash.com/photo-1560750588-73207b1ef5b8?auto=format&fit=crop&w=1200&q=82") center/cover;
}

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

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

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.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: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro-grid,
  .profit,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .trust-band,
  .model-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

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

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

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

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

  .footer {
    flex-direction: column;
  }
}
