/* ==========================================================================
   Daily Bites Diary — design system
   Warm, editorial, food-first. Mobile-first, no framework.
   ========================================================================== */

:root {
  /* Colour */
  /* Palette sampled from her own logo — cream, forest green, crimson.
     Keeping the original variable names so nothing else has to change. */
  --cream:      #FBF6EC;
  --cream-deep: #F4EAD8;
  --paper:      #FFFFFF;
  --ink:        #2A2620;
  --ink-soft:   #6B6155;
  --ink-faint:  #9A9085;
  --terracotta: #A81818;   /* the crimson of "Suvai" */
  --terracotta-dark: #871212;
  --saffron:    #C08A3E;   /* warm gold from the logo flourishes */
  --sage:       #304818;   /* the forest green of "Thinam" */
  --line:       #E8DCC8;
  --line-soft:  #F2E9DA;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-tamil: "Noto Sans Tamil", "Latha", sans-serif;

  /* Space */
  --gap: 1.25rem;
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
  --radius: 14px;
  --radius-lg: 22px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(43, 35, 32, .05), 0 2px 8px rgba(43, 35, 32, .04);
  --shadow-md: 0 4px 12px rgba(43, 35, 32, .07), 0 12px 32px rgba(43, 35, 32, .06);
  --shadow-lg: 0 8px 24px rgba(43, 35, 32, .10), 0 24px 60px rgba(43, 35, 32, .08);
}

