/* =========================================================
   TIBETAN MONK
   Minimal earthy responsive design
========================================================= */

:root {
  --ink: #25231f;
  --muted: #6c685f;

  --earth-950: #2f2b26;
  --earth-900: #3d372f;
  --earth-800: #51483d;
  --earth-700: #685c4c;
  --earth-600: #806e59;

  --clay: #8d4d3e;
  --clay-dark: #64352d;

  --sage: #6f7864;
  --sage-soft: #e9ece4;

  --gold: #b38a4a;
  --gold-soft: #e8d6b3;

  --cream: #f3eee4;
  --paper: #fffdf8;
  --paper-soft: #f9f5ed;
  --stone: #ebe4d9;
  --line: #ded5c7;

  --youtube: #e62117;
  --spotify: #1db954;

  --shadow-sm: 0 10px 30px rgba(55, 46, 35, 0.07);
  --shadow-md: 0 22px 55px rgba(55, 46, 35, 0.11);
  --shadow-lg: 0 30px 80px rgba(55, 46, 35, 0.16);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --container: 1180px;
}

/* ---------- Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  color: var(--ink);

  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(179, 138, 74, 0.10),
      transparent 30rem
    ),
    linear-gradient(
      180deg,
      #fbf8f1 0%,
      var(--cream) 100%
    );

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  line-height: 1.7;

  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--clay);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img,
video {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

h1,
h2,
h3 {
  margin: 0 0 0.55em;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  line-height: 1.12;
}

h1 {
  font-size: clamp(2.9rem, 6.3vw, 5.9rem);
  letter-spacing: -0.048em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.38rem;
  letter-spacing: -0.018em;
}

/* ---------- Header ---------- */

header {
  position: sticky;
  top: 0;
  z-index: 30;

  border-bottom: 1px solid rgba(222, 213, 199, 0.90);

  background: rgba(251, 248, 241, 0.93);

  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;

  gap: 11px;

  color: var(--ink);

  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border: 2px solid #d5b875;
  border-radius: 50%;

  color: white;

  background:
    linear-gradient(
      145deg,
      var(--earth-700),
      var(--earth-950)
    );

  box-shadow:
    0 8px 22px
    rgba(69, 58, 45, 0.16);
}

.navlinks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 20px;
}

.navlinks a {
  color: var(--ink);

  font-size: 0.92rem;
  font-weight: 720;
}

.navlinks a:hover {
  color: var(--clay);
  text-decoration: none;
}

.menu {
  display: none;

  padding: 7px;

  border: 0;

  background: transparent;
  color: var(--ink);

  font-size: 1.55rem;

  cursor: pointer;
}

/* ---------- General hero / article pages ---------- */

.hero {
  padding: 82px 0 58px;
}

.hero p {
  max-width: 760px;

  color: var(--muted);

  font-size: 1.12rem;
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(320px, 0.82fr);

  gap: clamp(38px, 6vw, 72px);

  align-items: center;
}

.kicker {
  margin-bottom: 10px;

  color: var(--clay);

  font-size: 0.75rem;
  font-weight: 850;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.home-hero {
  padding-top: clamp(78px, 8vw, 120px);
  padding-bottom: clamp(64px, 7vw, 94px);
}

.home-hero::before {
  content: "";

  position: absolute;

  inset: 0 0 auto 0;

  height: 460px;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(179, 138, 74, 0.15),
      transparent 22rem
    );
}

.home-hero {
  position: relative;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.hero-lead {
  margin-bottom: 0;

  font-size: clamp(1.1rem, 2vw, 1.27rem) !important;

  line-height: 1.72;
}

.hero-actions {
  margin-top: 30px;
}

/* ---------- Buttons ---------- */

.btns {
  display: flex;
  flex-wrap: wrap;

  gap: 11px;

  margin-top: 22px;
}

.btn {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 9px;

  padding: 11px 18px;

  border: 1px solid var(--line);
  border-radius: 999px;

  font-weight: 800;

  line-height: 1.2;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  border-color: var(--earth-800);

  background:
    linear-gradient(
      135deg,
      var(--earth-700),
      var(--earth-950)
    );

  color: white;

  box-shadow:
    0 10px 25px
    rgba(64, 54, 43, 0.16);
}

.btn-primary:hover {
  box-shadow:
    0 14px 30px
    rgba(64, 54, 43, 0.22);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
}

.btn-youtube {
  border-color: #cf1b15;

  background:
    linear-gradient(
      135deg,
      #f02b21,
      #ca1812
    );

  color: white;

  box-shadow:
    0 10px 25px
    rgba(202, 24, 18, 0.16);
}

.btn-youtube:hover {
  box-shadow:
    0 14px 32px
    rgba(202, 24, 18, 0.23);
}

/* ---------- Hero side card ---------- */

.hero-card {
  padding: clamp(28px, 4vw, 40px);

  border: 1px solid #d8c9b7;
  border-radius: var(--radius-lg);

  color: white;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(232, 214, 179, 0.16),
      transparent 17rem
    ),
    linear-gradient(
      155deg,
      #5c5144,
      #342f29
    );

  box-shadow: var(--shadow-lg);
}

