/* =========================================================
   BETWEEN THE TREES BREAD | SHARED STYLES
   ========================================================= */

:root {
  --cream: #faf6ee;
  --cream-deep: #f1ead9;
  --kraft: #8b6f47;
  --kraft-dark: #6e5535;
  --forest: #2d3a2e;
  --forest-deep: #1e2a1f;
  --butter: #e8b855;
  --terracotta: #c97b5a;
  --charcoal: #2a2520;
  --ink: #1a1612;
  --off-white: #fffbf4;
  --line: rgba(42, 37, 32, 0.15);

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-hand: "Caveat", cursive;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 10vw, 8rem);

  --shadow-sm: 0 2px 8px rgba(42, 37, 32, 0.08);
  --shadow-md: 0 10px 40px rgba(42, 37, 32, 0.12);
  --shadow-lg: 0 30px 60px rgba(42, 37, 32, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 5.25rem); font-weight: 400; letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 500; }
p { margin: 0 0 1em; }

a { color: var(--forest); text-decoration: none; transition: opacity .2s ease; }
a:hover { opacity: 0.7; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--kraft);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.accent-hand {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--terracotta);
  transform: rotate(-2deg);
  display: inline-block;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}
.btn-primary { background: var(--forest); color: var(--off-white); }
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  opacity: 1;
}
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--off-white); opacity: 1; }
.btn-butter { background: var(--butter); color: var(--ink); }
.btn-butter:hover { background: #d9a73f; opacity: 1; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-arrow::after {
  content: "→";
  font-size: 1.1em;
  transition: transform .25s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.next-drop {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  padding: 0.55rem var(--gutter);
  font-weight: 500;
}
.next-drop strong { color: var(--butter); font-weight: 600; }
nav.primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.logo span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-top: 0.3rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.93rem;
  font-weight: 500;
}
.nav-links a { color: var(--ink); }
.nav-links a.active { color: var(--terracotta); }
.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}
.nav-cta:hover { opacity: 1; background: var(--forest-deep); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* =========================================================
   PAGE HEADER (sub-pages)
   ========================================================= */
.page-head {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 5vw, 4.5rem);
  background: var(--cream-deep);
}
.page-head .eyebrow { color: var(--terracotta); }
.page-head h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  margin-bottom: 1rem;
  max-width: 18ch;
}
.page-head p {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 56ch;
  color: var(--charcoal);
}
.page-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.page-head-grid img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 880px) { .page-head-grid { grid-template-columns: 1fr; } }

/* =========================================================
   HERO (home only)
   ========================================================= */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; font-weight: 300; color: var(--forest); }
.hero-lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 2rem;
  max-width: 32em;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-meta { display: flex; gap: 2rem; flex-wrap: wrap; font-size: 0.88rem; color: var(--kraft-dark); }
.hero-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta-item strong { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker-graphic {
  position: absolute;
  top: -1.75rem;
  right: -1.75rem;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(6deg);
  border: 7px solid var(--cream);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 880px) {
  .hero-sticker-graphic {
    width: 115px;
    height: 115px;
    top: -1rem;
    right: -0.5rem;
    border-width: 5px;
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: var(--section-y) 0; }
.section-alt { background: var(--cream-deep); }
.section-dark { background: var(--forest); color: var(--cream); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark .eyebrow { color: var(--butter); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.1rem; color: var(--charcoal); }
.section-dark .section-head p { color: rgba(250, 246, 238, 0.8); }

/* =========================================================
   BAKE / PRODUCT CARDS
   ========================================================= */
.bake-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
@media (max-width: 880px) { .bake-grid { grid-template-columns: 1fr; } }
.bake-card {
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.bake-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.bake-card-image { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-deep); }
.bake-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.bake-card:hover .bake-card-image img { transform: scale(1.05); }
.bake-card-body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.bake-card-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}
.bake-card h3 { margin-bottom: 0.6rem; }
.bake-card-desc { color: var(--charcoal); font-size: 0.96rem; line-height: 1.55; flex: 1; }
.bake-card-list { list-style: none; padding: 0; margin: 1rem 0 0; font-size: 0.9rem; color: var(--charcoal); }
.bake-card-list li { padding: 0.35rem 0; display: flex; align-items: baseline; gap: 0.6rem; }
.bake-card-list li::before { content: "·"; color: var(--butter); font-weight: 900; font-size: 1.5em; line-height: 0.5; }
.bake-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.bake-card-where { font-size: 0.82rem; color: var(--kraft); line-height: 1.45; }
.bake-card-where strong { color: var(--ink); font-weight: 600; display: block; font-size: 0.85rem; margin-bottom: 0.15rem; }

/* =========================================================
   WHERE / LOCATION CARDS
   ========================================================= */
.where-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 1080px) { .where-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .where-grid { grid-template-columns: 1fr; } }

.where-card {
  background: var(--off-white);
  padding: 1.75rem;
  border-radius: 4px;
  border-left: 3px solid var(--butter);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease;
}
.where-card:hover { transform: translateY(-4px); }
.where-card-when {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kraft);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.where-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.where-card-addr { font-size: 0.92rem; color: var(--charcoal); margin-bottom: 0.7rem; flex: 1; }
.where-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.where-card-link::after { content: "↗"; font-size: 1.1em; }

/* =========================================================
   FOOD BUCKS CALLOUT
   ========================================================= */
.food-bucks {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--butter);
  border-radius: 4px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.food-bucks-icon { font-size: 2rem; flex-shrink: 0; }
.food-bucks-body { flex: 1; min-width: 240px; }
.food-bucks-body strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
  color: var(--ink);
}
.food-bucks-body span { font-size: 0.95rem; color: var(--kraft-dark); }
.food-bucks a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================================================
   STORY GRID
   ========================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; } }