/* --- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--terracotta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terracotta-dark); }
button, input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 4px; }

/* --- Type -------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.45rem); }
p  { text-wrap: pretty; }
.tamil { font-family: var(--font-tamil); }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: .75rem;
}
.lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.small { font-size: .875rem; }

/* --- Layout ------------------------------------------------------------ */
.wrap { width: min(100% - 2.5rem, 1160px); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--cream-deep); }
.section--paper { background: var(--paper); }
.section-head { max-width: 46rem; margin-bottom: 2.5rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
.center { text-align: center; }

/* --- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 100px;
  font-size: .95rem; font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--terracotta-dark); color: #fff; box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); background: var(--paper); }
.btn--yt { background: #FF0000; color: #fff; }
.btn--yt:hover { background: #d90000; color: #fff; }
.btn--ig {
  background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF);
  color: #fff;
}
.btn--ig:hover { color: #fff; filter: brightness(1.07); }
.btn--sm { padding: .55rem 1.1rem; font-size: .875rem; }
.btn--block { width: 100%; }

/* --- Header ------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 248, 243, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 70px;
}
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); }
.brand__mark {
  width: 42px; height: 42px; flex: none;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 1px 3px rgba(42, 38, 32, .16);
}
.brand__name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; line-height: 1.1; }
.brand__sub { display: block; font-family: var(--font-tamil); font-size: .7rem; color: var(--ink-faint); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  padding: .5rem .8rem; border-radius: 8px;
  font-size: .93rem; font-weight: 600;
  color: var(--ink-soft); text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--ink); background: var(--cream-deep); }
.nav a[aria-current="page"] { color: var(--terracotta); }
.header-cta { margin-left: .5rem; }
/* The .nav a rules above are more specific than .btn — restore button styling. */
.nav a.btn--primary { color: #fff; background: var(--terracotta); }
.nav a.btn--primary:hover { color: #fff; background: var(--terracotta-dark); }
.nav a.btn--ig {
  color: #fff;
  background: linear-gradient(45deg, #F58529, #DD2A7B 55%, #8134AF);
}
.nav a.btn--ig:hover { color: #fff; filter: brightness(1.08); }

.nav-toggle {
  display: none; padding: .5rem; background: none; border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer; line-height: 0;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; inset: 70px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; padding: .75rem 1.25rem 1.5rem;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav:not(.is-open) { display: none; }
  .nav a { padding: .8rem .5rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .header-cta { margin: .9rem 0 0; }
}

/* --- Hero -------------------------------------------------------------- */
.hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--section-y); overflow: hidden; }
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
@media (min-width: 900px) { .hero__grid { grid-template-columns: 1.05fr .95fr; } }
.hero__title { margin-bottom: 1.1rem; }
.hero__title em { font-style: italic; color: var(--terracotta); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.9rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.stat__num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.stat__label { font-size: .8rem; color: var(--ink-faint); letter-spacing: .05em; text-transform: uppercase; margin-top: .3rem; }

.hero__media { position: relative; }
.hero__media img, .hero__media .ph {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.hero__badge {
  position: absolute; bottom: -1.1rem; left: -1.1rem;
  background: var(--paper); border-radius: var(--radius);
  padding: .85rem 1.2rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .7rem;
  font-size: .875rem; font-weight: 600;
}
@media (max-width: 640px) { .hero__badge { left: .5rem; bottom: -.8rem; } }

/* Image placeholder — shown until a real photo is dropped in */
.ph {
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, var(--cream-deep), #F3E3D3);
  color: var(--ink-faint);
  font-size: .8rem; text-align: center; padding: 1rem;
  border: 1px dashed var(--line);
}

/* --- Cards ------------------------------------------------------------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--cream-deep); }
.card__media img, .card__media .ph { width: 100%; height: 100%; object-fit: cover; border: 0; }
.card__body { padding: 1.15rem 1.25rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.15rem; margin-bottom: .45rem; }
.card__title a { color: inherit; text-decoration: none; }
.card__title a::after { content: ""; position: absolute; inset: 0; } /* whole-card click */
.card__meta { margin-top: auto; padding-top: .9rem; display: flex; flex-wrap: wrap; gap: .9rem; font-size: .8rem; color: var(--ink-faint); }
.card { position: relative; }

.tag {
  display: inline-block; padding: .28rem .7rem;
  background: var(--cream-deep); border-radius: 100px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-soft);
}
.card__media .tag { position: absolute; top: .7rem; left: .7rem; background: rgba(255,255,255,.94); }

/* --- Video cards ------------------------------------------------------- */
.video-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow-sm); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.video-card img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; opacity: .92; transition: opacity .18s ease; }
.video-card:hover img { opacity: 1; }
.video-card__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.55) 18%, transparent 45%);
}
.video-card__play svg { width: 46px; height: 46px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }
.video-card__label {
  position: absolute; left: .8rem; right: .8rem; bottom: .8rem;
  color: #fff; font-size: .82rem; font-weight: 600; line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow-md); }
.embed--vertical { aspect-ratio: 9 / 16; max-width: 380px; margin-inline: auto; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- Recipe page ------------------------------------------------------- */
.recipe-hero { padding-block: 2.5rem 1rem; }
.recipe-hero h1 { max-width: 20ch; }
.recipe-hero .lede { max-width: 62ch; }
.recipe-hero > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.recipe-hero__tamil {
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--ink-faint);
  margin-top: .4rem;
  line-height: 1.4;
}
.breadcrumbs { font-size: .82rem; color: var(--ink-faint); margin-bottom: 1.2rem; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.breadcrumbs a:hover { color: var(--terracotta); text-decoration: underline; }
.breadcrumbs span { margin-inline: .45rem; }

.recipe-meta {
  display: flex; flex-wrap: wrap; gap: 1.75rem;
  margin: 1.75rem 0; padding: 1.15rem 1.4rem;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
}
.recipe-meta__item { display: flex; flex-direction: column; gap: .1rem; }
.recipe-meta__label { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.recipe-meta__value { font-weight: 700; font-size: .98rem; }

.recipe-layout { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .recipe-layout { grid-template-columns: 1fr 1.35fr; } }

.ingredients { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.5rem 1.6rem; position: sticky; top: 90px; }
@media (max-width: 899px) { .ingredients { position: static; } }
.ingredients h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.ingredients ul { list-style: none; padding: 0; }
.ingredients li { display: flex; gap: .7rem; padding: .55rem 0; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.ingredients li:last-child { border-bottom: 0; }
.ingredients li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: .6rem; border-radius: 50%; background: var(--saffron); }

.steps { list-style: none; counter-reset: step; padding: 0; }
.steps li { counter-increment: step; position: relative; padding: 0 0 1.6rem 3.4rem; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: -.1rem;
  width: 2.4rem; height: 2.4rem; display: grid; place-items: center;
  background: var(--terracotta); color: #fff; border-radius: 50%;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; left: 1.2rem; top: 2.7rem; bottom: .4rem;
  width: 1.5px; background: var(--line);
}

.callout {
  border-left: 4px solid var(--saffron);
  background: var(--cream-deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
  margin: 1.75rem 0;
}
.callout h3 { font-size: 1.05rem; margin-bottom: .35rem; }
.callout--note { border-left-color: var(--sage); }

.nutrition { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: .8rem; margin-top: 1.5rem; }
.nutrition div { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px; padding: .8rem; text-align: center; }
.nutrition strong { display: block; font-family: var(--font-display); font-size: 1.25rem; }
.nutrition span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-faint); }

/* --- Prose ------------------------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { margin: 2.5rem 0 .9rem; }
.prose h3 { margin: 2rem 0 .6rem; }
.prose p, .prose ul, .prose ol { margin-bottom: 1.1rem; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: .45rem; }
.prose > :first-child { margin-top: 0; }

/* --- Filters ----------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2.25rem; }
.filter {
  padding: .5rem 1.05rem; border: 1.5px solid var(--line); border-radius: 100px;
  background: transparent; font-size: .875rem; font-weight: 600; color: var(--ink-soft); cursor: pointer;
  transition: all .15s ease;
}
.filter:hover { border-color: var(--ink-faint); color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--cream); }

/* --- Instagram strip --------------------------------------------------- */
.insta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 165px), 1fr)); gap: .65rem; }
.insta-grid a { position: relative; display: block; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--cream-deep); }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.insta-grid a:hover img { transform: scale(1.06); }

