:root {
  --bg: #f4eee5;
  --surface: #fbf7f1;
  --ink: #2f2119;
  --ink-soft: #5f4a3f;
  --accent: #af5a2b;
  --accent-2: #7c8b52;
  --line: #dcccb8;
  --shadow: 0 14px 34px rgba(47, 33, 25, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: white;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(47, 33, 25, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--line);
}

.brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-links a {
  padding: 0.35rem 0.45rem;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.3rem 0.55rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.hero {
  padding: 2.5rem 0;
  margin-top: 82px;
  width: 100%;
  position: relative;
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(88%) contrast(105%);
  transform: scale(1.04);
}

.hero-stage {
  position: relative;
  width: 100%;
  z-index: 2;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-stage .container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 13, 10, 0.62) 0%, rgba(19, 13, 10, 0.78) 100%),
    radial-gradient(circle at 50% 25%, rgba(255, 245, 232, 0.12), transparent 45%);
  z-index: 1;
}

.hero-center {
  position: relative;
  z-index: 3;
  width: min(940px, calc(100% - 2rem));
  margin-inline: auto;
  text-align: center;
}

.hero-content {
  color: #fff9f0;
  margin-bottom: 1.2rem;
}

.kicker {
  margin: 0 0 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f6cf98;
  font-size: 0.73rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0.3rem 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.hero p {
  color: rgba(255, 245, 232, 0.9);
  margin: 0.6rem 0 0;
  margin-inline: auto;
  max-width: 72ch;
  line-height: 1.6;
  font-size: 0.95rem;
}

.hero-cards {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-thumb {
  margin: 0;
  background: rgba(255, 248, 240, 0.12);
  border: 1px solid rgba(255, 248, 240, 0.35);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.hero-thumb img {
  width: 100%;
  height: clamp(140px, 20vw, 200px);
  object-fit: cover;
}

.actions {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(115deg, #af5a2b, #93451c);
  color: #fff;
}

.btn.ghost {
  border-color: rgba(255, 248, 240, 0.45);
  background: rgba(255, 248, 240, 0.18);
  color: #fff;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0;
}

.section-copy {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  max-width: 68ch;
}

.values {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-card {
  background: rgba(251, 247, 241, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.value-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.value-card p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.products-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.product-card {
  background: #F4F0ED;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(47, 33, 25, 0.06);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
}

.product-card img {
  width: 100%;
  height: 185px;
  max-width: 100%;
  object-fit: contain;
  background: #F4F0ED;
  padding: 0;
  box-sizing: border-box;
}

.product-body {
  padding: 0.95rem;
}

.product-body h3 {
  margin: 0;
  font-size: 0.98rem;
}

.product-body p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.gallery-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.gallery-grid img {
  border-radius: 14px;
  height: 210px;
  width: 100%;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #F4F0ED;
  padding: 0.2rem;
  box-sizing: border-box;
}

.contact-wrap {
  margin-top: 1.7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 0.65rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d3c1ab;
  border-radius: 11px;
  font: inherit;
  padding: 0.72rem 0.82rem;
  background: #fff;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 72vh;
  }

  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    inset: 82px 1rem auto 1rem;
    background: rgba(251, 247, 241, 0.98);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
  }

  .nav-links.show {
    display: flex;
  }

  .values,
  .products-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 88vh;
  }

  .hero-cards {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-inline: auto;
  }

  .hero-thumb {
    background: #F4F0ED;
  }

  .hero-thumb img {
    height: auto;
    max-height: 240px;
    object-fit: contain;
    background: #F4F0ED;
  }
}
