:root {
  --cream: #fff8ef;
  --vanilla: #f8eadc;
  --brown: #5f4333;
  --dark: #2f241f;
  --soft-brown: #7d6a5d;
  --rose: #d99b85;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(66, 43, 30, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--dark);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 7%;
  background: rgba(255, 248, 239, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(95, 67, 51, 0.12);
}

.brand {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 28px;
  font-weight: bold;
  color: var(--brown);
}

.brand-tagline {
  margin-top: 5px;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--soft-brown);
}

.nav {
  display: flex;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--brown);
}

.nav a:hover {
  color: var(--rose);
}

/* Hero */

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  background:
    linear-gradient(rgba(47, 36, 31, 0.38), rgba(47, 36, 31, 0.48)),
    url("images/hero-bread.jpg") center/cover;
  color: var(--cream);
}

.hero-content {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  font-family: Arial, sans-serif;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -2px;
}

.hero-text {
  max-width: 680px;
  margin-top: 26px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 248, 239, 0.92);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--brown);
}

/* Common Sections */

.section {
  padding: 86px 7%;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.fermentation-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  color: var(--dark);
}

.section-heading p,
.fermentation-content p {
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 17px;
  line-height: 1.85;
}

.intro-section {
  background: var(--cream);
}

.cards-section {
  background: var(--vanilla);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  padding: 32px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(66, 43, 30, 0.1);
  border: 1px solid rgba(95, 67, 51, 0.08);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 27px;
  color: var(--brown);
}

.card p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  line-height: 1.7;
}

/* Long Fermentation Section */

.fermentation-section {
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.45), rgba(255, 248, 239, 0.55)),
    url("images/starter-bigholes.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fermentation-content {
  max-width: 760px;
}

.fermentation-content .btn {
  margin-top: 22px;
}

/* Footer */

.footer {
  padding: 34px 7%;
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Tablet */

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 620px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .site-header {
    padding: 18px 5%;
  }

  .hero,
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}
/* Inner Page Hero */

.page-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  color: var(--cream);
}

.page-hero-content {
  max-width: 780px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.page-hero p {
  max-width: 660px;
  margin-top: 24px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 248, 239, 0.92);
}

.meet-hero {
  background:
    linear-gradient(rgba(47, 36, 31, 0.42), rgba(47, 36, 31, 0.55)),
    url("images/baguette-crumb.jpg") center/cover;
}

/* Meet Jeena Page */

.profile-section {
  background: var(--cream);
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.profile-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.profile-text h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  color: var(--dark);
}

.profile-text p {
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 17px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}
/* Bread Science Page */

.science-hero {
  background:
    linear-gradient(rgba(47, 36, 31, 0.42), rgba(47, 36, 31, 0.55)),
    url("images/sourdough-crumb.jpg") center/cover;
}

.science-intro {
  background: var(--cream);
}

.question-section {
  background: var(--vanilla);
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.question-card {
  background: var(--white);
  padding: 30px;
  border-radius: 28px;
  box-shadow: 0 16px 40px rgba(66, 43, 30, 0.1);
  border: 1px solid rgba(95, 67, 51, 0.08);
}

.question-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  color: var(--brown);
}

.question-card p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  line-height: 1.75;
  font-size: 16px;
}

.science-feature {
  min-height: 540px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(rgba(255, 248, 239, 0.50), rgba(255, 248, 239, 0.62)),
    url("images/baguette-crumb-zoom.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.science-feature-content {
  max-width: 780px;
}

.science-feature-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  color: var(--dark);
}

.science-feature-content p {
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 17px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .question-grid {
    grid-template-columns: 1fr;
  }
}
/* Recipes & Experiments Page */

.experiments-hero {
  background:
    linear-gradient(rgba(47, 36, 31, 0.42), rgba(47, 36, 31, 0.55)),
    url("images/croissant-crust.jpg") center/cover;
}

.experiment-intro {
  background: var(--cream);
}

.experiment-section {
  background: var(--vanilla);
}

.experiment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.experiment-card {
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(66, 43, 30, 0.1);
  border: 1px solid rgba(95, 67, 51, 0.08);
}

.experiment-image {
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-sourdough {
  background-image: url("images/sourdoughwhite.jpg");
}

.image-croissant {
  background-image: url("images/croissant.jpg");
}

.image-baguette {
  background-image: url("images/baguette-crumb.jpg");
}

.experiment-content {
  padding: 28px;
}

.experiment-tag {
  margin: 0 0 10px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--rose);
}

.experiment-content h3 {
  margin: 0 0 14px;
  font-size: 26px;
  color: var(--brown);
}

.experiment-content p {
  margin: 0 0 18px;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  line-height: 1.75;
}

.experiment-content ul {
  margin: 0;
  padding-left: 20px;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  line-height: 1.8;
}

.notes-section {
  background: var(--cream);
}

.notes-content {
  max-width: 1100px;
  margin: 0 auto;
}

.notes-content h2 {
  margin: 0 0 40px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  color: var(--dark);
  text-align: center;
}

.notes-content .eyebrow {
  text-align: center;
}

.notes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.note-item {
  background: var(--white);
  padding: 28px;
  border-radius: 26px;
  box-shadow: 0 14px 36px rgba(66, 43, 30, 0.08);
  border: 1px solid rgba(95, 67, 51, 0.08);
}

.note-item h3 {
  margin: 0 0 12px;
  color: var(--brown);
  font-size: 24px;
}

.note-item p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .experiment-grid,
  .notes-list {
    grid-template-columns: 1fr;
  }
}
/* Contact Page */

