:root {
  --bg: #fcf6f1;
  --bg-soft: #f4e7de;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #3d2a24;
  --text-soft: #6d544d;
  --accent: #b75d4b;
  --accent-dark: #8b4335;
  --line: rgba(90, 52, 43, 0.14);
  --shadow: 0 18px 40px rgba(97, 56, 47, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(238, 194, 167, 0.45), transparent 28%),
    radial-gradient(circle at bottom right, rgba(214, 151, 123, 0.22), transparent 24%),
    linear-gradient(180deg, #fffaf7 0%, var(--bg) 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

ul {
  padding-left: 1.2rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(252, 246, 241, 0.82);
  border-bottom: 1px solid rgba(90, 52, 43, 0.08);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--text-soft);
  position: relative;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.site-nav a.active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero,
.page-hero {
  padding: 5rem 0 4rem;
}

.hero-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.feature-grid h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 6vw, 4.9rem);
  line-height: 0.95;
}

.page-hero h1,
.section-heading h2,
.feature-grid h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.eyebrow,
.card-label,
.footer-title {
  margin: 0 0 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-dark);
}

.hero-text,
.page-intro,
.feature-grid p,
.info-card p,
.catalog-card p,
.recipe-card p,
.contact-card p,
.site-footer p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

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

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-card,
.info-card,
.catalog-card,
.recipe-card,
.contact-card,
.contact-panel,
.page-banner {
  border: 1px solid rgba(90, 52, 43, 0.09);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card {
  min-height: 390px;
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0)),
    url("images/hero-pattern.svg") center/cover no-repeat;
  opacity: 0.7;
}

.hero-card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  padding: 1.5rem;
}

.highlights,
.catalog-section,
.recipes-section,
.contact-section {
  padding: 1rem 0 4.5rem;
}

.cards-grid,
.catalog-grid,
.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.info-card,
.catalog-card,
.recipe-card,
.contact-card,
.contact-panel,
.page-banner {
  padding: 1.6rem;
}

.catalog-card h3,
.recipe-card h3,
.info-card h3,
.contact-card h3,
.contact-panel h2 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.feature-band {
  padding: 0 0 5rem;
}

.feature-grid,
.page-banner,
.contact-panel {
  padding: 2rem;
}

.page-banner {
  margin-top: 2rem;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list-clean li + li {
  margin-top: 0.7rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(90, 52, 43, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-grid,
  .contact-grid,
  .footer-grid,
  .cards-grid,
  .catalog-grid,
  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 250, 247, 0.96);
    border: 1px solid rgba(90, 52, 43, 0.1);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero,
  .highlights,
  .catalog-section,
  .recipes-section,
  .contact-section,
  .feature-band {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .feature-grid h2 {
    line-height: 1.02;
  }

  .hero-card {
    min-height: 280px;
  }
}
