/* ================================================================
   TERRA VITIS — MAIN STYLESHEET
   ================================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── VARIABLES ─────────────────────────────────────────────────── */
:root {
  --bg:           #f5f0e8;
  --bg-card:      #ede7da;
  --bg-lift:      #e6dfd1;
  --accent:       #8b5e2a;
  --accent-lt:    #a8743a;
  --accent-dim:   rgba(139,94,42,.10);
  --text:         #1e1710;
  --muted:        #7a6e61;
  --border:       rgba(0,0,0,.09);
  --border-a:     rgba(0,0,0,1);
  --shadow:       0 8px 48px rgba(0,0,0,.12);
  --hh:           72px;
  --container:    1200px;
  --pad:          clamp(20px,5vw,64px);
  --font-d:       'Bebas Neue', sans-serif;
  --font-b:       'Montserrat', sans-serif;
  --ease:         cubic-bezier(.25,.46,.45,.94);
}

/* ── BASE ──────────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

main { padding-top: var(--hh); }

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

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: rgba(245,240,232,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: var(--hh);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── Back Button ─────────────────────────────────────────── */
.btn-back {
  display: none;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-back svg { transition: transform .2s; }
.btn-back:hover { color: var(--accent); }
.btn-back:hover svg { transform: translateX(-3px); }

/* Show back button on mobile for inner pages */
@media (max-width: 768px) {
  body.show-back .btn-back { display: flex; }
}

/* ── Logo ────────────────────────────────────────────────── */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
  margin: 0 auto;
}

.logo img{height:40px;}

@media (min-width: 769px) {
  .logo { margin: 0;}
}

.logo-name {
  font-family: var(--font-d);
  font-size: clamp(17px,2.2vw,21px);
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text);
}
.logo-sub {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

/* ── Desktop Nav ─────────────────────────────────────────── */
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color .2s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--text); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

/* ── Hamburger ───────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transform-origin: center;
  transition: transform .35s var(--ease), opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 var(--pad) 20px;
  border-top: 1px solid var(--border);
  animation: slideDown .3s var(--ease) both;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s, padding-left .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); padding-left: 6px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .main-nav   { display: none; }
  .hamburger  { display: flex; }
  .logo       { margin-left: auto; }
  body.show-back .logo { margin-left: 0; }
}

/* ================================================================
   HERO  (index.html)
   ================================================================ */
.hero {
  position: relative;
  height: calc(100vh - var(--hh));
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-visual {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 90%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,7,3,.88) 0%,
    rgba(12,7,3,.52) 55%,
    rgba(12,7,3,.70) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-content .eyebrow {
  color: #d4af6a;
}
.hero-content h1 {
  font-family: "MarckScript", cursive;
  font-size: clamp(52px,8.5vw,70px);
  font-weight: 300;
  line-height: 1.04;
  color: #ede8df;
  margin-bottom: 24px;
  text-shadow: 2px 2px 2px rgba(0,0,0,.50);
}
.hero-content h1 em {
  font-style: normal;
  color: #d4af6a;
}
.hero-desc {
  font-size: clamp(14px,1.4vw,16px);
  color: rgba(237,232,223,.70);
  margin-bottom: 44px;
  line-height: 1.9;
}
.btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid rgba(212,175,106,.35);
  color: #d4af6a;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s, border-color .3s, color .3s;
}
.btn-ghost:hover {
  background: rgba(212,175,106,.12);
  border-color: #d4af6a;
  color: #ede8df;
}