.hero-card-label {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--gold-soft);

  font-size: 0.73rem;
  font-weight: 850;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 14px;

  color: white;
}

.hero-card p {
  margin-bottom: 24px;

  color: rgba(255, 255, 255, 0.78);
}

.hero-mini-links {
  display: grid;

  gap: 9px;
}

.hero-mini-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;

  color: white;

  background:
    rgba(255, 255, 255, 0.055);
}

.hero-mini-links a:hover {
  border-color: rgba(232, 214, 179, 0.50);

  background:
    rgba(255, 255, 255, 0.09);

  text-decoration: none;
}

/* ---------- Sections ---------- */

section {
  padding: 52px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 34px;

  margin-bottom: 28px;
}

.section-head h2 {
  max-width: 730px;

  margin-bottom: 0;
}

.section-head p {
  max-width: 550px;

  margin: 0;

  color: var(--muted);
}

.topics-section {
  padding-top: 64px;
  padding-bottom: 82px;
}

/* ---------- Cards ---------- */

.grid {
  display: grid;

  gap: 20px;
}

.cards {
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.card {
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: var(--radius-md);

  background: rgba(255, 253, 248, 0.90);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);

  border-color:
    rgba(179, 138, 74, 0.55);

  box-shadow: var(--shadow-md);
}

.card-accent {
  height: 7px;

  background:
    linear-gradient(
      90deg,
      var(--earth-800),
      var(--clay),
      var(--gold)
    );
}

.card-body {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 25px;
}

.meta {
  margin-bottom: 9px;

  color: var(--clay);

  font-size: 0.73rem;
  font-weight: 850;

  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.card h3 a {
  color: var(--ink);
}

.card h3 a:hover {
  color: var(--clay);
  text-decoration: none;
}

.card p {
  margin: 0;

  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-top: auto;
  padding-top: 22px;

  color: var(--earth-700);

  font-size: 0.92rem;
  font-weight: 800;
}

.card-link:hover {
  color: var(--clay);
  text-decoration: none;
}

/* ---------- Culture / outbound CTAs ---------- */

.culture-strip {
  padding: 78px 0;

  background:
    linear-gradient(
      180deg,
      rgba(235, 228, 217, 0.45),
      rgba(233, 236, 228, 0.60)
    );

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.culture-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(420px, 1.05fr);

  gap: clamp(36px, 6vw, 70px);

  align-items: center;
}

.culture-grid p {
  max-width: 620px;

  color: var(--muted);
}

.platform-panel {
  display: grid;

  gap: 14px;
}

.platform-cta {
  min-height: 78px;

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 15px;

  padding: 15px 18px;

  border-radius: 18px;

  color: white;

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.platform-cta:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow-md);

  filter: brightness(1.03);

  text-decoration: none;
}

.youtube-cta {
  background:
    linear-gradient(
      135deg,
      #f02b21,
      #c71611
    );
}

.spotify-cta {
  color: #092013;

  background:
    linear-gradient(
      135deg,
      #27d96d,
      #18b95a
    );
}

.platform-icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.17);

  font-weight: 900;
}

.spotify-cta .platform-icon {
  background:
    rgba(0, 0, 0, 0.11);
}

.platform-cta span:nth-child(2) {
  display: flex;
  flex-direction: column;

  line-height: 1.25;
}

.platform-cta small {
  margin-bottom: 3px;

  font-size: 0.73rem;

  opacity: 0.82;
}

.platform-cta strong {
  font-size: 1.05rem;
}

.cta-arrow {
  font-size: 1.2rem;
}

/* ---------- Learn more ---------- */

.learn-more-section {
  padding: 82px 0 96px;
}

.learn-more-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(360px, 0.75fr);

  gap: clamp(40px, 6vw, 80px);

  align-items: center;
}

