/* ============================================================
   LUKAS by Victory Arrow — Shared styles
   Design tokens, reset, header/nav, footer
   Used by: index.html, manual.html
   ============================================================ */

/* ---- Design tokens ---- */
:root {
  --green: #027347;
  --green-dark: #276b3f;
  --gold: #c5a24a;
  --gold-soft: #dfbf66;
  /* Sampled from the K-SERIES wordmark; the brand gold for text and rules. */
  --gold-brand: #c4ac64;
  /* Neutral grey for the secondary label text beside the key stats. */
  --stat-grey: #58595b;
  --white: #ffffff;
  --text: #183527;
  --muted: #66766e;
  --line: rgba(47, 127, 74, 0.12);
  --bg-soft: #f6faf7;
  --header-height: 96px;
}

/* ---- Base reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Prompt", "Kanit", "Noto Sans Thai", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 10%, rgba(2,115,71,.12), transparent 24%),
    radial-gradient(circle at 10% 80%, rgba(197,162,74,.10), transparent 24%),
    linear-gradient(180deg, #fbfdfc 0%, #f1f7f3 100%);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

.page { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- Site header ---- */
.site-header {
  width: 100%;
  background: var(--green);
  padding: 18px 40px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.header-inner {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 30;
}

.logo-wrap img {
  display: block;
  width: 214px;
  height: auto;
}

/* ---- Navigation ---- */
.main-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 42px);
  white-space: nowrap;
}

.menu > li { position: relative; }

.menu a,
.dropdown-toggle {
  color: rgba(255,255,255,.98);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  position: relative;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.menu .active > a {
  color: var(--gold-soft);
  font-weight: 700;
}

.menu .active > a:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-soft);
}

/* Same active treatment for dropdown parents (Products / Services). The
   chevron already owns ::after on .dropdown-toggle, so the rule rides ::before. */
.menu .active > .dropdown-toggle {
  color: var(--gold-soft);
  font-weight: 700;
}

.menu .active > .dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-soft);
}

/* ---- Desktop hover state ---- */
@media (min-width: 981px) {
  /* Non-active items: gold + underline on hover (matches the active link) */
  .menu > li:not(.active) > a::before,
  .menu > li:not(.active) > .dropdown-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold-soft);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .menu > li:not(.active):hover > a,
  .menu > li:not(.active):hover > .dropdown-toggle {
    color: var(--gold-soft);
  }

  .menu > li:not(.active):hover > a::before,
  .menu > li:not(.active):hover > .dropdown-toggle::before {
    opacity: 1;
  }

  /* Active "home" link turns white (with white underline) on hover */
  .menu .active > a:hover { color: var(--white); }
  .menu .active > a:not(.dropdown-toggle):hover::after { background: var(--white); }

  .menu .active > .dropdown-toggle:hover { color: var(--white); }
  .menu .active > .dropdown-toggle:hover::before { background: var(--white); }
}

.dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  display: inline-block;
  margin-top: -3px;
  transition: transform .2s ease;
}

.has-dropdown.open .dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  margin-top: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(2,115,71,.12);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 40;
}

.has-dropdown.open .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Open dropdowns on hover (desktop only) */
@media (min-width: 981px) {
  .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* Invisible bridge so the cursor can cross the gap to the menu */
  .dropdown-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
  }
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
  border-left: 1px solid rgba(2,115,71,.12);
  border-top: 1px solid rgba(2,115,71,.12);
}

.dropdown-menu a {
  width: 100%;
  color: var(--green-dark);
  padding: 12px 14px;
  border-radius: 12px;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
}

.dropdown-menu a:hover {
  background: #edf7f1;
  color: var(--green);
}

/* ---- Products mega-menu ---- */
.mega-menu {
  display: flex;
  gap: 8px;
  min-width: 480px;
  padding: 16px;
}

.mega-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 14px 12px;
  border-radius: 16px;
  transition: background .2s ease;
}

.mega-card:hover {
  background: #f4faf6;
}

.mega-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mega-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 12px;
}

.mega-actions a {
  width: auto;
  justify-content: center;
  padding: 0;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  color: #8a8a8a;
  background: none;
  transition: color .2s ease;
}

