/* ============================================
   Quality Meats International LLC
   Design tokens
   ============================================ */
:root {
  --navy: #0C213D;
  --navy-deep: #071426;
  --navy-soft: #1B3358;
  --gold: #C6992F;
  --gold-soft: #E4C878;
  --gold-line: #C6992F55;
  --paper: #FFFFFF;
  --mist: #F4F5F7;
  --ink: #1E2A3A;
  --ink-muted: #64748B;
  --ink-on-navy: #E7ECF3;
  --ink-muted-on-navy: #9FB0C6;
  --radius: 3px;
  --max: 1120px;
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.08; }
h1 .amp {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; }
h3 { font-size: 20px; }

p { margin: 0; color: var(--ink-muted); }

.lede {
  font-size: clamp(17px, 1.8vw, 19px);
  color: var(--ink-muted);
  max-width: 640px;
}

/* -------- Divider (signature element, pulled from the wordmark) -------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  width: fit-content;
}
.divider .line { width: 46px; height: 1px; background: var(--gold-line); }
.divider .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.divider.left { margin: 0; justify-content: flex-start; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color .15s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-soft); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-soft); }

.btn-ghost {
  background: transparent;
  border-color: #D7DCE3;
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--navy); }

.btn-ghost-light {
  background: transparent;
  border-color: #3A5075;
  color: #fff;
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold-soft); }

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

/* ============================================
   Nav
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ECEEF1;
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
}
.logo-mark .qm-mark {
  height: 46px;
  width: auto;
  display: block;
}

/* Footer sits on a dark background — give the full lockup a light plate
   so the monogram's true navy/gold colors stay visible instead of
   disappearing against the dark background */
footer .logo-mark {
  background: #FBF9F4;
  border-radius: 6px;
  padding: 10px 16px;
}
.logo-mark .name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 5px;
}
.logo-mark .name .line1 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.logo-mark .name .line2 {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"] { border-color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .logo-mark .qm-mark { height: 40px; }
  .logo-mark .name { gap: 4px; }
  .logo-mark .name .line1 { font-size: 14px; }
  .logo-mark .name .line2 { font-size: 8.5px; }
}

/* ============================================
   Hero (dotted world-map motif, matching the logo)
   ============================================ */
.hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 96px 0 88px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #ffffff26 1px, transparent 1.4px);
  background-size: 14px 14px;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%23fff' d='M60 180c30-40 90-30 120-10 20-15 60-20 80 0 40-20 90 10 90 40-30 10-60 0-80-10-30 20-80 20-110 0-40 20-80 0-100-20zM260 120c50-30 130-20 160 10 30-20 80-10 100 10-40 20-100 10-130-10-40 20-90 10-130-10zM460 90c60-20 140 0 170 30 40-10 90 20 90 50-40 20-100 0-130-20-40 20-100 10-130-30-20 10-20-20 0-30zM700 150c40-30 110-20 140 10 30-10 70 10 70 40-40 10-90-10-110-30-30 20-70 10-100-20zM780 260c50-20 120 0 140 30-30 20-90 10-120-10-20 10-40-10-20-20zM160 300c40-20 100-10 120 20-30 20-80 10-100-10-10 0-30 0-20-10zM380 280c60-30 140-10 170 20-40 20-110 0-140-20-20 10-40 10-30 0zM560 300c40-20 100 0 120 30-30 10-80 0-100-20-10 0-30 0-20-10z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath fill='%23fff' d='M60 180c30-40 90-30 120-10 20-15 60-20 80 0 40-20 90 10 90 40-30 10-60 0-80-10-30 20-80 20-110 0-40 20-80 0-100-20zM260 120c50-30 130-20 160 10 30-20 80-10 100 10-40 20-100 10-130-10-40 20-90 10-130-10zM460 90c60-20 140 0 170 30 40-10 90 20 90 50-40 20-100 0-130-20-40 20-100 10-130-30-20 10-20-20 0-30zM700 150c40-30 110-20 140 10 30-10 70 10 70 40-40 10-90-10-110-30-30 20-70 10-100-20zM780 260c50-20 120 0 140 30-30 20-90 10-120-10-20 10-40-10-20-20zM160 300c40-20 100-10 120 20-30 20-80 10-100-10-10 0-30 0-20-10zM380 280c60-30 140-10 170 20-40 20-110 0-140-20-20 10-40 10-30 0zM560 300c40-20 100 0 120 30-30 10-80 0-100-20-10 0-30 0-20-10z'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-size: cover;
  opacity: 0.5;
}
.hero.hero-photo {
  background-image:
    linear-gradient(180deg, rgba(7,20,38,0.88) 0%, rgba(12,33,61,0.90) 45%, rgba(7,20,38,0.95) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 680px; }
.hero .eyebrow { color: var(--gold-soft); margin-bottom: 18px; display: block; }
.hero h1 { color: #fff; }
.hero .lede { color: var(--ink-muted-on-navy); margin-top: 20px; }
.hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
}

/* ============================================
   Sections
   ============================================ */
section { padding: 84px 0; }
.section-alt { background: var(--mist); }
.section-navy { background: var(--navy); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-top: 10px; }

@media (max-width: 640px) {
  section { padding: 56px 0; }
}

/* -------- Trade categories row -------- */
.trade-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #E3E6EA;
  border: 1px solid #E3E6EA;
  border-radius: var(--radius);
  overflow: hidden;
}
.trade-cell { background: #fff; text-align: center; }
.trade-cell { padding: 40px 20px; }
.trade-cell .mark {
  width: 34px; height: 34px;
  margin: 0 auto 16px;
  border: 1.4px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}
.trade-cell .label {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.trade-note {
  text-align: center;
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 15px;
}
@media (max-width: 640px) {
  .trade-row { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Snapshot / two-col -------- */
.snapshot {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.snapshot p + p { margin-top: 18px; }
.subsidiary-card {
  background: var(--navy);
  color: var(--ink-on-navy);
  padding: 32px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.subsidiary-card .eyebrow { color: var(--gold-soft); }
.subsidiary-card h3 { color: #fff; margin-top: 10px; }
.subsidiary-card p { color: var(--ink-muted-on-navy); margin-top: 10px; font-size: 14px; }
.subsidiary-card address { font-style: normal; margin-top: 16px; font-size: 14px; color: var(--ink-muted-on-navy); }

@media (max-width: 860px) {
  .snapshot { grid-template-columns: 1fr; gap: 32px; }
}

/* -------- Leadership cards -------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  padding: 30px 24px;
  background: #fff;
  border: 1px solid #E9EBEE;
  border-radius: var(--radius);
}
.team-card .initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.team-card .name { font-family: var(--serif); font-size: 19px; color: var(--navy); font-weight: 700; }
.team-card .role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-top: 4px; display: block;
}
@media (max-width: 780px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* -------- Contact cards -------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  padding: 30px 26px;
  background: #fff;
  border: 1px solid #E9EBEE;
  border-radius: var(--radius);
}
.contact-card .role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
}
.contact-card .name { font-family: var(--serif); font-size: 20px; color: var(--navy); font-weight: 700; margin-top: 6px; }
.contact-card .rows { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.contact-card .rows a, .contact-card .rows span {
  font-size: 14px; color: var(--ink); display: flex; align-items: center; gap: 10px;
}
.contact-card .rows a:hover { color: var(--gold); }
.icon-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.haiti-block {
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: var(--mist);
  border-radius: var(--radius);
}
.haiti-block .pin {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.haiti-block .pin svg { width: 22px; height: 22px; }
.haiti-block h3 { margin-bottom: 4px; }
.haiti-block .role { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.haiti-block address { font-style: normal; color: var(--ink-muted); font-size: 14px; margin-top: 6px; }

@media (max-width: 600px) {
  .haiti-block { grid-template-columns: 1fr; text-align: left; }
}

/* -------- Trust strip -------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.trust-item .t { font-weight: 700; color: var(--navy); font-size: 15px; }
.trust-item .d { font-size: 13.5px; margin-top: 3px; color: var(--ink-muted); }
@media (max-width: 780px) {
  .trust-strip { grid-template-columns: 1fr; }
}

/* -------- Stats bar -------- */
.stats-bar {
  background: var(--navy-deep);
  border-top: 1px solid #16273F;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 34px 20px;
  text-align: center;
  border-left: 1px solid #16273F;
}
.stat-cell:first-child { border-left: none; }
.stat-cell .num {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold-soft);
  line-height: 1;
}
.stat-cell .lbl {
  margin-top: 8px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted-on-navy);
}
@media (max-width: 780px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-left: none; }
}

/* -------- Product category buttons (nav-style, Nowaco-inspired) -------- */
.category-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.category-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 18px;
  background: var(--navy-soft);
  border-radius: var(--radius);
  border: 1px solid #2A4468;
  transition: background .15s ease, border-color .15s ease;
}
.category-btn:hover { background: #223e64; border-color: var(--gold); }
.category-btn .cat-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.category-btn .cat-arrow { color: var(--gold-soft); font-size: 13px; }
@media (max-width: 640px) {
  .category-row { grid-template-columns: repeat(2, 1fr); }
}

/* -------- Products page category sections -------- */
.product-section {
  padding: 64px 0;
  border-bottom: 1px solid #ECEEF1;
}
.product-section:last-of-type { border-bottom: none; }
.product-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}
.product-head .idx {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}
.product-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  margin-top: 22px;
  align-items: start;
}
.specs-box {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.specs-box dt {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
}
.specs-box dt:first-child { margin-top: 0; }
.specs-box dd {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--ink-muted);
}
@media (max-width: 780px) {
  .product-body { grid-template-columns: 1fr; gap: 20px; }
}
.cta-band {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band .lede { color: var(--ink-muted-on-navy); margin: 16px auto 32px; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* -------- Logo image block (About page) -------- */
.brandshot {
  border-radius: var(--radius);
  border: 1px solid #E9EBEE;
  overflow: hidden;
}

/* -------- Subsidiary photo slideshow -------- */
.sub-slideshow {
  margin-top: 40px;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E9EBEE;
  background: #EDEFF2;
}
.sub-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.sub-slideshow img.active {
  opacity: 1;
}
@media (max-width: 640px) {
  .sub-slideshow { max-width: 320px; }
}

/* -------- Haiti map block -------- */
.haiti-map-block {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.haiti-map-block .copy .role { color: var(--gold-soft); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.haiti-map-block .copy h3 { color: #fff; margin-top: 8px; }
.haiti-map-block .copy address { font-style: normal; color: var(--ink-muted-on-navy); font-size: 14px; margin-top: 14px; line-height: 1.7; }
.haiti-map-block .copy address a { color: var(--gold-soft); }
.haiti-map-block .map-wrap { display: flex; align-items: center; justify-content: center; }
.haiti-map-block .map-wrap svg { width: 100%; max-width: 260px; height: auto; }
@media (max-width: 780px) {
  .haiti-map-block { grid-template-columns: 1fr; padding: 28px; }
  .haiti-map-block .map-wrap { order: -1; max-width: 200px; margin: 0 auto; }
}

/* -------- Inquiry form (Contact page) -------- */
.inquiry-form {
  max-width: 640px;
  display: grid;
  gap: 20px;
}
.inquiry-form .field { display: grid; gap: 8px; }
.inquiry-form .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.inquiry-form label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy);
}
.inquiry-form input,
.inquiry-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 16px;
  border: 1px solid #D7DCE3;
  border-radius: var(--radius);
  background: #fff;
  resize: vertical;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.inquiry-form .submit-row { margin-top: 6px; }
.inquiry-form button.btn { border: none; }
@media (max-width: 560px) {
  .inquiry-form .two-col { grid-template-columns: 1fr; }
}

/* -------- Original product cut diagrams -------- */
.cut-diagram {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 28px;
  padding: 30px;
  background: var(--mist);
  border-radius: var(--radius);
}
.cut-diagram .silhouette { display: flex; align-items: center; justify-content: center; }
.cut-diagram .silhouette svg { width: 100%; height: auto; }
.cut-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cut-groups .grp .h {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold);
  padding-bottom: 6px; margin-bottom: 8px; border-bottom: 1px solid var(--gold-line);
}
.cut-groups .grp ul { margin: 0; padding: 0; list-style: none; }
.cut-groups .grp li { font-size: 13.5px; color: var(--ink); padding: 3px 0; }
@media (max-width: 780px) {
  .cut-diagram { grid-template-columns: 1fr; }
  .cut-diagram .silhouette svg { max-width: 200px; margin: 0 auto; }
  .cut-groups { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cut-groups { grid-template-columns: 1fr; }
}

/* -------- Full cut-diagram illustrations (supplied by Ozzy) -------- */
.cut-diagram-full {
  margin-top: 28px;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 24px;
}
.cut-diagram-full img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* -------- Seafood species grid -------- */
.species-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  justify-content: center;
}
.species-card {
  flex: 1 1 180px;
  max-width: 200px;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 22px 16px 20px;
  text-align: center;
}
.species-card img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  margin-bottom: 14px;
}
.species-card .sp-name {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .species-card { flex: 1 1 45%; }
}

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--navy-deep);
  color: var(--ink-muted-on-navy);
  padding: 56px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid #1A2B45;
}
.footer-col .h { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; font-size: 14px; margin-bottom: 8px; color: var(--ink-muted-on-navy); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
  font-size: 12.5px;
  color: #6E80A0;
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}

/* ============================================
   Floating WhatsApp button
   ============================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(12,33,61,0.28);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--gold-line);
}
.whatsapp-fab:hover { background: var(--navy-soft); }
.whatsapp-fab svg { width: 20px; height: 20px; }

@media (max-width: 560px) {
  .whatsapp-fab .label { display: none; }
  .whatsapp-fab { padding: 14px; }
}
