/* ============================================
   Boissellerie Saint Joseph — Stylesheet
   Warm, editorial, artisanal aesthetic
   ============================================ */

:root {
  /* Brand */
  --brown-deep: #7f4c24;
  --brown-tan: #be8a59;
  --brown-darker: #5a3618;
  --brown-soft: #d8b78c;

  /* Neutrals */
  --cream: #f5efe5;
  --cream-warm: #ede2cf;
  --paper: #faf6ee;
  --ink: #2a1d12;
  --ink-soft: #4a3826;
  --line: rgba(127, 76, 36, 0.18);

  /* Accents */
  --gold: #c9a063;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 4px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  /* Subtle paper texture */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(190, 138, 89, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(127, 76, 36, 0.03) 0%, transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-deep);
  margin: 0 0 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brown-deep);
}
.eyebrow--light {
  color: var(--brown-soft);
}
.eyebrow--light::before { background: var(--brown-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0 0 1.6rem;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  color: var(--brown-deep);
  font-weight: 500;
}
.section-title--light { color: var(--paper); }
.section-title--light em { color: var(--brown-tan); }

.section-lede {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch;
  line-height: 1.5;
  margin: 0 0 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--brown-deep);
  color: var(--paper);
  border: 1px solid var(--brown-deep);
}
.btn--primary:hover {
  background: var(--brown-darker);
  border-color: var(--brown-darker);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(127, 76, 36, 0.5);
}
.btn--ghost {
  border: 1px solid var(--brown-deep);
  color: var(--brown-deep);
}
.btn--ghost:hover {
  background: var(--brown-deep);
  color: var(--paper);
}

/* ---------- Announcement ---------- */
.announce {
  background: var(--brown-darker);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.announce__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.55rem var(--gutter);
  text-align: center;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.header__mark {
  height: 44px;
  width: auto;
}
.header__wordmark {
  height: 46px;
  width: auto;
  display: none;
}
@media (min-width: 700px) {
  .header__mark { display: none; }
  .header__wordmark { display: block; }
}

.nav { justify-self: center; display: none; }
@media (min-width: 960px) { .nav { display: block; } }
.nav ul {
  display: flex;
  gap: 2.4rem;
}
.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brown-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.nav a:hover { color: var(--brown-deep); }
.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.lang-btn {
  padding: 0.35rem 0.5rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.lang-btn.is-active {
  color: var(--brown-deep);
  font-weight: 600;
}
.lang-btn:hover { color: var(--brown-deep); }
.lang-sep { color: var(--line); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
@media (min-width: 960px) { .menu-toggle { display: none; } }
.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s;
}

/* Mobile nav drawer */
.nav.is-open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--paper);
  padding: 1.5rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.nav.is-open ul {
  flex-direction: column;
  gap: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--gutter) clamp(2.5rem, 5vw, 4.5rem);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 1.6rem;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--brown-deep);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.18em;
  background: linear-gradient(90deg, var(--brown-tan), transparent);
  opacity: 0.35;
  z-index: -1;
}
.hero__lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.hero__marks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero__marks li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__marks strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1;
}
.hero__marks span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: visible;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow:
    0 30px 60px -30px rgba(127, 76, 36, 0.35),
    0 1px 0 rgba(127, 76, 36, 0.1);
}
.hero__badge {
  position: absolute;
  bottom: -36px;
  left: -36px;
  width: 120px;
  height: 120px;
  background: var(--brown-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  animation: spin 24s linear infinite;
  box-shadow: 0 12px 30px -10px rgba(127, 76, 36, 0.5);
}
.hero__badge svg { width: 100%; height: 100%; }
.badge-text {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.15em;
  font-weight: 500;
  fill: var(--cream);
}
.badge-mono {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  fill: var(--cream);
  font-weight: 500;
}
.badge-mono--small {
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.2em;
  font-weight: 400;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 900px) {
  .hero__badge {
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
  }
  .badge-text { font-size: 10px; }
  .badge-mono { font-size: 18px; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brown-deep);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.marquee__track span {
  padding-right: 2rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Manifesto ---------- */
.manifesto {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}
.manifesto__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.manifesto .section-title {
  margin-bottom: 4rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  text-align: left;
}
@media (min-width: 760px) {
  .manifesto__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.pillar {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brown-tan);
  margin-bottom: 1rem;
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: var(--ink);
  line-height: 1.2;
}
.pillar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ---------- Collection ---------- */
.collection {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) clamp(4rem, 8vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
}
.collection__head {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.collection__head .section-title {
  display: block;
}
.collection__head .section-title em { display: inline; }
.collection__head .section-lede { margin: 0 auto; }

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .card--lg { grid-column: span 2; }
  .card--wide { grid-column: span 2; }
  .card--feature { grid-column: span 1; }
}
@media (min-width: 1080px) {
  .cards {
    grid-template-columns: repeat(4, 1fr);
  }
  .card--lg { grid-column: span 2; grid-row: span 2; }
  .card--wide { grid-column: span 4; }
  .card--feature { grid-column: span 1; }
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  border: 1px solid transparent;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(127, 76, 36, 0.25);
  border-color: var(--line);
}
.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-warm);
  position: relative;
}
.card--lg .card__media { aspect-ratio: 4 / 5; }
.card--wide .card__media { aspect-ratio: 16 / 9; }
.card--feature .card__media { aspect-ratio: 4 / 3; }
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__ribbon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--brown-deep);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 12px -4px rgba(127, 76, 36, 0.5);
  z-index: 1;
}
.card__ribbon::before {
  content: '✦';
  color: var(--brown-tan);
  font-size: 12px;
  line-height: 1;
}

