:root {
  --black: #111111;
  --ink: #24211c;
  --muted: #706a60;
  --gold: #c8a24e;
  --gold-dark: #9a7130;
  --cream: #fbf7ee;
  --soft: #fffdf8;
  --white: #ffffff;
  --line: #eadfcd;
  --shadow: 0 24px 70px rgba(40, 30, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 6vw;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img {
  display: block;
  width: 148px;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--black);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.16);
}

.button.secondary {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 54px;
  align-items: center;
  min-height: 680px;
  padding: 82px 6vw;
  background:
    radial-gradient(circle at 84% 16%, rgba(200, 162, 78, 0.24), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f1e7d2 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--black);
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 16px;
  color: var(--black);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 25px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-copy p {
  max-width: 720px;
  font-size: 21px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-card div {
  padding: 22px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card strong {
  margin-bottom: 6px;
  color: var(--black);
  font-size: 22px;
}

.hero-card span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  padding: 82px 6vw;
}

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

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

.catalog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(40, 30, 14, 0.08);
}

.catalog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catalog-card div {
  padding: 24px;
}

.catalog-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card p {
  min-height: 116px;
  font-size: 16px;
}

.catalog-card a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--white);
  background: var(--black);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.steps-list span {
  display: block;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
}

.owner-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 78px 6vw;
  padding: 50px;
  background: var(--black);
  border-radius: 24px;
}

.owner-band h2,
.owner-band p {
  color: var(--white);
}

.owner-band p {
  max-width: 760px;
  opacity: 0.78;
}

.owner-band .eyebrow {
  color: var(--gold);
}

.owner-band .button.primary {
  color: var(--black);
  background: var(--gold);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 6vw;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer img {
  width: 108px;
  height: auto;
}

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

.footer span,
.footer a {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-weight: 800;
}

.footer-links a::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.footer-links a[href*="wa.me"]::before {
  content: "W";
  background: #18a957;
}

.footer-links a[href*="instagram"]::before {
  content: "IG";
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  font-size: 10px;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
  }

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

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .owner-band {
    display: block;
  }

  .owner-band .button {
    margin-top: 20px;
  }

  .footer-links {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 128px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .hero,
  .section {
    padding-inline: 20px;
  }

  .hero-copy p {
    font-size: 18px;
  }

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

  .catalog-grid,
  .steps-list {
    grid-template-columns: 1fr;
  }

  .catalog-card p {
    min-height: auto;
  }

  .owner-band {
    margin: 54px 20px;
    padding: 32px 24px;
  }
}
