@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --red-900: #5f120d;
  --red-700: #8a1f18;
  --red-500: #b0351f;
  --gold-500: #c79b2c;
  --saffron-500: #e39a1b;
  --saffron-300: #f4c45f;
  --brown-900: #2f1e14;
  --brown-700: #4a2f1e;
  --brown-300: #c19b7a;
  --cream-100: #fff9f2;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(95, 18, 13, 0.14);
  --shadow-strong: 0 18px 40px rgba(95, 18, 13, 0.2);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--brown-900);
  background: radial-gradient(circle at top right, #ffe7c5 0%, var(--cream-100) 42%, #fff5e9 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  color: var(--red-900);
  margin-bottom: 0.9rem;
}

.section-subtitle {
  max-width: 60ch;
  color: var(--brown-700);
  margin-bottom: 2rem;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(120deg, rgba(255, 249, 242, 0.96), rgba(255, 234, 204, 0.97));
  border-bottom: 1px solid rgba(95, 18, 13, 0.08);
  backdrop-filter: blur(6px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--red-900);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 249, 242, 0.55);
  padding: 2px;
  box-shadow: 0 8px 14px rgba(95, 18, 13, 0.15);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
}

.nav-links a {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brown-700);
  transition: all 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(176, 53, 31, 0.12);
  color: var(--red-900);
}

.nav-toggle {
  border: 0;
  background: transparent;
  display: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--red-900);
  position: relative;
  border-radius: 99px;
  transition: all 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.hero {
  padding: 5.4rem 0 4.2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(47, 30, 20, 0.58), rgba(95, 18, 13, 0.58)), url('../images/hero-spices.svg') center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(244, 196, 95, 0.24), transparent 45%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  color: var(--white);
  line-height: 1.12;
}

.tagline {
  display: inline-block;
  margin: 1.2rem 0 0.8rem;
  color: var(--saffron-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero p {
  color: #fff3dd;
  max-width: 58ch;
}

.btn-row {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: linear-gradient(130deg, var(--red-500), var(--red-700));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  background: rgba(255, 249, 242, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-accent {
  background: linear-gradient(130deg, var(--saffron-500), #cf7913);
  color: #301d10;
  box-shadow: var(--shadow-soft);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.hero-card {
  background: rgba(255, 248, 236, 0.88);
  border: 1px solid rgba(176, 53, 31, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red-900);
  margin-bottom: 0.6rem;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.hero-card li::before {
  content: '•';
  color: var(--saffron-500);
  margin-right: 0.5rem;
}

.spice-banner {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.spice-banner figure {
  border: 1px solid rgba(255, 233, 198, 0.45);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.spice-banner img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.spice-banner figcaption {
  font-size: 0.76rem;
  color: #ffe6bb;
  text-align: center;
  padding: 0.35rem 0.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.grid {
  display: grid;
  gap: 1.2rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid rgba(95, 18, 13, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.card-media {
  height: 190px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1rem 1.2rem;
}

.card-title {
  font-family: 'Playfair Display', serif;
  color: var(--red-900);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0 1rem;
}

.badge {
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #fff2db;
  border: 1px solid rgba(195, 127, 31, 0.25);
  color: #6c3b0d;
  font-size: 0.82rem;
  font-weight: 700;
}

.category-chip {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(138, 31, 24, 0.12);
  color: var(--red-700);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
}

.info-card {
  background: linear-gradient(140deg, #fffaf2, #fff0dc);
  border: 1px solid rgba(95, 18, 13, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red-900);
  margin-bottom: 0.55rem;
}

.section-warm {
  background: linear-gradient(170deg, #fff5e6, #ffe8c7);
  border-top: 1px solid rgba(95, 18, 13, 0.08);
  border-bottom: 1px solid rgba(95, 18, 13, 0.08);
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(95, 18, 13, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0.1rem;
  left: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: rgba(199, 155, 44, 0.35);
}

.review-card p {
  color: var(--brown-700);
  margin-bottom: 0.8rem;
}

.review-card h4 {
  color: var(--red-900);
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
}

.review-card small {
  color: #6f4b33;
}

.section-cta {
  padding-top: 1.2rem;
}

.cta-box {
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, #5f120d 0%, #7f2318 55%, #a56f19 100%);
  color: #ffecd0;
  padding: 2rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 0.55rem;
}

.cta-box p {
  max-width: 56ch;
  margin: 0 auto;
  color: #ffe2b5;
}

.cta-box .btn-row,
.cta-box .btn {
  margin-top: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.3rem;
}

.form-card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(95, 18, 13, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 700;
  color: var(--brown-700);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(95, 18, 13, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.8rem;
  font: inherit;
  background: #fffcf7;
}

input:focus,
textarea:focus {
  border-color: var(--red-500);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(176, 53, 31, 0.16);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

.notice {
  margin-top: 0.75rem;
  font-size: 0.93rem;
  color: var(--brown-700);
}

.list-clean {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.list-clean strong {
  color: var(--red-900);
}

.legal-content {
  display: grid;
  gap: 1.1rem;
}

.legal-block {
  background: var(--white);
  border: 1px solid rgba(95, 18, 13, 0.12);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.legal-block h3 {
  font-family: 'Playfair Display', serif;
  color: var(--red-900);
  margin-bottom: 0.45rem;
}

.footer {
  margin-top: 2rem;
  background: linear-gradient(140deg, #3d2417, #5f120d);
  color: #ffe8ca;
  padding: 2.2rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
}

.footer-logo {
  width: clamp(120px, 20vw, 170px);
  height: auto;
  object-fit: contain;
  margin-bottom: 0.65rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #ffd79e;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff4de;
}

.footer small {
  display: block;
  margin-top: 1rem;
  color: #f9d4a3;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff6e9;
    border-bottom: 1px solid rgba(95, 18, 13, 0.1);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: 0.24s ease;
  }

  .navbar.menu-open .nav-links {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: all;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.6rem;
  }

  .spice-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spice-banner img {
    height: 90px;
  }

  .btn-row {
    gap: 0.7rem;
  }
}