/* Hero animations */
.hero-content > * {
  animation: fadeUp .9s var(--ease) backwards;
}
.hero-content .eyebrow { animation-delay: .1s; }
.hero-content h1       { animation-delay: .25s; }
.hero-content .hero-desc { animation-delay: .4s; }
.hero-content .btn-ghost { animation-delay: .55s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   ABOUT STRIP  (index.html)
   ================================================================ */
.about-strip {
  padding: clamp(72px,9vw,130px) 0;
  border-bottom: 1px solid var(--border);
}
.about-strip-inner {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.about-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  padding-top: 6px;
}
.deco-line {
  display: block;
  width: 1px;
  height: 64px;
  background: var(--border-a);
}
.deco-star {
  color: var(--accent);
  font-size: 13px;
}
.about-strip-text h2 {
  font-family: var(--font-d);
  font-size: clamp(30px,4vw,46px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 22px;
  line-height: 1.15;
}
.about-strip-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
  max-width: 600px;
  margin-bottom: 32px;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .2s;
}
.link-more:hover { gap: 15px; }

@media (max-width: 600px) { .about-deco { display: none; } }

/* ================================================================
   CATALOG GRID  (index.html)
   ================================================================ */
.catalog { padding: clamp(72px,8vw,120px) 0 clamp(80px,10vw,150px); }

.section-header {
  text-align: center;
  margin-bottom: clamp(44px,5vw,72px);
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(34px,5vw,56px);
  font-weight: 300;
  color: var(--text);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px,1.5vw,18px);
}
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  transition: transform .45s var(--ease);
}
.cat-card:hover { transform: translateY(-5px); }

.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .65s var(--ease);
}
.cat-card:hover .cat-img { transform: scale(1.06); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,14,8,.92) 0%,
    rgba(20,14,8,.35) 50%,
    rgba(20,14,8,.08) 100%
  );
}

.cat-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
}
.cat-num {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35em;
  color: var(--accent);
  margin-bottom: 8px;
}
.cat-body h3 {
  font-family: var(--font-d);
  font-size: clamp(20px,2.5vw,27px);
  font-weight: 400;
  color: white;
  line-height: 1.15;
  margin-bottom: 6px;
}
.cat-body p {
  font-size: 12.5px;
  color: rgba(237,232,223,.55);
  letter-spacing: .03em;
  margin-bottom: 14px;
}
.cat-arr {
  display: inline-block;
  font-size: 16px;
  color: var(--accent);
  transition: transform .2s;
}
.cat-card:hover .cat-arr { transform: translateX(5px); }

/* ================================================================
   PAGE BANNER  (inner pages)
   ================================================================ */
.page-banner {
  padding: clamp(52px,7vw,90px) 0 clamp(44px,5vw,70px);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--accent);
}
.page-banner .eyebrow { margin-bottom: 18px; }
.page-banner h1 {
  font-family: var(--font-d);
  font-size: clamp(36px,6.5vw,68px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ================================================================
   WINE LIST  (wines.html)
   ================================================================ */
.wine-list { padding: clamp(52px,6vw,80px) 0 clamp(80px,10vw,130px); }

.wine-items {
  display: flex;
  flex-direction: column;
}

.wine-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(24px,4vw,48px);
  padding: clamp(28px,4vw,44px) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background .25s;
}
.wine-item:first-child { border-top: 1px solid var(--border); }
.wine-item:hover { background: linear-gradient(90deg, var(--bg-card) 0%, transparent 100%); }

.wine-thumb {
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 3/4;
  flex-shrink: 0;
}
.wine-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.wine-item:hover .wine-thumb img { transform: scale(1.05); }

.wine-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 16px;
}

.wine-region {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}

.wine-info h3 {
  font-family: var(--font-d);
  font-size: clamp(22px,3vw,32px);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
}

.wine-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 500px;
}

.wine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 20px;
  padding-top: 8px;
}

.wine-price {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
}

.wine-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, letter-spacing .2s;
}
.wine-item:hover .wine-cta {
  border-color: var(--accent);
  letter-spacing: .25em;
}

@media (max-width: 600px) {
  .wine-item { grid-template-columns: 1fr; }
  .wine-thumb { aspect-ratio: 16/9; }
}

/* ================================================================
   WINE DETAIL  (wine.html)
   ================================================================ */
.wine-detail { padding: clamp(52px,6vw,80px) 0 clamp(80px,10vw,130px); }

.wine-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,90px);
  align-items: start;
}
@media (max-width: 768px) {
  .wine-detail-grid {
    grid-template-columns: 1fr;
  }
}

