/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --cream: #fbf4e8;
  --cream-2: #fffaf1;
  --forest: #063b2d;
  --forest-2: #0d4b3b;
  --sage: #dfe5d7;
  --sage-2: #eef1e8;
  --orange: #d9793d;
  --orange-soft: #f7dfc8;
  --ink: #17362f;
  --muted: #63746e;
  --line: rgba(6, 59, 45, 0.16);
  --shadow: 0 24px 70px rgba(28, 55, 44, 0.13);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.shell { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 32px)); }

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 244, 232, 0.92);
  -webkit-backdrop-filter: blur(18px);
          backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--forest); }
.logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
  background: var(--cream-2);
}
.logo-text { font-family: Georgia, "Times New Roman", serif; font-size: 28px; letter-spacing: -0.04em; }
.nav { display: flex; align-items: center; gap: 24px; font-size: 15px; color: var(--forest); }
.nav a:hover { color: var(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(6, 59, 45, 0.22);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn:hover { transform: translateY(-1px); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: 14px; }
.btn-light { background: var(--cream-2); color: var(--forest); box-shadow: none; }
.text-link { font-weight: 800; color: var(--forest); border-bottom: 2px solid var(--orange); }

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
h1, h2, h3 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: 28px; }
p { color: var(--muted); }
.lead { font-size: clamp(19px, 2.3vw, 25px); color: #35564e; max-width: 700px; }

.hero { padding: 70px 0 55px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.82fr; align-items: center; grid-gap: 46px; gap: 46px; }
.hero-copy { position: relative; z-index: 2; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin: 34px 0 26px; }
.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-row span {
  border: 1px solid var(--line);
  background: var(--cream-2);
  color: var(--forest);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}
.hero-visual { display: flex; justify-content: center; }
.phone-card {
  width: min(390px, 100%);
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #111;
  background: var(--cream-2);
  transform: rotate(2deg);
}

.section { padding: 76px 0; }
.section-heading { max-width: 780px; margin-bottom: 32px; }
.section-heading p { max-width: 660px; }
.steps-grid, .recipe-grid, .comparison-grid, .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 18px;
  gap: 18px;
}
.step-card, .recipe-card, .faq-card, .feature-panel, .comparison-grid > div {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 40px rgba(28, 55, 44, 0.06);
}
.step-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--forest);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 22px;
}
.split-section { background: var(--sage-2); }
.split-grid { display: grid; grid-template-columns: 1fr 0.75fr; grid-gap: 28px; gap: 28px; align-items: center; }
.check-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; grid-gap: 12px; gap: 12px; }
.check-list li { color: var(--forest); font-weight: 750; }
.check-list li::before { content: '✓'; color: var(--orange); margin-right: 10px; }
.feature-panel { background: var(--forest); color: white; }
.feature-panel h3, .feature-panel p { color: white; }
.light-panel { background: var(--cream-2); color: var(--ink); }
.light-panel h3, .light-panel p { color: var(--forest); }
.recipes-section { background: var(--cream-2); }
.recipe-grid { grid-template-columns: repeat(4, 1fr); }
.recipe-card { background: var(--cream); overflow: hidden; }
.recipe-card h3 { margin-top: 8px; }
.bowl {
  height: 150px;
  border-radius: 26px;
  background: linear-gradient(145deg, #dfe5d7, #f3e4c8);
  margin: -6px -6px 22px;
  display: grid;
  place-items: end center;
  padding-bottom: 22px;
}
.bowl span {
  width: 122px;
  height: 58px;
  display: block;
  border-radius: 0 0 70px 70px;
  background: #a9b8a2;
  box-shadow: inset 0 12px 0 rgba(255,255,255,0.24), 0 -24px 0 #d9793d, 22px -34px 0 #f0b05f, -18px -31px 0 #2f6b4e;
}
.bowl-2 span { box-shadow: inset 0 12px 0 rgba(255,255,255,0.24), 0 -24px 0 #87543b, 24px -31px 0 #e1a34e, -22px -35px 0 #2f6b4e; }
.bowl-3 span { box-shadow: inset 0 12px 0 rgba(255,255,255,0.24), 0 -24px 0 #e5be83, 20px -34px 0 #e18c4a, -18px -31px 0 #3d7557; }
.bowl-4 span { box-shadow: inset 0 12px 0 rgba(255,255,255,0.24), 0 -24px 0 #9c6644, 22px -34px 0 #d9793d, -18px -31px 0 #496f58; }
.comparison-grid { grid-template-columns: 1fr 1fr; }
.highlight-card { background: var(--forest) !important; }
.highlight-card h3, .highlight-card p { color: white; }

.cta-band { background: var(--forest); padding: 62px 0; color: white; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-inner h2, .cta-inner p { color: white; }
.cta-inner p { max-width: 720px; }

.page-hero { padding: 96px 0 52px; text-align: center; }
.page-hero .lead { margin-left: auto; margin-right: auto; }
.landing-hero { background: radial-gradient(circle at top, var(--sage-2), var(--cream) 58%); }
.faq-list { display: grid; grid-gap: 16px; gap: 16px; }
.faq-card h2 { font-size: 32px; margin-bottom: 10px; }

.footer { padding: 70px 0; background: #f4eadb; border-top: 1px solid var(--line); }
.footer-grid { grid-template-columns: 1.4fr 0.7fr 0.9fr; }
.footer a:not(.logo):not(.btn) { display: block; color: var(--forest); margin: 9px 0; font-weight: 700; }
.footer p { max-width: 390px; }
.footer h3 { font-family: Inter, ui-sans-serif, system-ui; letter-spacing: 0; font-size: 16px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .hero { padding-top: 42px; }
  .hero-grid, .split-grid, .comparison-grid, .cta-inner { grid-template-columns: 1fr; display: grid; }
  .hero-visual { order: -1; }
  .phone-card { width: min(300px, 76vw); border-radius: 32px; }
  .steps-grid, .recipe-grid, .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: left; }
  .section { padding: 56px 0; }
  .logo-text { font-size: 23px; }
}

.announcement-bar {
  background: #dbeabf;
  color: var(--forest);
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 850;
  border-bottom: 1px solid var(--line);
}

.inline-cta {
  margin: 34px 0;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--sage-2);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 22px;
  gap: 22px;
  align-items: center;
}

.inline-cta h2 {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 8px;
}

.wizard-card {
  position: -webkit-sticky;
  position: sticky;
  top: 110px;
  align-self: start;
  background: #fff4d6;
  border: 1px solid #ead9ad;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(28, 55, 44, 0.08);
}

.wizard-card h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.btn-full {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.compact {
  gap: 8px;
  margin-bottom: 22px;
}

.mini-bowl {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 36%, #e9b868 0 9%, transparent 10%),
    radial-gradient(circle at 58% 44%, #d9793d 0 12%, transparent 13%),
    radial-gradient(circle at 48% 58%, #2f6b4e 0 10%, transparent 11%),
    #dfe5d7;
  border: 8px solid #a9b8a2;
  margin: 8px 0 18px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-gap: 36px;
  gap: 36px;
  align-items: start;
}

.blog-list {
  display: grid;
  grid-gap: 22px;
  gap: 22px;
}

.blog-card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.blog-card h2 {
  font-size: clamp(34px, 4.6vw, 58px);
}

.blog-card h2 a {
  color: var(--forest);
}

.article-body {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
}

.article-body p {
  font-size: 19px;
  line-height: 1.8;
}

.article-body h2 {
  margin-top: 34px;
  font-size: clamp(34px, 4vw, 52px);
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .announcement-bar {
    gap: 12px;
    font-size: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .blog-layout,
  .inline-cta {
    grid-template-columns: 1fr;
  }

  .wizard-card {
    position: static;
  }

  .sticky-mobile-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
  }

  body {
    padding-bottom: 82px;
  }
}

/* BARK_AND_BOWL_CMS_FRONTEND_STYLES */

.announcement-bar { background: #dbeabf; color: var(--forest); display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; padding: 9px 14px; font-size: 14px; font-weight: 850; border-bottom: 1px solid var(--line); }
.logo-img { max-height: 56px; width: auto; display: block; }
.hero-btn { margin-top: 22px; }
.trust-strip { background: #dbeabf; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 14px; gap: 14px; padding-top: 18px; padding-bottom: 18px; font-weight: 850; color: var(--forest); }
.steps-grid, .benefit-grid, .recipe-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-gap: 22px; gap: 22px; }
.step-card, .benefit-card, .recipe-card, .empty-recipes { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.step-card span { display: inline-flex; width: 38px; height: 38px; border-radius: 50%; align-items: center; justify-content: center; background: var(--forest); color: white; font-weight: 900; margin-bottom: 14px; }
.recipe-card img, .recipe-placeholder { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 22px; margin-bottom: 18px; background: #dfe5d7; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag-row span { background: #dbeabf; color: var(--forest); border-radius: 999px; padding: 6px 10px; font-size: 13px; font-weight: 800; }
.inline-cta { margin: 34px 0; padding: 28px; border-radius: var(--radius); background: var(--sage-2); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; grid-gap: 22px; gap: 22px; align-items: center; }
.inline-cta h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 8px; }
.bottom-cta { background: var(--forest); color: white; padding: 70px 0; text-align: center; }
.bottom-cta h2 { color: white; font-size: clamp(40px, 6vw, 76px); }
.bottom-cta .eyebrow { color: #f4b35d; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; grid-gap: 36px; gap: 36px; align-items: start; }
.article-body { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(28px, 5vw, 54px); }
.article-section h2 { margin-top: 24px; }
.article-section p, .article-body p { font-size: 19px; line-height: 1.8; }
.wizard-card { position: -webkit-sticky; position: sticky; top: 110px; align-self: start; background: #fff4d6; border: 1px solid #ead9ad; border-radius: var(--radius); padding: 28px; box-shadow: 0 18px 50px rgba(28,55,44,.08); }
.wizard-card h3 { font-size: 32px; margin-bottom: 16px; }
.btn-full { width: 100%; text-align: center; justify-content: center; }
.compact { gap: 8px; margin-bottom: 22px; }
.sticky-mobile-cta { display: none; }
.footer-cta { margin-top: 18px; }
.footer-links { display: grid; grid-gap: 10px; gap: 10px; }
@media (max-width: 900px) { .announcement-bar { gap: 12px; font-size: 12px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; } .trust-grid, .steps-grid, .benefit-grid, .recipe-grid, .blog-layout, .inline-cta { grid-template-columns: 1fr; } .wizard-card { position: static; } .sticky-mobile-cta { display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50; } body { padding-bottom: 82px; } }

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 54px;
  height: 44px;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.image-logo img {
  max-height: 70px;
  width: auto;
  display: block;
}

.cms-hero {
  padding: clamp(56px, 7vw, 104px) 0;
}

.cms-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  grid-gap: clamp(32px, 6vw, 76px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.cms-hero-copy {
  text-align: left;
}

.cms-hero-copy h1 {
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.92;
  max-width: 900px;
}

.cms-hero-copy .lead {
  max-width: 720px;
}

.cms-hero-media {
  background: #f6efe3;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(28, 55, 44, 0.12);
}

.cms-hero-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.recipe-card img {
  background: #dfe5d7;
}

@media (max-width: 900px) {
  .cms-hero-grid {
    grid-template-columns: 1fr;
  }

  .cms-hero-copy {
    text-align: center;
  }

  .cms-hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .brand-text {
    font-size: 24px;
  }

  .brand-mark {
    width: 42px;
  }

  .nav {
    display: none;
  }
}

.image-logo img {
  height: 86px;
  width: auto;
  display: block;
}

.site-header .image-logo {
  display: flex;
  align-items: center;
}

.header-inner {
  min-height: 96px;
}

.cms-hero {
  padding: clamp(54px, 7vw, 104px) 0;
}

.cms-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 520px);
  grid-gap: clamp(34px, 6vw, 76px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.cms-hero-centre {
  text-align: center;
}

.cms-hero-copy {
  text-align: left;
}

.cms-hero-centre .cms-hero-copy {
  text-align: center;
}

.cms-hero-copy h1 {
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
  max-width: 930px;
}

.cms-hero-copy .lead {
  max-width: 720px;
}

.cms-hero-centre .lead {
  margin-left: auto;
  margin-right: auto;
}

.cms-hero-media {
  background: #f7efe1;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(28, 55, 44, 0.12);
}

.cms-hero-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

@media (max-width: 900px) {
  .image-logo img {
    height: 72px;
  }

  .header-inner {
    min-height: 86px;
  }

  .cms-hero-grid {
    grid-template-columns: 1fr;
  }

  .cms-hero-copy {
    text-align: center;
  }

  .cms-hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

/* --- Homepage hero phone tweak: smaller, angled, no border/card --- */
.cms-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
}

.cms-hero-media {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
  max-width: 400px;
  margin-left: auto;
}

.cms-hero-media img {
  width: 100%;
  max-width: 400px;
  display: block;
  margin-left: auto;
  border-radius: 0;
  box-shadow: none;
  transform: rotate(5deg);
  transform-origin: center center;
}

@media (max-width: 900px) {
  .cms-hero-grid {
    grid-template-columns: 1fr;
  }

  .cms-hero-media {
    max-width: 320px;
    margin: 10px auto 0;
  }

  .cms-hero-media img {
    max-width: 320px;
    transform: rotate(3deg);
    margin: 0 auto;
  }
}

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

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  font-size: 14px;
  transform: translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 18px 50px rgba(28, 55, 44, 0.12);
  display: none;
  z-index: 40;
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: #edf3de;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.section-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading .section-intro p {
  margin: 0;
}

.benefit-card p {
  font-size: 17px;
  line-height: 1.65;
}

/* --- Mobile burger navigation --- */
.mobile-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  color: var(--forest);
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.mobile-menu-panel {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 80;
    background: var(--cream);
  }

  .header-inner {
    min-height: 74px;
    justify-content: space-between;
    gap: 12px;
  }

  .image-logo img {
    height: 58px;
  }

  .nav,
  .header-cta {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .mobile-menu-panel {
    display: block;
    position: fixed;
    top: 111px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: rgba(246, 241, 231, 0.98);
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }

  .mobile-menu-inner {
    padding: 22px;
    display: grid;
    grid-gap: 12px;
    gap: 12px;
  }

  .mobile-menu-group {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fffaf1;
    overflow: hidden;
  }

  .mobile-menu-group > a {
    display: flex;
    padding: 16px 18px;
    font-size: 18px;
    font-weight: 850;
    color: var(--forest);
    text-decoration: none;
  }

  .mobile-subnav {
    display: grid;
    grid-gap: 0;
    gap: 0;
    border-top: 1px solid var(--line);
    background: #f6f1e7;
  }

  .mobile-subnav a {
    padding: 13px 26px;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 55, 44, 0.08);
  }

  .mobile-subnav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-cta {
    margin-top: 10px;
  }

  .sticky-mobile-cta {
    display: none;
  }
}

@media (max-width: 420px) {
  .announcement-bar {
    font-size: 11px;
    padding: 7px 10px;
  }

  .mobile-menu-panel {
    top: 103px;
  }

  .image-logo img {
    height: 52px;
  }
}

/* --- Fixed mobile header: logo + CTA + burger --- */
@media (max-width: 900px) {
  .site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
  }

  .header-inner {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    grid-gap: 10px;
    gap: 10px;
    position: relative;
  }

  .image-logo img {
    height: 56px;
    width: auto;
  }

  .nav {
    display: none !important;
  }

  .header-cta {
    display: inline-flex !important;
    justify-self: end;
    padding: 12px 16px !important;
    min-height: 44px;
    border-radius: 999px;
    font-size: 13px !important;
    line-height: 1.05;
    max-width: 112px;
    text-align: center;
    white-space: normal;
  }

  .mobile-menu-wrap {
    display: block;
    justify-self: end;
  }

  .mobile-menu-button {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fffaf1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    color: var(--forest);
  }

  .mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-panel {
    display: block !important;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    z-index: 999;
    background: #fffaf1;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(28, 55, 44, 0.18);
    overflow: hidden;
  }

  .mobile-menu-inner {
    padding: 12px;
    display: grid;
    grid-gap: 10px;
    gap: 10px;
  }

  .mobile-menu-group {
    border: 1px solid rgba(28, 55, 44, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: #f8f2e7;
  }

  .mobile-menu-group > a {
    display: flex;
    padding: 15px 16px;
    color: var(--forest);
    text-decoration: none;
    font-weight: 900;
    font-size: 17px;
  }

  .mobile-subnav {
    display: grid;
    border-top: 1px solid rgba(28, 55, 44, 0.12);
    background: #fffaf1;
  }

  .mobile-subnav a {
    display: block;
    padding: 12px 24px;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 55, 44, 0.08);
  }

  .mobile-subnav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
  }

  .image-logo img {
    height: 52px;
  }

  .header-cta {
    max-width: 96px;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }

  .mobile-menu-button {
    width: 46px;
    height: 46px;
  }
}

/* --- HARD mobile menu fix --- */
.bb-mobile-menu-overlay {
  display: none;
}

@media (max-width: 900px) {
  .nav {
    display: none !important;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .mobile-menu-button {
    display: inline-flex !important;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fffaf1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    color: var(--forest);
    position: relative;
    z-index: 10002;
  }

  .mobile-menu-button span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
  }

  .mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .bb-mobile-menu-overlay.is-open {
    display: block !important;
    position: fixed !important;
    top: 132px;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 12px;
    background: rgba(251, 244, 232, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(28, 55, 44, 0.12);
  }

  .bb-mobile-menu-card {
    background: #fffaf1;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 12px;
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    box-shadow: 0 24px 70px rgba(28, 55, 44, 0.18);
    max-height: calc(100vh - 158px);
    overflow-y: auto;
  }

  .bb-mobile-menu-item {
    border: 1px solid rgba(28, 55, 44, 0.12);
    border-radius: 18px;
    overflow: hidden;
    background: #f8f2e7;
  }

  .bb-mobile-menu-item > a {
    display: flex;
    padding: 15px 16px;
    color: var(--forest);
    text-decoration: none;
    font-weight: 900;
    font-size: 17px;
  }

  .bb-mobile-subnav {
    display: grid;
    border-top: 1px solid rgba(28, 55, 44, 0.12);
    background: #fffaf1;
  }

  .bb-mobile-subnav a {
    display: block;
    padding: 12px 24px;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid rgba(28, 55, 44, 0.08);
  }

  .bb-mobile-subnav a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 430px) {
  .bb-mobile-menu-overlay.is-open {
    top: 126px;
  }
}

/* --- Better FAQ section --- */
.faq-section {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.faq-section .section-heading {
  margin-bottom: 34px;
}

.faq-list {
  display: grid;
  grid-gap: 14px;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fffaf1;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(28, 55, 44, 0.06);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 900;
  font-size: 19px;
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #eaf1d8;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '–';
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .faq-item summary {
    font-size: 17px;
    padding: 17px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 16px;
  }
}

/* --- SEO breadcrumbs --- */
.breadcrumbs {
  background: #fbf4e8;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  color: rgba(28, 55, 44, 0.45);
}

.breadcrumbs a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--muted);
}

@media (max-width: 700px) {
  .breadcrumbs {
    padding: 10px 0;
  }

  .breadcrumbs ol {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }
}

