/* ------------------------------------------------------------------
   Baking For Health · "Hearth" design system
   Palette: cream #F7F1E7 · dark #2A2118 · terracotta #C05E3A
   Type:    Playfair Display (display) · Mulish (body)
------------------------------------------------------------------- */

:root {
  --cream: #F7F1E7;
  --card: #FFFDF8;
  --card-border: #EBE0CE;
  --dark: #2A2118;
  --dark-soft: #36291E;
  --dark-border: #4A3A2B;
  --terracotta: #C05E3A;
  --terracotta-light: #E0A074;
  --copper: #C9885E;
  --ink: #2A2118;
  --body: #5E564A;
  --muted: #8A7B68;
  --muted-on-dark: #9C8B74;
  --cream-on-dark: #FBF4E8;
  --text-on-dark: #D9CBB7;
  --hairline: #E3D8C5;
  --star: #F5B544;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: var(--terracotta); }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- type helpers ---------- */

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}

.eyebrow--on-dark { color: var(--copper); }

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  text-align: center;
  background: var(--terracotta);
  color: #FFF8F0;
  text-decoration: none;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  padding: 15px 34px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn:hover { background: #A94E2D; transform: translateY(-1px); }

.btn--block { display: block; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-header__brand img {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.site-header__name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.site-nav a:hover { color: var(--terracotta); }

.site-nav .btn { padding: 11px 24px; font-size: 13px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  display: block;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--hairline);
    padding: 8px 22px 20px;
  }

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

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav .btn {
    margin-top: 16px;
    border-bottom: none;
    text-align: center;
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,22,14,0.10) 0%, rgba(30,22,14,0) 45%, rgba(30,22,14,0.35) 100%);
}

.hero__panel {
  position: relative;
  background: var(--dark);
  border-radius: 22px;
  padding: 30px 26px;
  margin: 0 16px 20px;
  max-width: 560px;
  text-align: center;
}

.hero__panel .eyebrow {
  color: var(--terracotta-light);
  display: block;
  margin-bottom: 13px;
}

.hero__panel h1 {
  font-weight: 500;
  font-size: clamp(32px, 8.6vw, 52px);
  line-height: 1.08;
  color: #FFFCF6;
  margin: 0 0 14px;
  text-wrap: balance;
}

.hero__tagline {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  margin: 0 0 24px;
}

@media (min-width: 761px) {
  .hero { min-height: 620px; }

  .hero__panel {
    margin: 0 auto 40px;
    width: calc(100% - 44px);
  }
}

/* On phones, stack the photo above the panel so the bread is never hidden */
@media (max-width: 760px) {
  .hero {
    display: block;
    min-height: 0;
    background: var(--dark);
  }

  .hero__image {
    position: static;
    width: 100%;
    height: 300px;
    object-position: 50% 42%;
  }

  .hero__scrim { display: none; }

  .hero__panel {
    margin: -30px 14px 22px;
    max-width: none;
    padding-top: 26px;
  }
}

/* ---------- intro statement ---------- */

.intro {
  padding-top: 64px;
  padding-bottom: 58px;
  text-align: center;
}

.intro .eyebrow { display: block; margin-bottom: 18px; }

.intro p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  max-width: 760px;
  margin: 0 auto;
}

.hairline {
  height: 1px;
  background: var(--hairline);
  max-width: 1056px;
  margin: 0 auto;
}

/* ---------- workshop cards ---------- */

.workshops {
  padding-top: 58px;
  padding-bottom: 16px;
}

.workshops__heading {
  text-align: center;
  margin-bottom: 34px;
}

.workshops__heading h2 {
  font-weight: 600;
  font-size: clamp(27px, 3.4vw, 36px);
  margin: 0 0 8px;
}

.workshops__heading p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

.workshops__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 720px) {
  .workshops__grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

.workshop-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.workshop-card__image {
  height: 200px;
  overflow: hidden;
}

.workshop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workshop-card__body { padding: 24px; }

.workshop-card__body .eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  display: block;
  margin-bottom: 10px;
}

.workshop-card__body h3 {
  font-weight: 600;
  font-size: 23px;
  margin: 0 0 10px;
}