.card__body {
  padding: 1.6rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-deep);
  margin-bottom: 0.6rem;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  line-height: 1.2;
  color: var(--ink);
}
.card--lg h3 { font-size: 1.9rem; }
.card p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.card__price {
  margin-top: auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown-deep);
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

/* ---------- Quote ---------- */
.quote {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--cream-warm);
  position: relative;
}
.quote::before, .quote::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 60px;
  height: 1px;
  background: var(--brown-tan);
  transform: translateX(-50%);
}
.quote::before { top: 3rem; }
.quote::after { bottom: 3rem; }

.quote__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--brown-deep);
}
.quote__mark {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  color: var(--brown-tan);
}
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.quote__attr {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-deep);
  margin: 0;
}

/* ---------- Story ---------- */
.story {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.story__img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(127, 76, 36, 0.4);
}
.story__img--main {
  position: absolute;
  inset: 0;
}
.story__img--inset {
  position: absolute;
  width: 45%;
  height: auto;
  aspect-ratio: 1;
  bottom: -6%;
  right: -4%;
  border: 8px solid var(--paper);
  z-index: 2;
  box-shadow: 0 20px 40px -20px rgba(127, 76, 36, 0.5);
}
.story__year {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 1.4rem 1.8rem;
  z-index: 3;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -10px rgba(127, 76, 36, 0.5);
}
.story__year-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.85;
}
.story__year-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}

.story__copy p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.story__copy p:first-of-type {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.story__values {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.story__values li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.story__values-num {
  font-style: italic;
  color: var(--brown-tan);
  font-size: 0.9rem;
  min-width: 28px;
}

/* ---------- Process ---------- */
.process {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--brown-darker);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(190, 138, 89, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(190, 138, 89, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.process__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.process .section-title {
  margin-bottom: 4rem;
  max-width: 24ch;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  counter-reset: step;
}
@media (min-width: 700px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}
@media (min-width: 1000px) {
  .process__steps { grid-template-columns: repeat(4, 1fr); }
}
.process__steps li {
  border-top: 1px solid rgba(190, 138, 89, 0.3);
  padding-top: 1.5rem;
}
.process__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--brown-tan);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.process__steps h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 0.6rem;
  color: var(--paper);
}
.process__steps p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(245, 239, 229, 0.7);
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--cream-warm);
}
.contact__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.contact__copy p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 42ch;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.contact__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.95rem;
}
.contact__label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-deep);
  font-weight: 600;
}
.contact__list a {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.contact__list a:hover { color: var(--brown-deep); }

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact__form span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-deep);
  font-weight: 500;
}
.contact__form input,
.contact__form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--brown-deep);
  box-shadow: 0 0 0 3px rgba(127, 76, 36, 0.1);
}
.contact__form textarea {
  resize: vertical;
  font-family: var(--sans);
}
.contact__form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}
.form-success {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown-deep);
  margin: 0;
  padding: 1rem;
  background: rgba(127, 76, 36, 0.06);
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter) 1.5rem;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 239, 229, 0.12);
}
@media (min-width: 800px) {
  .footer__top {
    grid-template-columns: 1.4fr 2fr 1fr;
    gap: 3rem;
  }
}

.footer__wordmark {
  height: 56px;
  width: auto;
  margin-bottom: 1.2rem;
  /* Lighten the brown to a warm cream for dark footer */
  filter: brightness(0) saturate(100%) invert(89%) sepia(11%) saturate(580%) hue-rotate(347deg) brightness(96%) contrast(89%);
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(245, 239, 229, 0.75);
  margin: 0 0 1rem;
  max-width: 32ch;
}
.footer__est {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-tan);
  margin: 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
.footer__col h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 1rem;
  color: var(--brown-tan);
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col a {
  font-size: 0.92rem;
  color: rgba(245, 239, 229, 0.75);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--paper); }

.lang-switch--footer {
  margin-top: 1.5rem;
  font-size: 13px;
}
.lang-switch--footer .lang-btn {
  color: rgba(245, 239, 229, 0.6);
  padding: 0.3rem 0;
}
.lang-switch--footer .lang-btn.is-active {
  color: var(--brown-tan);
}
.lang-switch--footer .lang-sep {
  color: rgba(245, 239, 229, 0.3);
  margin: 0 0.3rem;
}