.learn-more-copy p {
  max-width: 690px;

  color: var(--muted);
}

.learn-more-links {
  display: grid;

  gap: 12px;
}

.learn-more-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 18px 20px;

  border: 1px solid var(--line);
  border-radius: 16px;

  color: var(--ink);

  background: var(--paper);

  box-shadow: var(--shadow-sm);

  font-weight: 800;
}

.learn-more-links a:hover {
  transform: translateY(-2px);

  border-color:
    rgba(179, 138, 74, 0.50);

  text-decoration: none;
}

/* ---------- Existing inner-page components ---------- */

.article {
  max-width: 880px;
}

.article p,
.article li {
  color: #554f48;
}

.article h2 {
  margin-top: 1.5em;

  scroll-margin-top: 100px;
}

.breadcrumb {
  margin-bottom: 18px;

  color: var(--muted);

  font-size: 0.9rem;
}

.callout,
.resource,
.listen-box {
  padding: 21px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: var(--paper);
}

.callout {
  border-color: #dfc98f;

  background: #fff6df;
  color: #5a4925;
}

.resource-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 17px;
}

.resource {
  box-shadow: var(--shadow-sm);
}

.resource p {
  color: var(--muted);
}

.faq details {
  margin: 10px 0;
  padding: 15px 17px;

  border: 1px solid var(--line);
  border-radius: 14px;

  background: var(--paper);
}

.faq summary {
  font-weight: 800;

  cursor: pointer;
}

.keyword-box {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}

.keyword {
  padding: 18px;

  border: 1px solid var(--line);
  border-radius: 18px;

  background: rgba(255, 253, 248, 0.80);
}

.keyword p {
  color: var(--muted);
}

hr {
  margin: 32px 0;

  border: 0;
  border-top: 1px solid var(--line);
}

/* ---------- Footer ---------- */

footer {
  margin-top: 58px;
  padding: 46px 0;

  color: #efe8df;

  background:
    linear-gradient(
      135deg,
      #332e28,
      #211e1b
    );
}

footer a {
  color: #e7ca8e;
}

footer a:hover {
  color: white;
  text-decoration: none;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr;

  gap: 30px;
}

.small {
  color: #b6aaa0;

  font-size: 0.9rem;
}

/* ---------- Focus / accessibility ---------- */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* ---------- Tablet ---------- */

@media (max-width: 960px) {
  .hero-grid,
  .culture-grid,
  .learn-more-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 720px;
  }

  .cards {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .navlinks {
    gap: 14px;
  }
}

/* ---------- Mobile navigation ---------- */

