:root {
  --bg: #fbf8f1;
  --surface: #fffdf8;
  --surface-soft: #f3eadc;
  --text: #1f1d19;
  --muted: #6f685d;
  --line: #ded2bd;
  --accent: #9b7a3b;
  --accent-dark: #6c5328;
  --shadow: 0 18px 45px rgba(35, 31, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--surface-soft);
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid rgba(222, 210, 189, 0.75);
  backdrop-filter: blur(14px);
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.language-switcher button {
  min-width: 42px;
  min-height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.language-switcher button.is-active {
  background: var(--text);
  color: var(--surface);
}

.brand-hero,
.product-hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #191713;
}

.brand-hero img,
.product-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.brand-hero::after,
.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.58));
}

.brand-hero__content,
.product-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 96px clamp(22px, 7vw, 90px);
  color: #fffdf7;
}

.brand-hero h1,
.product-hero h1,
.section-heading h2,
.product-identity h2,
.split-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

.brand-hero h1,
.product-hero h1 {
  font-size: clamp(2.8rem, 12vw, 6.6rem);
  max-width: 720px;
}

.brand-hero p,
.product-hero p {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: clamp(1.02rem, 4vw, 1.32rem);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-hero .eyebrow,
.product-hero .eyebrow {
  color: #e2c987;
}

.section {
  padding: clamp(58px, 10vw, 112px) clamp(20px, 6vw, 76px);
}

.section--tint {
  background: var(--surface-soft);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.product-identity h2,
.split-section h2 {
  font-size: clamp(2rem, 7vw, 4rem);
}

.section-heading p:not(.eyebrow),
.product-identity p,
.split-section p {
  color: var(--muted);
  font-size: 1.02rem;
}

.info-grid,
.product-grid,
.note-grid {
  display: grid;
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.info-card,
.product-card,
.note-card {
  background: var(--surface);
  border: 1px solid rgba(222, 210, 189, 0.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-card,
.note-card {
  padding: 24px;
}

.info-card--link {
  display: block;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.info-card--link:hover,
.info-card--link:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 22px 52px rgba(35, 31, 26, 0.13);
  transform: translateY(-2px);
}

.info-card--link:focus-visible {
  outline: 3px solid rgba(155, 122, 59, 0.35);
  outline-offset: 4px;
}

.info-card h3,
.product-card h3,
.note-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 500;
}

.info-card p,
.product-card p,
.note-card p {
  margin: 0;
  color: var(--muted);
}

.product-card {
  overflow: hidden;
}

.product-card--link {
  display: block;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card--link:hover,
.product-card--link:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 22px 52px rgba(35, 31, 26, 0.13);
  transform: translateY(-2px);
}

.product-card--link:focus-visible {
  outline: 3px solid rgba(155, 122, 59, 0.35);
  outline-offset: 4px;
}

.product-card img {
  aspect-ratio: 4 / 3;
}

.product-card div {
  padding: 20px;
}

.product-card .button {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--text);
  border-radius: 999px;
  background: var(--text);
  color: var(--surface);
  font-weight: 700;
  cursor: pointer;
}

.button--light {
  margin-top: 28px;
  border-color: #fffdf7;
  background: #fffdf7;
  color: var(--text);
}

.button--outline {
  background: transparent;
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.article-section {
  width: min(920px, 100%);
  margin: 0 auto;
}

.article-prose {
  display: grid;
  gap: 22px;
}

.article-prose p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.collection-link {
  text-align: center;
}

.collection-link .button {
  margin-top: 12px;
}

.product-identity,
.split-section {
  display: grid;
  gap: 32px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-identity img {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mood {
  margin-top: 22px;
  color: var(--accent-dark);
  font-weight: 700;
}

.ingredient-list,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredient-list {
  display: grid;
  gap: 10px;
}

.ingredient-list li,
.detail-list span {
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.detail-list {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
  margin: 0 auto;
}

.contact-section {
  text-align: center;
}

.product-grid--compact .product-card:nth-child(n + 4) {
  display: none;
}

.site-footer {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 42px 20px;
  background: #171511;
  color: #fffdf7;
  text-align: center;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.12em;
}

.site-footer span {
  color: #d5c9b5;
}

@media (min-width: 720px) {
  .info-grid,
  .note-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 960px) {
  .product-identity,
  .split-section {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .product-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .language-switcher button {
    flex: 1;
  }

  .brand-hero,
  .product-hero {
    min-height: 70vh;
  }
}
