/* ============================================
   FINESHINE FOODS — Corporate B2B Website
   Color: Navy #0B1F3A · Gold #C8A951 · White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1F3A;
  --navy-light: #132d52;
  --navy-dark: #071428;
  --gold: #C8A951;
  --gold-light: #ddc477;
  --gold-dark: #a8893a;
  --white: #FFFFFF;
  --off-white: #F7F6F3;
  --gray-100: #f0efe9;
  --gray-200: #e0ddd4;
  --gray-400: #9a9588;
  --gray-600: #6b6660;
  --gray-800: #3a3733;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 6rem 0; }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 580px;
  line-height: 1.75;
}

.section-subtitle.centered { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 64px;
  width: auto;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.75rem !important;
  letter-spacing: 0.1em !important;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--navy) !important;
  color: var(--navy) !important;
  transition: all var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,81,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,169,81,0.04) 0%, transparent 50%),
    linear-gradient(180deg, rgba(11,31,58,0) 0%, rgba(7,20,40,0.5) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,81,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,81,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}

.hero-content {
  max-width: 700px;
  padding: 4rem 0;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(200,169,81,0.15);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

/* Gold accent line on right */
.hero-accent {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 300px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* --- About Section --- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.about-image-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.about-list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
}

/* --- Products Preview --- */
.products-preview {
  background: var(--off-white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(11,31,58,0.08);
  transform: translateY(-2px);
}

.product-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.product-card-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.product-card-link:hover { gap: 0.75rem; }

.product-card-link svg {
  width: 14px;
  height: 14px;
}

/* --- Why Choose Us --- */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  margin-bottom: 1.25rem;
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Values Grid (About Page) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.value-item {
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
}

.value-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,169,81,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner .section-title { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner .section-subtitle { color: rgba(255,255,255,0.55); }

/* --- Products Page --- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 3rem) 0 3rem;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,81,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,81,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

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

.page-hero .section-title { color: var(--white); }
.page-hero .section-subtitle { color: rgba(255,255,255,0.55); }

.breadcrumb {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-full-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

.product-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(11,31,58,0.08);
}

.product-full-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.product-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-full-body {
  padding: 1.75rem;
}

.product-full-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.product-full-body p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-full-body .btn { font-size: 0.72rem; padding: 0.65rem 1.5rem; }

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.25rem;
}

.contact-detail-text a,
.contact-detail-text span {
  font-size: 0.95rem;
  color: var(--navy);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--gray-200);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--gray-200);
  background: var(--off-white);
  color: var(--gray-800);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea { min-height: 140px; resize: vertical; }

.contact-form .btn { width: 100%; justify-content: center; }

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  height: 48px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

.footer ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  }

  .nav-links.open { right: 0; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 3rem 0; }
  .hero-stats { gap: 2rem; }
  .hero-accent { display: none; }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid,
  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .nav-links.open a { color: rgba(255,255,255,0.75); }
  .nav-links.open a:hover,
  .nav-links.open a.active { color: var(--white); }
  .nav-links.open .nav-cta { color: var(--gold) !important; border-color: var(--gold) !important; }
  .nav-links.open .nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }

  .cta-inner { text-align: center; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .section-pad { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-list { grid-template-columns: 1fr; }
}

/* --- Bottom Bar --- */
.bottom-bar {
  background: rgba(0,0,0,0.3);
  padding: 1rem 0;
  margin-top: 0;
}

.bottom-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.bottom-bar a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}

.bottom-bar a:hover { color: var(--gold); }

/* --- Legal Content (Terms page) --- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--gray-200);
}

.legal-notice {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-notice p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.75; margin: 0; }

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.legal-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.legal-footer p { font-size: 0.8rem; color: var(--gray-400); }

/* --- FAQ Content --- */
.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2.5rem;
}

.faq-category h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s ease;
}

.faq-item:hover { border-color: var(--gold); }

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

.faq-item a { color: var(--gold-dark); text-decoration: underline; }

@media (max-width: 768px) {
  .legal-content { padding: 1.5rem; }
  .bottom-bar .container { gap: 1rem; }
  .bottom-bar a { font-size: 0.7rem; }
}
