:root {
  --bg: #f6f1ea;
  --bg-soft: #efe6db;
  --surface: #fffdf9;
  --ink: #1c1712;
  --muted: #6d645a;
  --line: #e4d8c8;
  --accent: #8b5a2b;
  --accent-dark: #6e4320;
  --gold: #c4a574;
  --shadow: 0 18px 50px rgba(28, 23, 18, 0.08);
  --radius: 22px;
  --max: 1180px;
  --nav-h: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: #f6f1ea;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 38px;
}

.topbar a {
  color: var(--gold);
  font-weight: 600;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 20px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  place-items: center;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.hero {
  padding: 56px 0 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.kicker {
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.12;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 28px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 500;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-line {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  width: fit-content;
  box-shadow: var(--shadow);
}

.phone-card span {
  display: block;
}

.phone-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.phone-card strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
}

.badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 253, 249, 0.94);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.badge b {
  display: block;
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", serif;
}

section {
  padding: 54px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head p {
  color: var(--muted);
  max-width: 380px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.card-body {
  padding: 18px 18px 20px;
}

.card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

.price b {
  color: var(--ink);
  font-size: 1.05rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature {
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 22px;
}

.feature h3 {
  font-size: 1.3rem;
  margin: 8px 0 6px;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-band {
  background: var(--ink);
  color: #f6f1ea;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-band h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 8px 0 10px;
}

.contact-band a.phone {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 600;
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
}

.footer-grid h3 {
  margin-bottom: 10px;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.page {
  padding: 48px 0 70px;
}

.page-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.page-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 10px;
}

.page-card h2 {
  font-size: 1.6rem;
  margin: 28px 0 8px;
}

.page-card p,
.page-card li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-card ul {
  padding-left: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .products,
  .features,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
    height: 420px;
  }

  .contact-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .topbar .wrap {
    flex-direction: column;
    text-align: center;
    padding: 8px 0;
  }

  .menu-btn {
    display: grid;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    z-index: 50;
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  section,
  .page {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-grid,
  .products,
  .features,
  .footer-grid,
  .legal,
  .section-head {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 340px;
    height: 340px;
  }

  .page-card,
  .contact-band {
    padding: 24px;
  }
}