.mega-actions a:hover {
  color: var(--green);
  background: none;
}

/* Full-width products mega-menu (desktop) */
@media (min-width: 981px) {
  .mega-menu {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    min-width: 0;
    top: var(--header-height);
    border-radius: 0;
    box-shadow: 0 24px 44px rgba(0,0,0,.16);
    padding: 44px clamp(40px, 8vw, 160px);
    gap: clamp(40px, 8vw, 140px);
    justify-content: center;
    transform: translateY(8px);
  }

  .has-dropdown:hover .mega-menu,
  .has-dropdown.open .mega-menu,
  .has-dropdown:focus-within .mega-menu {
    transform: translateY(0);
  }

  /* Hide the centered arrow; widen the hover bridge to reach the nav button */
  .mega-menu::before { display: none; }
  .mega-menu::after { top: -44px; height: 44px; }

  .mega-menu .mega-card {
    flex: 0 1 360px;
    max-width: 420px;
  }

  .mega-menu .mega-img {
    aspect-ratio: 16 / 10;
  }
}

/* ---- Language switch ---- */
.lang-switch {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--gold);
  border-radius: 999px;
  overflow: hidden;
  height: 38px;
  padding: 2px;
  position: relative;
  isolation: isolate;
  z-index: 30;
}

/* Gold fill with a lightning-bolt edge; sits behind the labels */
.lang-switch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  z-index: -1;
  transition: clip-path .25s ease;
  /* default = TH active (gold fills the right half) */
  clip-path: polygon(100% 0, 61% 0, 47% 48%, 57% 48%, 43% 100%, 100% 100%);
}

.lang-switch:has(button[data-lang="en"].active)::before {
  /* mirror: gold fills the left half */
  clip-path: polygon(0 0, 39% 0, 53% 48%, 43% 48%, 57% 100%, 0 100%);
}

.lang-switch button {
  min-width: 39px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-family: inherit;
  position: relative;
  z-index: 1;
  transition: color .2s ease;
}

.lang-switch button.active {
  color: var(--green);
}

/* ---- Mobile menu toggle ---- */
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
  position: relative;
}

.mobile-menu-toggle span::before { position: absolute; top: -7px; }
.mobile-menu-toggle span::after { position: absolute; top: 7px; }

.mobile-menu-toggle.active span { background: transparent; }
.mobile-menu-toggle.active span::before { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span::after { transform: translateY(-7px) rotate(-45deg); }

/* ---- Backdrop (mobile menu overlay) ---- */
.backdrop {
  display: none;
  position: fixed;
  inset: var(--header-height) 0 0 0;
  background: rgba(0,0,0,.38);
  z-index: 15;
}

.backdrop.active { display: block; }

/* ---- Footer ---- */
footer {
  background: var(--green);
  color: var(--white);
  margin-top: auto;
  padding: 0;
}

.footer-main {
  width: 100%;
  padding: 34px 28px 14px;
}

.footer-inner {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 28px;
  align-items: start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 188px;
  height: auto;
  display: block;
  /* The PNG carries uneven transparent padding (13px left, 19px right), so a
     centred box leaves the mark ~3px left of the column axis. Nudge it back so
     the logo, the phone number and the icon row share one optical centre. */
  transform: translateX(3px);
}

.footer-phone {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .02em;
}

.footer-phone a {
  color: inherit;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: -2px;
  /* The Facebook glyph is far narrower than its 24px slot, which pushes the
     row's optical centre ~2px right of the boxes' centre. */
  transform: translateX(-2px);
}

.footer-social a {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  justify-content: center;
  column-gap: clamp(28px, 4vw, 66px);
  row-gap: 10px;
  padding-top: 8px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: max-content;
}

.footer-nav-title,
.footer-nav-col a {
  color: rgba(255,255,255,.98);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}

.footer-nav-col.active .footer-nav-title,
.footer-nav-col.active .footer-dropdown-toggle {
  color: var(--gold-soft);
  font-weight: 700;
  padding-bottom: 10px;
}

/* .footer-dropdown-toggle::after is the chevron, so its rule rides ::before. */
.footer-nav-col.active .footer-nav-title::after,
.footer-nav-col.active .footer-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold-soft);
}