.story-media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-copy h2 { margin-bottom: 1.5rem; }
.story-copy p { font-size: 1.05rem; color: var(--charcoal); }
.story-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.pillar h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kraft);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.pillar p { font-size: 0.95rem; margin: 0; }

/* =========================================================
   QUOTE BLOCK
   ========================================================= */
.quote-block { max-width: 900px; margin: 0 auto; text-align: center; }
.quote-block blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.quote-block cite {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--butter);
  font-weight: 600;
}

/* =========================================================
   WHOLESALE STRIP
   ========================================================= */
.wholesale-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .wholesale-inner { grid-template-columns: 1fr; } }
.wholesale-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.wholesale-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.02rem;
}
.wholesale-list li::before { content: "+"; color: var(--butter); font-weight: 700; }
.wholesale-media { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; }
.wholesale-media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   REVIEW STRIP
   ========================================================= */
.review-strip {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.review-strip h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.review-strip .heart { color: var(--terracotta); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter { background: var(--cream-deep); text-align: center; }
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter h2 { margin-bottom: 1rem; }
.newsletter p { color: var(--charcoal); margin-bottom: 2rem; font-size: 1.05rem; }
.newsletter-form { display: flex; gap: 0.5rem; max-width: 480px; margin: 0 auto; }
@media (max-width: 560px) { .newsletter-form { flex-direction: column; } }
.newsletter-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--off-white);
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
}
.newsletter-form input:focus { border-color: var(--forest); }

/* =========================================================
   INSTAGRAM STRIP
   ========================================================= */
.ig-strip { padding: clamp(2.5rem, 5vw, 4rem) 0; background: var(--cream); }
.ig-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.ig-head h3 { font-size: 1.5rem; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
@media (max-width: 1080px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 2px; }
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s ease;
}
.ig-tile:hover img { transform: scale(1.08); filter: brightness(1.05); }

/* =========================================================
   PRODUCT PAGE LISTING
   ========================================================= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 720px) { .product-grid { grid-template-columns: 1fr; } }
.product {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 1.5rem;
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream-deep); }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 1.5rem 1.5rem 1.5rem 0; display: flex; flex-direction: column; }
.product-body h3 { margin-bottom: 0.4rem; font-size: 1.4rem; }
.product-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}
.product-desc { font-size: 0.95rem; color: var(--charcoal); flex: 1; }
.product-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--kraft);
}
.product-meta strong { color: var(--ink); }

/* =========================================================
   PROSE (long-form copy blocks)
   ========================================================= */
.prose { max-width: 720px; margin: 0 auto; font-size: 1.08rem; line-height: 1.7; }
.prose p { color: var(--charcoal); margin-bottom: 1.5em; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 2rem; }
.prose h3 { margin-top: 2.5rem; margin-bottom: 0.75rem; font-size: 1.4rem; }
.prose strong { color: var(--ink); font-weight: 600; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 1.5rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--kraft);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item-body {
  padding: 0 0 1.5rem;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.7;
}

/* =========================================================
   GRAINS SHOWCASE
   ========================================================= */
.grain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 880px) { .grain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .grain-grid { grid-template-columns: 1fr; } }
.grain {
  background: var(--off-white);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
}
.grain-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.grain h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.grain p { font-size: 0.9rem; color: var(--charcoal); margin: 0; }

/* =========================================================
   MAP EMBED
   ========================================================= */
.map-wrap {
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-md);
  background: var(--cream-deep);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 720px) { .map-wrap { aspect-ratio: 4 / 5; } }

/* =========================================================
   FOOTER
   ========================================================= */
footer.site {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo span { color: var(--butter); }
.footer-brand p {
  margin-top: 1rem;
  color: rgba(250, 246, 238, 0.6);
  font-size: 0.93rem;
  max-width: 30em;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--butter);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; font-size: 0.93rem; line-height: 2; }
.footer-col a { color: rgba(250, 246, 238, 0.75); }
.footer-col a:hover { color: var(--butter); opacity: 1; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 246, 238, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.5);
}

/* =========================================================
   FADE-IN ON SCROLL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