@media (max-width: 860px) {
  .menu {
    display: block;
  }

  .navlinks {
    display: none;

    position: absolute;
    top: 74px;
    left: 0;
    right: 0;

    flex-direction: column;
    align-items: flex-start;

    gap: 10px;

    padding: 18px 4vw 22px;

    border-bottom: 1px solid var(--line);

    background:
      rgba(255, 253, 248, 0.98);

    box-shadow: var(--shadow-md);
  }

  .navlinks.open {
    display: flex;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 14px;
  }

  .resource-grid,
  .keyword-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Small mobile ---------- */

@media (max-width: 640px) {
  .container {
    width:
      min(
        var(--container),
        calc(100% - 28px)
      );
  }

  .nav {
    min-height: 70px;
  }

  .navlinks {
    top: 70px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
  }

  .hero {
    padding-top: 62px;
  }

  h1 {
    font-size:
      clamp(
        2.8rem,
        14.5vw,
        4.4rem
      );
  }

  .home-hero {
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .hero-card {
    padding: 24px;

    border-radius: 24px;
  }

  .btns {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card-body {
    padding: 22px;
  }

  .culture-strip,
  .learn-more-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .platform-cta {
    min-height: 72px;

    padding: 14px;
  }

  .platform-icon {
    width: 39px;
    height: 39px;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}


/* =========================================================
   MYTH VS. HISTORY — TIBETAN SINGING BOWLS
========================================================= */

.myth-history-section {
  margin-top: 64px;
  padding-top: 8px;
}

.myth-history-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.myth-history-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.myth-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.myth-history-card {
  position: relative;
  overflow: hidden;

  padding: 25px;

  border: 1px solid var(--line);
  border-radius: 20px;

  box-shadow: var(--shadow-sm);
}

.myth-history-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
}

.myth-card {
  background:
    linear-gradient(
      180deg,
      rgba(141, 77, 62, 0.065),
      rgba(255, 253, 248, 0.94)
    );
}

.myth-card::before {
  background: var(--clay);
}

.history-card {
  background:
    linear-gradient(
      180deg,
      rgba(111, 120, 100, 0.10),
      rgba(249, 248, 241, 0.96)
    );
}

.history-card::before {
  background: var(--sage);
}

.myth-history-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-bottom: 15px;

  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.myth-card .myth-history-label {
  color: var(--clay);
}

.history-card .myth-history-label {
  color: #5b6653;
}

.myth-history-icon {
  width: 26px;
  height: 26px;

  display: inline-grid;
  place-items: center;

  border-radius: 50%;

  font-size: 0.82rem;
}

.myth-card .myth-history-icon {
  background: rgba(141, 77, 62, 0.10);
}

.history-card .myth-history-icon {
  background: rgba(111, 120, 100, 0.13);
}

.myth-history-card h3 {
  margin-bottom: 13px;

  color: var(--ink);

  font-size: 1.34rem;
  line-height: 1.25;
}

.myth-history-card p {
  margin: 0 0 13px;

  color: var(--muted);
}

.myth-history-card p:last-child {
  margin-bottom: 0;
}

.myth-history-note {
  margin-top: 18px;
  padding: 20px 22px;

  border: 1px solid #d7c7a7;
  border-radius: 16px;

  background:
    linear-gradient(
      135deg,
      rgba(232, 214, 179, 0.42),
      rgba(255, 253, 248, 0.95)
    );
}

.myth-history-note strong {
  color: var(--earth-800);
}

.myth-history-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .myth-history-grid {
    grid-template-columns: 1fr;
  }

  .myth-history-card {
    padding: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .myth-history-card {
    transition: none !important;
  }
}


/* =========================================================
   EDITORIAL INTENT & TRUST
========================================================= */

.editorial-trust-section {
  padding: 30px 0 72px;
}

.editorial-trust-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;

  padding: clamp(28px, 5vw, 46px);

  border: 1px solid var(--line);
  border-radius: 24px;

  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(179, 138, 74, 0.10),
      transparent 20rem
    ),
    rgba(255, 253, 248, 0.88);

  box-shadow: var(--shadow-sm);
}

.editorial-trust-mark {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(179, 138, 74, 0.38);
  border-radius: 50%;

  color: var(--earth-800);

  background: rgba(232, 214, 179, 0.36);

  font-size: 1.3rem;
}

.editorial-trust-copy {
  max-width: 900px;
}

.editorial-trust-copy h2 {
  margin-bottom: 12px;

  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.editorial-trust-copy p {
  margin: 0;

  color: var(--muted);

  font-size: 1rem;
  line-height: 1.75;
}

@media (max-width: 640px) {
  .editorial-trust-section {
    padding-bottom: 54px;
  }

  .editorial-trust-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .editorial-trust-mark {
    width: 46px;
    height: 46px;
  }
}


/* =========================================================
   SEO HEADING ARCHITECTURE
========================================================= */

.card h3 {
  text-wrap: balance;
}

.article > h1,
.article h2,
.section-head h2,
.hero-card h2 {
  text-wrap: balance;
}

.article > h1 {
  max-width: 900px;
}

@media (max-width: 640px) {
  .card h3 {
    font-size: 1.28rem;
  }
}

/* Network Global Footer Styling */
.network-footer {
    background-color: #1e1b18; /* Deep earthy off-black/charcoal */
    color: #e6e0d4; /* Soft, warm off-white text */
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 3px solid #8c2d19; /* Subtle Himalayan Tibetan red accent top border */
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand h4, 
.footer-links h5, 
.footer-media h5 {
    color: #f7f4eb; /* Crisp warm white for titles */
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-brand p {
    color: #b5ae9f; /* Slightly muted tone for blurb */
    margin: 0;
    max-width: 400px;
}

.footer-links ul, 
.footer-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, 
.footer-media li {
    margin-bottom: 0.6rem;
}

.network-footer a {
    color: #c9af86; /* Calm, muted gold tint for hyperlinks */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.network-footer a:hover, 
.network-footer a:focus {
    color: #f5d7a1; /* Brighter gold highlight on focus/hover */
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #36312c; /* Interiordivider divider line */
    text-align: center;
    font-size: 0.85rem;
    color: #8c8375;
}

/* Fluid Mobile Layout Rules */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr; /* Automatically stacks into a clean single column on mobile */
        gap: 2rem;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-bottom {
        margin-top: 2rem;
        text-align: left;
    }
}

