/* ============================================================
   Token system — Mehzin brand
   Main: #5C50A2 (deep periwinkle purple), neutrals #E5E5E5 / white.
   Modern signature: soft rounded cards, layered violet shadows,
   a gradient "glow" hero, and pill-shaped controls throughout.
   ============================================================ */
:root {
  --brand: #5C50A2;
  --brand-700: #453B7C;
  --brand-600: #4E4390;
  --brand-500: #5C50A2;
  --brand-300: #8A80C4;
  --brand-100: #EDEBF8;
  --brand-50: #F6F5FC;

  --gray: #E5E5E5;
  --gray-dark: #C9C9CF;
  --white: #FFFFFF;

  --ink: #241F35;
  --muted: #726C86;
  --line: #E6E4F0;

  --sale: #E0446B;
  --sale-bg: #FCEAEF;
  --success: #2E9E6D;

  --font-display: "Baloo Da 2", "Hind Siliguri", "Segoe UI", sans-serif;
  --font-body: "Hind Siliguri", "Inter", "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  --shadow-card: 0 10px 26px -16px rgba(92, 80, 162, 0.35);
  --shadow-lift: 0 22px 40px -18px rgba(92, 80, 162, 0.45);
  --shadow-soft: 0 4px 14px rgba(92, 80, 162, 0.10);

  --edge-pad: clamp(20px, 4vw, 64px);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 0.4em;
  color: var(--ink);
  letter-spacing: 0.1px;
}

p { line-height: 1.7; margin: 0 0 1em; color: var(--ink); }

.container {
  width: 100%;
  margin: 0;
  padding: 0 var(--edge-pad);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ============================================================
   Site header
   ============================================================ */
.site-header {
  background: var(--white);
  color: var(--ink);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--edge-pad);
  width: 100%;
  margin: 0;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.3px;
}
.brand span { color: var(--sale); }

.site-header__nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-header__nav a {
  color: var(--muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.site-header__nav a:hover {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

.cart-pill {
  border: 1px solid var(--brand-100);
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   Signature: soft gradient divider used between sections
   ============================================================ */
.section-divider {
  height: 4px;
  border: none;
  border-radius: 999px;
  margin: 0 auto;
  max-width: 120px;
  background: linear-gradient(90deg, var(--brand), var(--sale));
  opacity: 0.9;
}

/* ============================================================
   Announcement bar
   ============================================================ */
.announce-bar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 9px 16px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--brand-700);
  background: var(--white);
  border: 1px solid var(--brand-100);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   Modern split hero — headline/CTA on the left, a floating
   photo collage on the right built from real catalog shots.
   ============================================================ */
.hero-modern {
  padding: 64px var(--edge-pad) 30px;
  background:
    radial-gradient(90% 130% at 0% 0%, rgba(92, 80, 162, 0.14), transparent 55%),
    var(--brand-50);
  overflow: hidden;
}
.hero-modern__inner {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-modern__inner { grid-template-columns: 1fr; }
}

.hero-modern__content h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  margin: 16px 0 18px;
  max-width: 520px;
}
.hero-modern__content h1 em { font-style: normal; color: var(--brand); }
.hero-modern__content p {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--brand);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-collage {
  position: relative;
  height: 420px;
}
.hero-collage img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--white);
}
.hero-collage .c1 { width: 60%; aspect-ratio: 3 / 4; top: 6%; left: 4%; z-index: 2; }
.hero-collage .c2 {
  width: 44%;
  aspect-ratio: 3 / 4;
  bottom: 0;
  right: 2%;
  z-index: 3;
  transform: rotate(4deg);
}
.hero-collage__badge {
  position: absolute;
  top: 0;
  right: 14%;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brand-700);
  z-index: 4;
}
@media (max-width: 900px) {
  .hero-collage { height: 320px; margin-top: 10px; }
}
@media (max-width: 560px) {
  .hero-collage { display: none; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 22px var(--edge-pad);
}
.trust-strip__inner {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.trust-item .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-100);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}

/* ============================================================
   Category filter chips
   ============================================================ */
.category-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 4px 0 30px;
}
.category-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.category-chip.active,
.category-chip:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ============================================================
   Catalog grid — 4 columns, responsive
   ============================================================ */
.catalog {
  padding: 52px 24px 76px;
}
.catalog__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog__head h2 { margin: 0; font-size: 1.6rem; }
.catalog__count {
  color: var(--brand-700);
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--brand-100);
  padding: 5px 14px;
  border-radius: 999px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (min-width: 1500px) {
  .product-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1900px) {
  .product-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brand-100);
}

.product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brand-50);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.05); }

.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sale);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -4px rgba(224, 68, 107, 0.55);
}

.product-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--brand);
  font-weight: 700;
}
.product-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.price-now {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.08rem;
}
.price-was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.85rem;
}

.btn {
  display: inline-block;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px -10px rgba(92, 80, 162, 0.6);
}
.btn-primary:hover { background: var(--brand-700); }

.btn-gold {
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(92, 80, 162, 0.65);
}
.btn-gold:hover { filter: brightness(1.06); }

.btn-outline {
  background: var(--white);
  border-color: var(--gray-dark);
  color: var(--ink);
}
.btn-outline:hover { background: var(--brand-50); border-color: var(--brand-300); color: var(--brand-700); }