.workshop-card__body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #6E6457;
  margin: 0;
}

/* ---------- workshop card "read more" ---------- */

.workshop-card__body { display: flex; flex-direction: column; }

.workshop-more { margin-top: 16px; }

.workshop-more > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.workshop-more > summary::-webkit-details-marker { display: none; }

.workshop-more > summary::after {
  content: "+";
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
}

.workshop-more[open] > summary::after { content: "\2013"; }

.workshop-more > summary:hover { color: #A94E2D; }

.workshop-more__content {
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
}

.workshop-more__content h4 {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 9px;
}

.workshop-more__content ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.workshop-more__content li {
  font-size: 14.5px;
  line-height: 1.55;
  color: #6E6457;
  margin-bottom: 5px;
}

.workshop-more__content p {
  font-size: 14.5px;
  line-height: 1.62;
  color: #6E6457;
  margin: 0 0 16px;
}

.workshop-more__content > :last-child { margin-bottom: 0; }

/* ---------- "coming soon" workshop card ---------- */

.workshop-card__ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--terracotta);
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(42, 33, 24, 0.18);
}

.workshop-card__image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F3E7D5, #E7D2BC);
  color: var(--copper);
}

.workshop-card__image--placeholder span {
  font-size: 52px;
  line-height: 1;
}

.workshop-card--soon .workshop-card__image--placeholder { filter: saturate(0.92); }

.workshop-soon-note {
  margin-top: 16px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- stats ---------- */

.stats { padding-top: 48px; padding-bottom: 56px; }

.stats__list {
  max-width: 720px;
  margin: 0 auto;
}

.stats__row {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--hairline);
}

.stats__value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--terracotta);
  line-height: 1;
  min-width: 78px;
}

.stats__label {
  font-size: 15px;
  color: #514A3F;
  line-height: 1.5;
}

.stats__note {
  font-size: 14.5px;
  color: var(--muted);
  text-align: center;
  margin: 26px auto 0;
  max-width: 560px;
}

/* ---------- testimonials (dark) ---------- */

.testimonials {
  background: var(--dark);
  padding: 64px 0 70px;
}

.testimonials .eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.google-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
}

.google-badge__stars {
  font-size: 20px;
  color: var(--star);
  letter-spacing: 2px;
}

.google-badge__line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.google-badge__score { font-weight: 700; color: #F4EADB; }
.google-badge__on { color: #A99A86; font-size: 13px; }
.google-badge__logo { font-weight: 800; letter-spacing: -0.01em; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.testimonial { padding: 26px 0; }

.testimonial + .testimonial { border-top: 1px solid rgba(255,255,255,0.1); }

.testimonial__stars {
  font-size: 13px;
  color: var(--star);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.5;
  color: #F4EADB;
  margin: 0 0 14px;
}

.testimonial__name {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A99A86;
}

/* ---------- instagram ---------- */

.instagram {
  padding-top: 62px;
  padding-bottom: 56px;
  text-align: center;
}

.instagram h2 {
  font-weight: 600;
  font-size: clamp(25px, 3vw, 32px);
  margin: 0 0 8px;
}

.instagram__handle {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 26px;
}

.instagram__handle:hover { color: var(--terracotta); }

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram__grid > div {
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
}

.instagram__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram__grid img:hover { transform: scale(1.04); }

/* ---------- workshops page ---------- */

.page-intro { padding-top: 56px; padding-bottom: 40px; }

.page-intro .eyebrow { display: block; margin-bottom: 16px; }

.page-intro h1 {
  font-weight: 500;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.06;
  margin: 0 0 18px;
}

.page-intro p {
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0;
}

.page-hero {
  border-radius: 22px;
  overflow: hidden;
  max-height: 480px;
}

.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pull-points {
  padding: 44px 0 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
}

@media (min-width: 720px) {
  .pull-points { grid-template-columns: 1fr 1fr; gap: 36px; max-width: none; }
}

.pull-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pull-point__mark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--terracotta);
  line-height: 1.2;
}

.pull-point p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.pull-point strong { color: var(--ink); font-weight: 700; }

.included {
  margin: 44px 0;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  padding: 30px 28px;
}

.included .eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  display: block;
  margin-bottom: 14px;
}

