/* ============ LKT Universal — Premium Marine Theme ============ */
:root {
  --ink: #0a1524;
  --ink-2: #0e1f33;
  --ink-3: #16293f;
  --paper: #f7f9fb;
  --white: #ffffff;
  --brass: #d9a441;
  --brass-2: #b8862e;
  --sea: #37b6d9;
  --sea-deep: #1c8db0;
  --text: #33414f;
  --muted: #6b7a89;
  --line: #e4e9ee;
  --radius: 16px;
  --shadow-sm: 0 1px 3px rgba(10,21,36,.07);
  --shadow-md: 0 12px 32px rgba(10,21,36,.10);
  --shadow-lg: 0 28px 64px rgba(10,21,36,.18);
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; letter-spacing: -0.015em; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: #b9c6d2; font-size: 12.5px;
  display: flex; justify-content: center; gap: 28px; padding: 8px 16px;
  letter-spacing: .02em;
}
.announce b { color: var(--brass); font-weight: 600; }
@media (max-width: 640px) { .announce span.hide-m { display: none; } }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.hdr-in {
  max-width: 1180px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand img { height: 40px; }
.nav-main { display: flex; align-items: center; gap: 4px; }
.nav-main > a, .nav-main .drop > a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  padding: 10px 14px; border-radius: 10px; display: block;
}
.nav-main > a:hover, .nav-main .drop:hover > a { background: #eef3f7; color: var(--sea-deep); }
.drop { position: relative; }
.drop-menu {
  visibility: hidden; opacity: 0; transform: translateY(8px);
  transition: all .18s ease;
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; min-width: 230px;
}
.drop:hover .drop-menu { visibility: visible; opacity: 1; transform: translateY(0); }
.drop-menu a {
  display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: var(--text);
}
.drop-menu a:hover { background: #eef7fa; color: var(--sea-deep); }
.cta {
  display: inline-block; font-weight: 600; font-size: 14px;
  background: linear-gradient(135deg, var(--brass), var(--brass-2));
  color: var(--ink) !important; padding: 11px 22px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(217,164,65,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(217,164,65,.45); }

/* Mobile nav */
.nav-toggle { display: none; }
.burger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px;
}
.burger span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }
@media (max-width: 920px) {
  .burger { display: flex; }
  .hdr .cta { display: none; }
  .nav-main {
    position: fixed; inset: 0; top: 0; z-index: 99;
    flex-direction: column; justify-content: center; gap: 8px;
    background: rgba(8,17,29,.97); backdrop-filter: blur(8px);
    transform: translateX(100%); transition: transform .3s ease;
  }
  .nav-main > a, .nav-main .drop > a { color: #fff; font-size: 20px; padding: 12px 20px; text-align: center; }
  .nav-main > a:hover { background: transparent; color: var(--brass); }
  .drop-menu {
    position: static; visibility: visible; opacity: 1; transform: none;
    background: transparent; border: none; box-shadow: none; padding: 0; text-align: center;
  }
  .drop-menu a { color: #9fb3c8; font-size: 15px; padding: 8px; }
  .nav-toggle:checked ~ .nav-main { transform: translateX(0); }
  .nav-toggle:checked ~ .burger { position: relative; z-index: 100; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: #fff; }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: #fff; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(55,182,217,.22), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(217,164,65,.14), transparent 55%),
    linear-gradient(160deg, #0a1524 0%, #0e2036 55%, #0a1a2c 100%);
}
.hero-in {
  max-width: 1180px; margin: 0 auto; padding: 96px 24px 80px;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sea); margin-bottom: 20px;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--sea); }
.hero h1 {
  color: #fff; font-size: clamp(34px, 5vw, 56px); font-weight: 700; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--brass); }
.hero p.lead { color: #aebdcb; font-size: 17px; max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost {
  display: inline-block; font-weight: 600; font-size: 14px; color: #fff;
  border: 1.5px solid rgba(255,255,255,.35); padding: 11px 24px; border-radius: 999px;
  transition: border-color .15s, background .15s;
}
.btn-ghost:hover { border-color: var(--sea); background: rgba(55,182,217,.12); }
.hero-art { position: relative; }
.hero-art img {
  width: 100%; max-width: 440px; margin: 0 auto;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.45));
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
.hero-art::after {
  content: ""; position: absolute; inset: auto 10% -8% 10%; height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,.4), transparent 70%);
}
@media (max-width: 920px) {
  .hero-in { grid-template-columns: 1fr; padding: 64px 24px 56px; text-align: center; }
  .hero p.lead { margin: 0 auto 30px; }
  .hero-actions { justify-content: center; }
  .kicker { justify-content: center; }
}

/* Stats strip */
.stats {
  max-width: 1180px; margin: -1px auto 0; padding: 0 24px 0;
  position: relative; z-index: 2;
}
.stats-in {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  transform: translateY(-46px);
}
.stat { padding: 26px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--ink); }
.stat span { font-size: 12.5px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
@media (max-width: 760px) {
  .stats-in { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ---------- Sections ---------- */
.sec { padding: 84px 0; }
.sec-tight { padding: 56px 0; }
.sec-dark {
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(55,182,217,.14), transparent 60%),
    linear-gradient(160deg, #0a1524, #0e2036);
  color: #aebdcb;
}
.sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.sec-head h2 { font-size: clamp(26px, 3.4vw, 38px); margin: 14px 0 14px; }
.sec-head p { color: var(--muted); font-size: 16px; }
.sec-dark .sec-head p { color: #aebdcb; }

/* ---------- Cards & grids ---------- */
.grid { display: grid; gap: 26px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1000px) { .g4, .g5 { grid-template-columns: repeat(2, 1fr); } .g3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4, .g5 { grid-template-columns: 1fr; } }

.pcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pcard-img {
  background: linear-gradient(180deg, #f2f6f9, #e8eef3);
  height: 210px; display: flex; align-items: center; justify-content: center; padding: 26px;
  position: relative;
}
.pcard-img img { max-height: 100%; object-fit: contain; transition: transform .3s ease; }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-chip {
  position: absolute; top: 14px; left: 14px;
  background: rgba(10,21,36,.82); color: #fff; backdrop-filter: blur(4px);
  font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.pcard-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pcard-body h3 { font-size: 16.5px; margin-bottom: 8px; }
.pcard-body p { font-size: 13.5px; color: var(--muted); flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pcard-more {
  margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--sea-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.pcard-more::after { content: "→"; transition: transform .18s; }
.pcard:hover .pcard-more::after { transform: translateX(4px); }

/* Category tiles (home) */
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(160deg, var(--ink-2), var(--ink-3));
  color: #fff; padding: 30px 26px; min-height: 250px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform .22s ease, box-shadow .22s ease;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tile img {
  position: absolute; top: 18px; right: 14px; height: 120px; object-fit: contain;
  opacity: .9; transition: transform .3s ease;
}
.tile:hover img { transform: scale(1.08) rotate(-3deg); }
.tile h3 { color: #fff; font-size: 19px; margin-bottom: 6px; position: relative; }
.tile p { font-size: 13px; color: #9fb3c8; position: relative;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tile .count {
  position: absolute; top: 20px; left: 24px;
  font-family: var(--font-head); font-size: 13px; font-weight: 600; color: var(--brass);
}

/* Feature list */
.feat { display: flex; gap: 18px; align-items: flex-start; }
.feat-ico {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(55,182,217,.15), rgba(55,182,217,.05));
  border: 1px solid rgba(55,182,217,.3);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.feat h4 { font-size: 16px; margin-bottom: 6px; }
.feat p { font-size: 14px; color: var(--muted); }
.sec-dark .feat h4 { color: #fff; }
.sec-dark .feat p { color: #9fb3c8; }

/* Logo marquee — auto-scrolling, bigger, color on hover */
.logo-marquee {
  overflow: hidden; position: relative; padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.logo-track {
  display: flex; align-items: center; gap: 72px; width: max-content;
  animation: scrollLogos 26s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-item {
  flex: none; display: flex; align-items: center; justify-content: center;
  height: 76px; width: 150px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.logo-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-item img {
  max-height: 46px; max-width: 108px; object-fit: contain;
  filter: grayscale(1) contrast(.55) opacity(.7);
  transition: filter .3s ease, transform .3s ease;
}
.logo-item:hover img { filter: none; transform: scale(1.08); }
@keyframes scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }
@media (max-width: 640px) {
  .logo-item { height: 64px; width: 120px; }
  .logo-item img { max-height: 36px; max-width: 88px; }
}

/* FAQ */
.faq { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:last-child { border-bottom: none; }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 24px;
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--sea-deep); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 24px 20px; font-size: 14.5px; color: var(--muted); }

/* Testimonials */
.quote-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); position: relative;
}
.quote-card::before {
  content: "\201C"; position: absolute; top: 10px; right: 20px;
  font-family: Georgia, serif; font-size: 64px; color: var(--brass); opacity: .25; line-height: 1;
}
.quote-card p.q { font-size: 14.5px; color: var(--text); font-style: italic; margin-bottom: 18px; }
.quote-card .who b { display: block; font-family: var(--font-head); font-size: 14.5px; color: var(--ink); }
.quote-card .who span { font-size: 12.5px; color: var(--muted); }
.stars { color: var(--brass); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

/* Blog cards */
.bcard {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s;
  display: flex; flex-direction: column;
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bcard img { height: 190px; width: 100%; object-fit: cover; }
.bcard-body { padding: 22px; }
.bcard-body .date { font-size: 12px; font-weight: 600; color: var(--sea-deep); text-transform: uppercase; letter-spacing: .06em; }
.bcard-body h3 { font-size: 17px; margin: 10px 0; }
.bcard-body p { font-size: 13.5px; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Page hero (inner pages) ---------- */
.phero {
  position: relative; color: #fff; text-align: center; padding: 72px 24px;
  background:
    radial-gradient(800px 300px at 70% 0%, rgba(55,182,217,.18), transparent 60%),
    linear-gradient(160deg, #0a1524, #10233a);
}
.phero h1 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 10px; }
.phero .crumb { font-size: 13px; color: #8fa4b8; }
.phero .crumb a { color: var(--sea); }

/* ---------- Product detail ---------- */
.pd { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .pd { grid-template-columns: 1fr; } }
.pd-img {
  background: linear-gradient(180deg, #f2f6f9, #e6edf3);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; display: flex; align-items: center; justify-content: center;
  position: sticky; top: 96px;
}
.pd-img img { max-height: 340px; object-fit: contain; filter: drop-shadow(0 24px 32px rgba(10,21,36,.18)); }
@media (max-width: 860px) { .pd-img { position: static; } }
.pd-spec {
  display: inline-block; background: #eef7fa; color: var(--sea-deep);
  border: 1px solid rgba(55,182,217,.35);
  font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.pd h1.pd-title { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 14px; }
.pd-block { margin-top: 26px; padding-top: 26px; border-top: 1px solid var(--line); }
.pd-block h2 { font-size: 19px; margin-bottom: 10px; }
.pd-block p { font-size: 15px; color: var(--text); }
.pd-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge {
  font-size: 12px; font-weight: 600; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  box-shadow: var(--shadow-sm);
}
.badge::before { content: "✓ "; color: var(--sea-deep); }

/* ---------- About / Contact ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.timeline { position: relative; margin-top: 20px; }
.timeline::before {
  content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--sea), var(--brass));
}
.tl-item { position: relative; padding: 0 0 26px 40px; }
.tl-item::before {
  content: ""; position: absolute; left: 2px; top: 5px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--sea);
}
.tl-item b { font-family: var(--font-head); color: var(--brass-2); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.tl-item h4 { font-size: 16px; margin: 4px 0 2px; }
.tl-item span { font-size: 13px; color: var(--muted); }

.office-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.office-card.hq { background: linear-gradient(160deg, var(--ink-2), var(--ink-3)); border: none; color: #9fb3c8; }
.office-card.hq h3, .office-card.hq .org { color: #fff; }
.office-card .tag { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brass-2); }
.office-card.hq .tag { color: var(--brass); }
.office-card h3 { font-size: 17px; margin: 8px 0 2px; }
.office-card .org { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.office-card .detail { font-size: 13px; color: var(--muted); }
.office-card.hq .detail { color: #8fa4b8; }

.cform {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px; box-shadow: var(--shadow-md);
}
.cform h3 { margin-bottom: 20px; font-size: 20px; }
.cform input, .cform textarea {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 13px 16px; font-size: 14px; font-family: var(--font-body);
  margin-bottom: 14px; transition: border-color .15s; background: var(--paper);
}
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--sea); background: #fff; }
.cform button {
  border: none; cursor: pointer; width: 100%;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  background: linear-gradient(135deg, var(--brass), var(--brass-2)); color: var(--ink);
  padding: 14px; border-radius: 12px; box-shadow: 0 8px 20px rgba(217,164,65,.35);
  transition: transform .15s;
}
.cform button:hover { transform: translateY(-1px); }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-item .ico {
  flex: none; width: 44px; height: 44px; border-radius: 12px; font-size: 18px;
  background: #eef7fa; border: 1px solid rgba(55,182,217,.3);
  display: flex; align-items: center; justify-content: center;
}
.info-item h4 { font-size: 15px; margin-bottom: 3px; }
.info-item p { font-size: 13.5px; color: var(--muted); }

/* Article */
.article { font-size: 16px; }
.article img.cover { border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 28px; }
.article p { margin-bottom: 18px; color: var(--text); }

/* CTA band */
.band {
  border-radius: 22px; overflow: hidden; position: relative;
  background:
    radial-gradient(700px 300px at 85% 20%, rgba(217,164,65,.25), transparent 60%),
    linear-gradient(150deg, #0e2036, #0a1524);
  color: #fff; padding: 56px 48px;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.band h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); max-width: 560px; }
.band p { color: #9fb3c8; margin-top: 8px; max-width: 520px; }
@media (max-width: 640px) { .band { padding: 36px 28px; } }

/* ---------- Footer ---------- */
.ftr { background: var(--ink); color: #8fa4b8; margin-top: 96px; }
.ftr-in {
  max-width: 1180px; margin: 0 auto; padding: 64px 24px 48px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px;
}
@media (max-width: 860px) { .ftr-in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .ftr-in { grid-template-columns: 1fr; } }
.ftr img.flogo { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.ftr h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.ftr ul { list-style: none; }
.ftr li { margin-bottom: 10px; font-size: 14px; }
.ftr li a:hover { color: var(--brass); }
.ftr p { font-size: 13.5px; line-height: 1.8; }
.ftr-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 22px 24px; text-align: center;
  font-size: 12.5px; color: #5f7183;
}

/* Reveal on scroll */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } .hero-art img { animation: none; } }

/* Hero rotating product showcase */
.hero-slides {
  position: relative; width: 100%; max-width: 440px; margin: 0 auto;
  aspect-ratio: 3 / 4; border-radius: 20px; overflow: hidden;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.05), transparent 70%);
}
.hslide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transform: scale(1.04);
  transition: opacity 1.1s ease, transform 6s ease;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.45));
}
.hslide.active { opacity: 1; transform: scale(1); z-index: 2; }
.hero-dots {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 3;
}
.hero-dots span {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.35);
  transition: background .3s, width .3s;
}
.hero-dots span.active { background: var(--brass); width: 20px; border-radius: 5px; }
.hero-cap {
  position: absolute; left: 16px; bottom: 34px; z-index: 3;
  background: rgba(10,21,36,.72); backdrop-filter: blur(6px);
  color: #fff; font-size: 12.5px; font-weight: 600; padding: 8px 14px; border-radius: 999px;
  opacity: 0; transition: opacity .5s ease;
}
.hero-cap.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hslide { transition: opacity .3s ease; transform: none !important; } }
