:root {
  --bg: #fffaf5;
  --bg-soft: #f8f0e9;
  --card: #fffdf9;
  --primary: #b98573;
  --primary-dark: #8f6758;
  --accent-pink: #f0c9d6;
  --accent-blue: #cfe7f6;
  --text: #5f514a;
  --text-dark: #342a25;
  --border: #eaded4;
  --shadow: 0 18px 40px rgba(110, 84, 69, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(800px, 100%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--bg-soft);
}

.section-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 14px;
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  color: var(--text-dark);
  line-height: 1.2;
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

p {
  margin-top: 0;
}

.lead,
.hero-description,
.promise {
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(234, 222, 212, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--text-dark);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  font-size: 0.97rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-dark);
  cursor: pointer;
}

.hero-grid,
.split-grid,
.footer-grid,
.contact-grid {
  display: grid;
  gap: 42px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 90px);
}

.hero {
  padding-top: 54px;
}

.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f6e5dd;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background: white;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-highlights div {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
}

.hero-highlights strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.hero-highlights span {
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-card {
  width: 100%;
  max-width: 470px;
  background: linear-gradient(180deg, #fffdf9 0%, #f5e8df 100%);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.split-grid {
  grid-template-columns: 1fr 1fr;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.feature-item,
.info-card,
.product-box,
.contact-form,
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.feature-item {
  padding: 22px;
}

.product-panel {
  display: flex;
  justify-content: center;
}

.product-box {
  width: 100%;
  max-width: 430px;
  padding: 30px;
  background: linear-gradient(180deg, #fffdf9 0%, #f9f0eb 100%);
}

.product-box ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.product-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-pink) 100%);
  color: var(--text-dark);
  font-size: 0.96rem;
  font-weight: 600;
}

.mini-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title-center {
  text-align: center;
}

.value-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.value-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  background: #f4e3db;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.promise {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  padding: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding-bottom: 22px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.coming-soon {
  text-align: center;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-info p {
  margin-bottom: 18px;
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.form-note {
  margin-top: 14px;
  font-size: 0.92rem;
  color: #8b7b73;
}

.site-footer {
  padding: 60px 0 20px;
  background: #f2e7de;
  border-top: 1px solid var(--border);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 24px;
  margin-top: 30px;
  border-top: 1px solid rgba(143, 103, 88, 0.14);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-grid {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(255, 250, 245, 0.98);
    border-bottom: 1px solid var(--border);
    display: none;
    flex-direction: column;
    padding: 18px 20px 24px;
    gap: 16px;
  }

  .nav.open {
    display: flex;
  }

  .section {
    padding: 70px 0;
  }

  .container {
    width: min(100% - 24px, var(--max-width));
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
  }
}