.included__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #EFE6D6;
}

.included__row:last-child { border-bottom: none; }

.included__label { font-size: 15px; color: #4F4839; }

.included__value {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
}

@media (min-width: 720px) {
  .included {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    align-items: start;
  }

  .included .eyebrow { grid-column: 1 / -1; }
}

/* ---------- booking ---------- */

.booking { padding-top: 24px; padding-bottom: 64px; }

.booking__panel {
  background: var(--dark);
  border-radius: 24px;
  padding: 36px 26px 32px;
}

@media (min-width: 720px) {
  .booking__panel { padding: 48px 48px 40px; }
}

.booking__panel .eyebrow {
  display: block;
  margin-bottom: 10px;
}

.booking__panel h2 {
  font-weight: 600;
  font-size: clamp(27px, 3.4vw, 36px);
  color: var(--cream-on-dark);
  margin: 0 0 8px;
  line-height: 1.1;
}

.booking__sub {
  font-size: 14.5px;
  color: var(--muted-on-dark);
  margin: 0 0 26px;
}

@media (max-width: 719px) {
  .booking__sub {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

.booking__widget {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
}

.booking__widget iframe {
  border: 0;
  border-radius: 10px;
}

.booking__note {
  font-size: 12.5px;
  color: var(--muted-on-dark);
  text-align: center;
  margin: 16px 0 0;
}

/* ---------- single testimonial ---------- */

.quote {
  padding-top: 64px;
  padding-bottom: 56px;
  text-align: center;
}

.quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 16px;
}

.quote__name {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A2917A;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--dark);
  padding: 56px 0 32px;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 36px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream-on-dark);
}

.site-footer__tag {
  font-size: 12.5px;
  color: var(--muted-on-dark);
}

.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 720px) {
  .site-footer__cols { grid-template-columns: 1fr 1fr 1fr; }
}

.site-footer__col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 700;
  margin-bottom: 15px;
}

.site-footer__col a,
.site-footer__col span {
  display: block;
  font-size: 14px;
  color: var(--text-on-dark);
  text-decoration: none;
  line-height: 1.5;
  margin-bottom: 11px;
}

.site-footer__col a:hover { color: var(--terracotta-light); }

.site-footer__social {
  display: flex;
  gap: 20px;
  padding: 24px 0 18px;
}

.site-footer__social a {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  font-weight: 700;
  text-decoration: none;
}

.site-footer__social a:hover { color: #F0BC95; }

.site-footer__copy {
  font-size: 11.5px;
  color: #8B7B66;
}

.site-footer__maps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer__maps::before {
  content: "\1F4CD";
  font-size: 13px;
}

/* ---------- prose / about ---------- */

.prose {
  max-width: 760px;
  padding-bottom: 8px;
}

.prose p {
  font-size: 16.5px;
  line-height: 1.72;
  margin: 0 0 20px;
}

.prose p:last-child { margin-bottom: 0; }

.prose h2 {
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  margin: 42px 0 14px;
}

.prose strong { color: var(--ink); font-weight: 700; }

.about-cta {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 56px;
}

.about-cta h2 {
  font-weight: 600;
  font-size: clamp(25px, 3vw, 32px);
  margin: 0 0 10px;
}

.about-cta p {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 24px;
}

/* ---------- faq ---------- */

.faq {
  padding-top: 8px;
  padding-bottom: 64px;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid var(--hairline); }

.faq-item:first-child { border-top: 1px solid var(--hairline); }

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-item > summary::after {
  content: "+";
  font-family: 'Mulish', sans-serif;
  font-size: 24px;
  line-height: 1;
  color: var(--terracotta);
  flex: none;
}

.faq-item[open] > summary::after { content: "\2013"; }

.faq-item > summary:hover { color: var(--terracotta); }

.faq-item__a { padding: 0 0 24px; }

.faq-item__a p {
  font-size: 15.5px;
  line-height: 1.68;
  color: var(--body);
  margin: 0;
  max-width: 660px;
}
