:root {
  --cream: #faf6f1;
  --cream-dark: #f0e8df;
  --white: #ffffff;
  --ink: #2b2622;
  --ink-soft: #5c534c;
  --sage: #6b7f6a;
  --sage-dark: #4f6250;
  --rose: #c48b8b;
  --rose-soft: #e8c9c9;
  --gold: #b8956b;
  --shadow: 0 18px 50px rgba(43, 38, 34, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--sage-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
.logo,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.15;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-dark) 100%);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2,
.about-copy h2,
.contact-grid h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.section-lead,
.lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost,
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(43, 38, 34, 0.18);
}

.btn-ghost:hover,
.btn-outline:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-small {
  min-height: 38px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.btn-large {
  min-height: 54px;
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 38, 34, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo {
  font-size: 1.7rem;
  color: var(--ink);
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.site-nav a:not(.btn):hover {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-visual img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.service-card,
.contact-card,
.about-card {
  background: var(--white);
  border: 1px solid rgba(43, 38, 34, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.4rem;
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose-soft);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-card h3,
.product-body h3,
.about-card h3,
.contact-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.service-card p,
.product-body p,
.about-card p,
.contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(43, 38, 34, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(43, 38, 34, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card-compact {
  grid-column: span 1;
}

.product-thumb {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

.product-thumb-compact {
  aspect-ratio: 3 / 1;
  background: linear-gradient(135deg, var(--rose-soft), var(--cream-dark));
}

.product-thumb-1 { background: linear-gradient(160deg, #f6d9d9 0%, #fff8f3 45%, #d8e8d8 100%); }
.product-thumb-2 { background: linear-gradient(160deg, #f0c7b8 0%, #fff8f3 50%, #c8d8c0 100%); }
.product-thumb-3 { background: linear-gradient(160deg, #d88484 0%, #f8e8e8 55%, #8fa88f 100%); }
.product-thumb-4 { background: linear-gradient(160deg, #e8b8c8 0%, #fff8f3 45%, #b8c8b0 100%); }
.product-thumb-5 { background: linear-gradient(160deg, #f0c0d0 0%, #fff8f3 50%, #a8b898 100%); }
.product-thumb-6 { background: linear-gradient(160deg, #e8c8d0 0%, #faf6f1 50%, #98a890 100%); }
.product-thumb-7 { background: linear-gradient(160deg, #d0c0b0 0%, #fff8f3 45%, #809878 100%); }
.product-thumb-8 { background: linear-gradient(160deg, #e8e8e8 0%, #faf6f1 55%, #b0b8b0 100%); }
.product-thumb-9 { background: linear-gradient(160deg, #f0d0c0 0%, #fff8f3 50%, #a8b8a0 100%); }
.product-thumb-10 { background: linear-gradient(160deg, #f8d8e0 0%, #fff8f3 45%, #b0c0a8 100%); }
.product-thumb-11 { background: linear-gradient(160deg, #c87070 0%, #f8e0e0 55%, #90a890 100%); }
.product-thumb-12 { background: linear-gradient(160deg, #e0c8b8 0%, #faf6f1 50%, #889880 100%); }

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.15rem;
}

.product-label {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.product-body p {
  flex: 1;
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink);
}

.prices-note {
  margin: 1.75rem 0 0;
  color: var(--ink-soft);
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.about-copy p {
  color: var(--ink-soft);
}

.about-list {
  margin: 1.25rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.about-list li + li {
  margin-top: 0.35rem;
}

.about-card {
  padding: 1.5rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-card {
  padding: 1.25rem;
}

.site-footer {
  padding: 2rem 0 2.5rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  color: var(--white);
}

.site-footer a {
  color: var(--rose-soft);
}

.footer-disclaimer {
  margin: 0;
  max-width: 720px;
  font-size: 0.88rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }
}