/* Official Instagram embeds are taller than they are wide and cannot be
   cropped, so the grid switches to wider columns when they are in use. */
.insta-grid--embeds { grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: 1rem; }
.insta-embed {
  position: relative;
  aspect-ratio: 5 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.insta-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- Newsletter / CTA band --------------------------------------------- */
.band {
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.band h2 { color: var(--paper); }
.band p { color: #D8CCC3; }
.band .btn--ghost { border-color: rgba(255,255,255,.3); color: var(--cream); }
.band .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--cream); color: #fff; }

.form-row { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; margin-top: 1.75rem; }
.form-row input {
  flex: 1 1 260px; max-width: 340px;
  padding: .8rem 1.15rem; border-radius: 100px;
  border: 1.5px solid var(--line); background: var(--paper); color: var(--ink);
}
.form-row input::placeholder { color: var(--ink-faint); }

.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--paper); color: var(--ink);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--terracotta); outline: none; }

/* --- Media kit --------------------------------------------------------- */
.kit-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.kit-stat { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.4rem; text-align: center; }
.kit-stat strong { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--terracotta); line-height: 1; }
.kit-stat span { display: block; font-size: .8rem; color: var(--ink-faint); margin-top: .45rem; }

.package { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.6rem; display: flex; flex-direction: column; }
.package--featured { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.package h3 { margin-bottom: .4rem; }
.package ul { list-style: none; padding: 0; margin: 1.1rem 0; flex: 1; }
.package li { padding: .45rem 0 .45rem 1.6rem; position: relative; font-size: .93rem; }
.package li::before { content: "✓"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }

/* --- Shop / affiliate -------------------------------------------------- */
.disclosure {
  background: var(--cream-deep); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  font-size: .875rem; color: var(--ink-soft);
}
.disclosure strong { color: var(--ink); }

.product { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.product__media { aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--cream-deep); }
.product__media img, .product__media .ph { width: 100%; height: 100%; object-fit: contain; }
.product h3 { font-size: 1.02rem; }
.product .btn { margin-top: auto; }

/* --- FAQ / details ----------------------------------------------------- */
.faq { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2rem 1.15rem 0;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--terracotta); font-family: var(--font-body); font-weight: 400;
}
.faq[open] summary::after { content: "–"; }
.faq p { padding-bottom: 1.15rem; color: var(--ink-soft); }

/* --- Footer ------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #C9BCB2; padding-block: 3.5rem 2rem; margin-top: var(--section-y); }
.site-footer a { color: #E6DAD0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.footer-grid h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: #8E8078; margin-bottom: .9rem; }
.footer-grid ul { list-style: none; padding: 0; }
.footer-grid li { margin-bottom: .55rem; font-size: .93rem; }
.footer-brand .brand__name { color: var(--paper); }
.footer-brand p { font-size: .9rem; margin-top: .75rem; max-width: 30ch; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 10px; }
.footer-social a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  margin-top: 2.75rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem; color: #8E8078;
}

/* --- Utility ----------------------------------------------------------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.is-hidden { display: none !important; }