/* ---- Footer nav hover (pointer devices) ---- */
@media (hover: hover) {
  /* Non-active items: gold + underline on hover (matches the active link) */
  .footer-nav-col:not(.active) > .footer-nav-title::before,
  .footer-nav-col:not(.active) .footer-dropdown-toggle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
    background: var(--gold-soft);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .footer-nav-col:not(.active) > .footer-nav-title:hover,
  .footer-nav-col:not(.active) .footer-dropdown-toggle:hover,
  .footer-nav-col:not(.active) .footer-dropdown:hover .footer-dropdown-toggle {
    color: var(--gold-soft);
  }

  .footer-nav-col:not(.active) > .footer-nav-title:hover::before,
  .footer-nav-col:not(.active) .footer-dropdown-toggle:hover::before,
  .footer-nav-col:not(.active) .footer-dropdown:hover .footer-dropdown-toggle::before {
    opacity: 1;
  }

  /* Active "home" link turns white (with white underline) on hover */
  .footer-nav-col.active .footer-nav-title:hover { color: var(--white); }
  .footer-nav-col.active .footer-nav-title:hover::after { background: var(--white); }

  .footer-nav-col.active .footer-dropdown-toggle:hover { color: var(--white); }
  .footer-nav-col.active .footer-dropdown-toggle:hover::before { background: var(--white); }
}

.footer-product-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 2px;
  margin-top: 4px;
}

.footer-product-links a {
  font-size: 16px;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(197,162,74,.65);
  text-align: center;
  color: var(--gold);
  font-size: 14px;
  line-height: 1;
  letter-spacing: .03em;
  padding: 14px 20px 13px;
}

/* ---- Footer dropdowns ---- */
.footer-dropdown {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-dropdown-toggle {
  color: rgba(255,255,255,.98);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  display: inline-block;
  margin-top: -3px;
  transition: transform .2s ease;
}

.footer-dropdown.open .footer-dropdown-toggle::after {
  transform: rotate(225deg) translateY(-1px);
  margin-top: 4px;
}

.footer-dropdown-menu {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 170px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(2,115,71,.12);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 30;
}

.footer-dropdown.open .footer-dropdown-menu,
.footer-dropdown:focus-within .footer-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.footer-dropdown-menu::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%) rotate(45deg);
  background: #fff;
  border-right: 1px solid rgba(2,115,71,.12);
  border-bottom: 1px solid rgba(2,115,71,.12);
}

.footer-dropdown-menu a {
  width: 100%;
  color: var(--green-dark);
  padding: 12px 14px;
  border-radius: 12px;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  font-weight: 600;
}

.footer-dropdown-menu a:hover {
  background: #edf7f1;
  color: var(--green);
}

/* ============================================================
   Responsive — Tablet / Desktop breakpoints
   ============================================================ */

@media (max-width: 1100px) {
  .header-inner { gap: 16px; }
  .menu { gap: 20px; }
  .menu a,
  .dropdown-toggle { font-size: 14px; }

  .footer-inner {
    grid-template-columns: 260px 1fr;
    gap: 24px;
  }

  .footer-nav {
    column-gap: 28px;
  }
}