.btn-block { width: 100%; }

.product-card__cta {
  margin-top: 6px;
}

/* ============================================================
   Single product page
   ============================================================ */
.product-page {
  padding: 36px 24px 76px;
}
.breadcrumb {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--brand); font-weight: 600; }

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
}

.gallery__main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--brand-50);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery__thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: none;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}
.gallery__thumbs button.active { border-color: var(--brand); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product-info__cat {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--brand-700);
  background: var(--brand-100);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-info h1 {
  font-size: 1.85rem;
  margin-bottom: 12px;
}
.product-info .price-row {
  margin: 10px 0 6px;
}
.product-info .price-now { font-size: 1.55rem; }
.discount-tag {
  background: var(--sale-bg);
  color: var(--sale);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.short-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 16px 0 22px;
  padding: 14px 16px;
  background: var(--brand-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-100);
}

.option-group { margin-bottom: 22px; }
.option-group label.option-title {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.option-group .option-hint {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.option-group .option-hint strong { color: var(--ink); }

/* Style picker: two radio cards each with an illustrative image */
.style-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.style-choices input { position: absolute; opacity: 0; pointer-events: none; }
.style-card {
  display: block;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.style-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--brand-50);
}
.style-card__img img { width: 100%; height: 100%; object-fit: cover; }
.style-card__label {
  padding: 10px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
}
.style-choices input:checked + .style-card {
  border-color: var(--brand);
  box-shadow: 0 8px 20px -10px rgba(92, 80, 162, 0.5);
}
.style-choices input:checked + .style-card .style-card__label {
  color: var(--brand-700);
  background: var(--brand-50);
}

.select-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%235C50A2' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  color: var(--ink);
  cursor: pointer;
}
.select-field:focus { border-color: var(--brand); }

.textarea-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}
.textarea-field:focus { border-color: var(--brand); }

.product-info__actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.product-info__actions .btn { flex: 1; min-width: 180px; }

/* Full details table */
.detail-table-wrap {
  margin-top: 34px;
}
.detail-table-wrap h4 {
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.detail-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.detail-table tr:not(:last-child) td { border-bottom: 1px solid var(--line); }
.detail-table td {
  padding: 14px 18px;
  font-size: 0.9rem;
  vertical-align: top;
  line-height: 1.6;
}
.detail-table td:first-child {
  width: 32%;
  font-weight: 700;
  color: var(--brand-700);
  background: var(--brand-50);
}
.detail-table td:last-child { color: var(--ink); }

.note-box {
  margin-top: 24px;
  background: var(--sale-bg);
  border: 1px solid #F5CBD8;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.86rem;
  color: var(--ink);
  line-height: 1.85;
}
.note-box strong { color: var(--sale); }

.trust-row {
  display: flex;
  gap: 20px;
  margin-top: 22px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}
.trust-row span { display: flex; align-items: center; gap: 6px; font-weight: 500; }

/* ============================================================
   Checkout page
   ============================================================ */
.checkout {
  padding: 40px 24px 76px;
}
.checkout h1 { font-size: 1.7rem; }
.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  margin-top: 26px;
}
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
}

.panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.panel h2 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--brand-50);
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 76px; }
.field .error {
  color: var(--sale);
  font-size: 0.78rem;
  margin-top: 4px;
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--sale); }

.payment-options { display: grid; gap: 10px; margin-bottom: 22px; }
.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
}
.payment-option input { accent-color: var(--brand); }
.payment-option.selected { border-color: var(--brand); background: var(--brand-50); }

.order-summary__item {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.order-summary__item img {
  width: 76px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.order-summary__item h3 {
  font-size: 0.98rem;
  margin: 0 0 6px;
}
.order-summary__meta {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 6px 0;
}
.summary-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
}
.free-tag { color: var(--success); font-weight: 600; }

/* ============================================================
   Thank-you page
   ============================================================ */
.thankyou {
  padding: 76px 24px;
  text-align: center;
}
.thankyou__badge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 2.1rem;
  box-shadow: 0 16px 30px -12px rgba(92, 80, 162, 0.55);
}
.thankyou h1 { font-size: 2rem; }
.thankyou p.lead {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 30px;
}
.order-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
  padding: 26px 28px;
}
.order-card .summary-row { font-size: 0.9rem; }

/* ============================================================
   Empty / error states
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 90px 24px;
  color: var(--muted);
}
.empty-state h2 { color: var(--ink); margin-bottom: 10px; }

/* ============================================================
   Footer — solid brand purple, multi-column, matches the
   Quick Link / Information layout of the reference site.
   ============================================================ */
.site-footer {
  background: linear-gradient(165deg, var(--brand), var(--brand-700));
  color: rgba(255, 255, 255, 0.82);
  margin-top: 56px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 56px var(--edge-pad) 40px;
}
@media (max-width: 860px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: 1fr; }
}

.site-footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.3px;
}
.site-footer__brand strong span { color: var(--gold, #FFD9A0); opacity: 0.9; }
.site-footer__brand p {
  margin-top: 12px;
  max-width: 300px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.site-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}
.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.site-footer__col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-footer__col a,
.site-footer__col span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}
.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px var(--edge-pad);
}
.site-footer__bottom small { color: rgba(255, 255, 255, 0.65); font-size: 0.8rem; }
