:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --text: #2d2424;
  --muted: #7b6f6f;
  --accent: #d98f8f;
  --accent-dark: #b96d6d;
  --border: #ecdede;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --max-width: 1150px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

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

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.center {
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--accent-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 1.15rem;
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

nav a {
  color: var(--muted);
  font-weight: 600;
}

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

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  padding: 70px 0 40px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin: 0 0 20px;
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.hero-image img {
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-banner {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  text-align: center;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.image-card img {
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--accent-dark);
}

.card-grid,
.product-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.product-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.product-card,
.testimonial,
.cta-box,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.product-card {
  height: 620px;
}
.card,
.product-card,
.testimonial {
  padding: 24px;
}

.card h3,
.product-card h3 {
  margin-top: 0;
}

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

.price {
  display: inline-block;
  margin-top: 10px;
  font-weight: 700;
  color: var(--accent-dark);
}

.testimonial p {
  font-size: 1rem;
}

.testimonial footer {
  margin-top: 18px;
  font-weight: 700;
  color: var(--muted);
}

.cta-box {
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-form {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 28px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f2c7c7;
  border-color: var(--accent);
}

.form-message {
  text-align: center;
  font-weight: 700;
  margin-top: 16px;
  color: var(--accent-dark);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .hero-content,
  .split,
  .card-grid,
  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 4%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    min-width: 220px;
  }

  nav.show {
    display: flex;
  }
}