.wine-photo-wrap {
  position: sticky;
  top: calc(var(--hh) + 28px);
}

@media (max-width: 768px) {
  .wine-photo-wrap {
    position: static;
  }
}
.wine-photo-main {
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 3/4;
}
.wine-photo-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.wine-photo-main:hover img { transform: scale(1.03); }

.wine-photo-caption {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 5px 12px;
}

.wine-detail-info { padding: 4px 0; }

.wine-detail-region {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.wine-detail-info h1 {
  font-family: var(--font-d);
  font-size: clamp(36px,5vw,58px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 28px;
}
.detail-divider {
  width: 54px; height: 1px;
  background: var(--border-a);
  margin-bottom: 28px;
}
.wine-detail-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 40px;
}

.wine-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 44px;
  border: 1px solid var(--border);
}
.meta-cell {
  background: var(--bg-card);
  padding: 22px 24px;
}
.meta-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.meta-val {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.detail-price {
  font-family: var(--font-d);
  font-size: 46px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
}
.btn-primary {
  display: inline-block;
  padding: 16px 42px;
  background: var(--accent);
  color: #f5f0e8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: background .3s, transform .2s;
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-content { padding: clamp(52px,6vw,80px) 0 clamp(80px,10vw,130px); }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,90px);
  align-items: center;
  margin-bottom: clamp(72px,9vw,120px);
}
@media (max-width: 768px) {
  .about-story { grid-template-columns: 1fr; }
}

.about-story-img {
  overflow: hidden;
  aspect-ratio: 4/5;
  order: -1;
}
@media (min-width: 769px) { .about-story-img { order: 0; } }

.about-story-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-text-block h2 {
  font-family: var(--font-d);
  font-size: clamp(30px,4.5vw,48px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.18;
}
.about-text-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.95;
  margin-bottom: 20px;
}
.about-text-block p:last-child { margin-bottom: 0; }

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: clamp(72px,9vw,120px);
}
@media (max-width: 640px) { .about-stats { grid-template-columns: repeat(2,1fr); } }

.stat-cell {
  background: var(--bg);
  padding: clamp(28px,4vw,48px) 20px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-d);
  font-size: clamp(42px,5.5vw,64px);
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .06em;
}

/* Values */
.about-values { margin-bottom: clamp(72px,9vw,120px); }
.about-values > h2 {
  font-family: var(--font-d);
  font-size: clamp(28px,4vw,44px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 44px;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(16px,2.5vw,28px);
}
@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color .3s, transform .3s;
}
.value-card:hover {
  border-color: var(--border-a);
  transform: translateY(-4px);
}
.value-icon {
  font-size: 26px;
  margin-bottom: 22px;
  display: block;
}
.value-card h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}

/* ================================================================
   CONTACTS PAGE
   ================================================================ */
.contacts-content { padding: clamp(52px,6vw,80px) 0 clamp(80px,10vw,130px); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px);
  margin-bottom: clamp(52px,6vw,80px);
}
@media (max-width: 768px) { .contacts-grid { grid-template-columns: 1fr; } }

.contacts-info h2 {
  font-family: var(--font-d);
  font-size: clamp(28px,4vw,44px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 36px;
}

.contact-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-of-type { border-bottom: none; }

.contact-ico {
  font-size: 19px;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
  margin-top: 2px;
}
.cr-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.cr-val {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
}

.hours-box {
  padding: 30px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-top: 32px;
}
.hours-box h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 22px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--muted); }
.hours-time { color: var(--text); }

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  height: 460px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: clamp(52px,7vw,90px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(32px,5vw,64px);
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo { align-items: flex-start; margin-bottom: 18px; }
.footer-brand > p { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 260px; }

.footer-col h4 {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 11px;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover { color: var(--text); padding-left: 4px; }
.footer-col p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 9px;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-warn { opacity: .5 !important; font-size: 11px !important; }

/* ================================================================
   UTILITIES
   ================================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