@media (max-width: 980px) {
  :root { --header-height: 78px; }

  .site-header { padding: 14px 20px; }
  .header-inner { gap: 12px; }

  .logo-wrap img { width: 178px; }

  .mobile-menu-toggle { display: inline-flex; order: 4; }

  .lang-switch {
    margin-left: auto;
    height: 36px;
  }

  .lang-switch button {
    min-width: 36px;
    height: 28px;
    font-size: 13px;
  }

  /* Slide-out mobile nav */
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    width: min(360px, 88vw);
    height: calc(100vh - var(--header-height));
    background: var(--green);
    box-shadow: -18px 0 42px rgba(0,0,0,.16);
    transform: translateX(105%);
    transition: transform .24s ease;
    display: block;
    padding: 18px 20px 28px;
    overflow-y: auto;
    z-index: 25;
  }

  .main-nav.open { transform: translateX(0); }

  .menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    white-space: normal;
  }

  .menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .menu a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 16px 4px;
    font-size: 16px;
    line-height: 1.2;
  }

  .menu .active > a:not(.dropdown-toggle)::after,
  .menu .active > .dropdown-toggle::before {
    left: 4px;
    right: auto;
    bottom: 8px;
    width: 42px;
    height: 3px;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    padding: 0;
    margin: 0 0 12px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    transition: none;
  }

  .dropdown-menu::before { display: none; }

  .has-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .dropdown-menu a {
    color: rgba(255,255,255,.95);
    padding: 13px 14px;
    border-radius: 10px;
  }

  .dropdown-menu a:hover {
    background: rgba(255,255,255,.12);
    color: var(--gold-soft);
  }

  /* Products mega-menu: compact horizontal cards in the sidebar */
  .has-dropdown.open .mega-menu { display: block; }

  .mega-menu { padding: 6px; }

  .mega-card {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    text-align: left;
    padding: 10px;
  }

  .mega-img {
    flex: 0 0 84px;
    width: 84px;
    aspect-ratio: 1;
  }

  .mega-actions {
    justify-content: flex-start;
    margin-top: 8px;
  }

  .mega-actions a {
    color: rgba(255,255,255,.7);
  }

  .mega-actions a:hover {
    color: var(--gold-soft);
  }

  .footer-main { padding: 26px 20px 14px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(130px, max-content));
    justify-content: start;
    column-gap: 24px;
    row-gap: 22px;
  }
}

@media (max-width: 520px) {
  :root { --header-height: 72px; }

  .site-header { padding: 12px 14px; }
  .logo-wrap img { width: 152px; }
  .header-inner { gap: 8px; }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  footer { padding: 24px 20px; }
}

@media (max-width: 640px) {
  footer { text-align: center; }

  .footer-main { padding: 42px 22px 14px; }

  .footer-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer-left {
    width: 100%;
    align-items: center;
    gap: 18px;
  }

  .footer-brand img {
    width: 190px;
    margin: 0 auto;
  }

  .footer-phone {
    width: 100%;
    font-size: 18px;
    text-align: center;
    margin-top: 4px;
  }

  .footer-social {
    width: 100%;
    justify-content: center;
    gap: 30px;
    margin: 0;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 22px;
  }

  .footer-nav {
    width: 100%;
    max-width: 330px;
    margin: 2px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 20px;
    justify-content: center;
    align-items: start;
    padding: 0;
  }

  .footer-nav-col {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-nav-title,
  .footer-nav-col a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .footer-nav-col.active .footer-nav-title,
  .footer-nav-col.active .footer-dropdown-toggle { padding-bottom: 8px; }

  .footer-nav-col.active .footer-nav-title::after,
  .footer-nav-col.active .footer-dropdown-toggle::before {
    width: 58px;
    height: 3px;
  }

  .footer-dropdown { width: 100%; }

  .footer-dropdown-toggle {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .footer-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 14px;
    padding: 0;
    margin: 12px 0 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
    transition: none;
  }

  .footer-dropdown.open .footer-dropdown-menu {
    display: block;
    transform: none;
  }

  .footer-dropdown-menu::after { display: none; }

  .footer-dropdown-menu a {
    color: rgba(255,255,255,.95);
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.1;
  }

  .footer-dropdown-menu a:hover {
    background: rgba(255,255,255,.12);
    color: var(--gold-soft);
  }

  .footer-bottom {
    margin: 0 22px;
    padding: 12px 10px 16px;
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: .02em;
  }
}

@media (max-width: 380px) {
  .footer-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .footer-brand img { width: 176px; }

  .footer-nav {
    max-width: 300px;
    column-gap: 22px;
    row-gap: 18px;
  }

  .footer-nav-title,
  .footer-nav-col a,
  .footer-dropdown-toggle {
    font-size: 15px;
  }
}

/* ============================================================
   Form spam trap
   ============================================================
   A field only a bot fills in. It has to stay reachable to the DOM (so
   it is submitted) while being invisible and unfocusable to a person —
   display:none would let some bots skip it. api/send.php drops any
   submission that arrives with it filled. */
.lukas-hp {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