.contact-hero {
  background:
    linear-gradient(rgba(47, 36, 31, 0.42), rgba(47, 36, 31, 0.55)),
    url("images/painsuisseauchocolat.jpg") center/cover;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: start;
}

.contact-text h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  color: var(--dark);
}

.contact-text p {
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 17px;
  line-height: 1.85;
}

.contact-card {
  background: var(--white);
  padding: 34px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(95, 67, 51, 0.08);
}

.contact-card h3 {
  margin: 0 0 24px;
  font-size: 30px;
  color: var(--brown);
}

.contact-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(95, 67, 51, 0.12);
}

.contact-item span {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}

.contact-item p {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 16px;
}

.small-note {
  margin: 22px 0 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--soft-brown);
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.article-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  text-decoration: underline;
  color: #6b4a34;
}

.article-link:hover {
  color: var(--rose);
}
/* ================================
   Maida Article Page
================================ */

.article-hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 90px 7%;
  color: var(--cream);
}

.maida-hero {
  background:
    linear-gradient(rgba(47, 36, 31, 0.45), rgba(47, 36, 31, 0.58)),
    url("images/maida.jpg") center/cover;
}

.article-hero-content {
  max-width: 850px;
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1;
  letter-spacing: -1.5px;
}

.article-hero p {
  max-width: 720px;
  margin-top: 24px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 248, 239, 0.92);
}

.article-page {
  background: var(--cream);
  padding: 80px 7%;
}

.article-shell {
  max-width: 980px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 34px;
  padding: 56px;
  box-shadow: var(--shadow);
}

.article-section {
  margin-bottom: 56px;
}

.article-section:last-child {
  margin-bottom: 0;
}

.article-section h2 {
  margin: 0 0 22px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  color: var(--dark);
}

.article-section h3 {
  margin: 28px 0 14px;
  font-size: 26px;
  color: var(--brown);
}

.article-section p {
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.article-label {
  font-family: Arial, sans-serif;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-image {
  margin: 34px 0;
}

.article-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(66, 43, 30, 0.12);
}

.article-image.small img {
  max-width: 620px;
  max-height: 360px;
  margin: 0 auto;
}

.article-image figcaption {
  margin-top: 12px;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 14px;
  text-align: center;
}

.article-callout {
  background: var(--vanilla);
  border-left: 6px solid var(--rose);
  padding: 26px;
  border-radius: 22px;
  margin: 30px 0;
}

.article-callout p {
  margin: 0;
  color: var(--brown);
  font-weight: 700;
}

.article-list {
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  line-height: 1.9;
  font-size: 17px;
}

.myth-grid,
.comparison-grid,
.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 34px 0;
}

.article-card {
  background: var(--cream);
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(95, 67, 51, 0.10);
}

.article-card h3 {
  margin-top: 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 34px 0;
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  overflow: hidden;
  border-radius: 20px;
}

.nutrition-table th {
  background: var(--brown);
  color: var(--cream);
  padding: 16px;
  text-align: left;
}

.nutrition-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(95, 67, 51, 0.12);
  color: var(--soft-brown);
}

.nutrition-table tr:nth-child(even) {
  background: var(--cream);
}

.article-ending {
  background: var(--vanilla);
  padding: 38px;
  border-radius: 30px;
  text-align: center;
}

.article-ending h2 {
  color: var(--brown);
}

.article-ending .btn {
  margin-top: 18px;
}

@media (max-width: 800px) {
  .article-shell {
    padding: 30px 22px;
  }

  .article-page {
    padding: 50px 5%;
  }

  .myth-grid,
  .comparison-grid,
  .culture-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 70px 5%;
  }
}
.culture-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  margin-bottom: 16px;
}

.culture-img-croissant {
  object-position: center 60%;
}
.article-image.small {
  text-align: center;
}

.article-image.small img {
  width: 100%;
  max-width: 620px;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
  display: block;
}

.orange-image {
  margin-top: 34px;
  margin-bottom: 38px;
}
.inline-article-image {
  max-width: 320px;
  margin: 8px 0 22px;
}

.inline-article-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(66, 43, 30, 0.12);
  display: block;
}

.inline-article-image figcaption {
  margin-top: 10px;
  font-family: Arial, sans-serif;
  color: var(--soft-brown);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.image-right {
  float: right;
  margin-left: 28px;
}

.image-left {
  float: left;
  margin-right: 28px;
}

@media (max-width: 700px) {
  .inline-article-image,
  .image-right,
  .image-left {
    float: none;
    max-width: 100%;
    margin: 24px auto;
  }
}
/* PEOPLE WHO MADE JEENA */

.people-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
}

.people-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}
.people-header .eyebrow {
  margin-top: 0;
}

.people-intro {
  font-size: 1.1rem;
  line-height: 1.9;
}

.people-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.people-layout img {
  transition: transform 0.5s ease;
}

.people-layout img:hover {
  transform: scale(1.04);
}
.people-quote {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.4rem;
  font-style: italic;
  color: #6b4a34;
}
.companion-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.companion-card {
  margin-top: 2rem;
}

.companion-card img {
  width: 100%;
  height: 500px;        
  object-fit: cover;    
  object-position: center center;
}

.companion-caption {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid #d8c3a5;
}

.caption-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #a07b5f;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.companion-caption p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #4a3728;
  font-style: italic;
}
.profile-text a {
  color: var(--rose);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.profile-text a:hover {
  color: var(--brown);
  border-bottom: 1px solid var(--rose);
}