.footer__mark-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 800px) {
  .footer__mark-block { align-items: flex-end; text-align: right; }
}
.footer__mark {
  height: 70px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(89%) sepia(11%) saturate(580%) hue-rotate(347deg) brightness(96%) contrast(89%);
}
.footer__pride {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown-tan);
  margin: 0;
  max-width: 18ch;
}

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12px;
  color: rgba(245, 239, 229, 0.5);
}
.footer__bottom a {
  color: rgba(245, 239, 229, 0.7);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--paper); }

/* ---------- Reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__copy > * {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .hero__copy > *:nth-child(1) { animation-delay: 0.1s; }
  .hero__copy > *:nth-child(2) { animation-delay: 0.2s; }
  .hero__copy > *:nth-child(3) { animation-delay: 0.3s; }
  .hero__copy > *:nth-child(4) { animation-delay: 0.4s; }
  .hero__copy > *:nth-child(5) { animation-delay: 0.5s; }
  .hero__visual {
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s forwards;
  }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BAKERY SECTION
   ============================================ */
.bakery {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--cream);
  position: relative;
}
.bakery__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .bakery__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .bakery__copy { order: 1; }
  .bakery__visual { order: 2; }
}
.bakery__copy p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 46ch;
}
.bakery__feats {
  margin: 1.5rem 0 1.5rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bakery__feats li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
  padding-left: 1.8rem;
  position: relative;
}
.bakery__feats li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--brown-tan);
  font-size: 0.85em;
  font-style: normal;
}
.bakery__price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-deep);
  margin: 0;
}
.bakery__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.bakery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(127, 76, 36, 0.4);
}

/* ============================================
   HOME ESSENTIALS SECTION
   ============================================ */
.essentials {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.essentials__head {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.essentials__head .section-lede { margin: 0 auto; }

.essentials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}
@media (min-width: 720px) {
  .essentials__grid { grid-template-columns: repeat(2, 1fr); }
  .essential-card--feature { grid-column: span 2; }
}
@media (min-width: 1080px) {
  .essentials__grid { grid-template-columns: repeat(3, 1fr); }
  .essential-card--feature { grid-column: span 3; }
}

.essential-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
  border: 1px solid transparent;
}
.essential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(127, 76, 36, 0.25);
  border-color: var(--line);
}
.essential-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--cream-warm);
}
.essential-card--feature .essential-card__media {
  aspect-ratio: 21 / 9;
}
.essential-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.essential-card:hover .essential-card__media img { transform: scale(1.04); }
.essential-card__body {
  padding: 1.6rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.essential-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0.6rem 0 0.6rem;
  line-height: 1.2;
  color: var(--ink);
}
.essential-card--feature h3 { font-size: 1.9rem; }
.essential-card p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}
.essential-card .card__price {
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  color: var(--brown-deep);
}

/* ============================================
   RETAIL / SUPERMARKETS SECTION
   ============================================ */
.retail {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  background: var(--cream-warm);
}
.retail__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .retail__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.retail__visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(127, 76, 36, 0.4);
}
.retail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.retail__copy p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 46ch;
}
.retail__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.retail__cities li {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.retail__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown-tan);
  box-shadow: 0 0 0 4px rgba(190, 138, 89, 0.18);
}

/* ============================================
   OUR STORY PAGE
   ============================================ */
.story-hero {
  padding: clamp(3.5rem, 6vw, 5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.story-hero__inner {
  max-width: 760px;
  margin: 0 auto;
}
.story-hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0.5rem 0 1.5rem;
  color: var(--ink);
}
.story-hero__title em {
  font-style: italic;
  color: var(--brown-deep);
}
.story-hero__lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 auto;
}

.story-main {
  padding: clamp(2.5rem, 5vw, 4rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.story-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .story-main__grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.story-main__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.story-main__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(127, 76, 36, 0.4);
}
.story-main__year {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--brown-deep);
  color: var(--cream);
  padding: 1.4rem 1.8rem;
  z-index: 3;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px -10px rgba(127, 76, 36, 0.5);
}
.story-main__year-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  opacity: 0.85;
}
.story-main__year-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.story-main__copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.2rem;
  line-height: 1.15;
}
.story-main__copy p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}

.story-break {
  position: relative;
  height: clamp(320px, 50vh, 520px);
  overflow: hidden;
  margin: clamp(2.5rem, 5vw, 4rem) 0;
}
.story-break__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(42, 29, 18, 0.1) 0%, rgba(42, 29, 18, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter);
}
.story-break__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--paper);
  max-width: 22ch;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.story-values-section {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.story-values-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .story-values-section__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}
.story-values-section__copy h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.2rem;
  line-height: 1.15;
}
.story-values-section__copy p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
}
.story-values {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.story-values li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.story-values li:last-child { border-bottom: none; }
.story-values__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--brown-tan);
  font-weight: 500;
  min-width: 3ch;
}
.story-values h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.story-values p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.story-gallery {
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  background: var(--cream-warm);
}
.story-gallery__head {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.story-gallery__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 720px) {
  .story-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
}
.story-gallery__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.story-gallery__img:hover { transform: scale(1.02); }

.story-cta {
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
  text-align: center;
}
.story-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}
.story-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}
.story-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

/* Current page indicator in nav */
.nav a.is-current {
  color: var(--brown-deep);
}
.nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}
