/* ============================================================
   PENNUENG 2014 — MINIMAL BLACK & GOLD
   Mobile-first. Breakpoints: 540, 720, 820, 900, 1000, 1080
   ============================================================ */

:root {
  --gold: #A9831F;
  --gold-deep: #7C610F;
  --gold-bright: #C9A63C;
  --gold-soft: rgba(169, 131, 31, .09);
  --black: #0E0E0C;
  --black-soft: #161614;
  --black-2: #1E1E1B;
  --ink: #1A1A17;
  --gray-700: #3E3E39;
  --gray-600: #5F5E58;
  --gray-500: #8B8A83;
  --gray-400: #B3B1AA;
  --gray-100: #F1F0EC;
  --gray-50: #FFFFFF;
  --white: #FFFFFF;
  --line: #E9E7E1;
  --radius: 14px;
  --font: "Prompt", "Noto Sans Thai", "Kanit", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-card: 0 1px 2px rgba(16, 16, 14, .04), 0 10px 28px -20px rgba(16, 16, 14, .14);
  --shadow-lift: 0 2px 6px rgba(16, 16, 14, .05), 0 24px 48px -26px rgba(16, 16, 14, .22);

  --gap-x: clamp(18px, 4vw, 32px);
  --gap-y: clamp(40px, 6vw, 64px);
  --pad-section: clamp(64px, 7vw, 108px);
  --f-display: clamp(2.1rem, 4.8vw, 3.6rem);
  --f-section: clamp(1.6rem, 3vw, 2.3rem);
  --f-lede: clamp(1rem, 1.1vw, 1.08rem);
  --f-body: clamp(0.9375rem, 0.5vw + 0.85rem, 1rem);
}

/* ---------- Themes (CMS-selectable; injected attr on <html>) ---------- */
html[data-theme="corporate-blue"] {
  --gold: #1D4ED8;
  --gold-deep: #1E40AF;
  --gold-bright: #60A5FA;
  --gold-soft: rgba(29, 78, 216, .08);
  --black: #0B1526;
  --black-soft: #101E33;
  --black-2: #16263F;
}
html[data-theme="emerald"] {
  --gold: #047857;
  --gold-deep: #065F46;
  --gold-bright: #34D399;
  --gold-soft: rgba(4, 120, 87, .08);
  --black: #0A1410;
  --black-soft: #0F1D17;
  --black-2: #15281F;
}
html[data-theme="crimson"] {
  --gold: #C0392B;
  --gold-deep: #96281B;
  --gold-bright: #E74C3C;
  --gold-soft: rgba(192, 57, 43, .08);
  --black: #160D0C;
  --black-soft: #201312;
  --black-2: #2B1917;
}
html[data-theme="mono"] {
  --gold: #111111;
  --gold-deep: #000000;
  --gold-bright: #FFFFFF;
  --gold-soft: rgba(17, 17, 17, .06);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 74px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  font-size: var(--f-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #fff; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
svg { display: block; }

/* ---------- Container ---------- */
.container {
  width: min(1240px, 100% - var(--gap-x) * 2);
  margin-inline: auto;
}
.container-narrow {
  width: min(920px, 100% - var(--gap-x) * 2);
  margin-inline: auto;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--gold-bright); }

h1, h2, h3, h4 { line-height: 1.14; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.h-display { font-size: var(--f-display); line-height: 1.1; font-weight: 700; }
.h-section { font-size: var(--f-section); }
.h-section .hl, .h-display .hl { color: var(--gold); }
.lede { color: var(--gray-600); font-size: var(--f-lede); max-width: 56ch; }
.lede.on-dark { color: var(--gray-400); }
.section-padding { padding: var(--pad-section) 0; }
.bg-gray { background: var(--gray-50); }
.bg-dark { background: var(--black); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 14px; font-weight: 600; letter-spacing: .06em;
  padding: 15px 30px; border-radius: 10px;
  transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s;
  white-space: nowrap; line-height: 1;
}
.btn-gold { background: var(--black); color: #fff; box-shadow: none; }
.btn-gold:hover { background: var(--gold); transform: translateY(-1px); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--black-2); transform: translateY(-1px); }
.btn-outline-light { border: 1.5px solid rgba(255, 255, 255, .4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-1px); }
.btn-outline-dark { border: 1.5px solid var(--line); color: var(--ink); }
.btn-outline-dark:hover { border-color: var(--ink); transform: translateY(-1px); }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); transition: gap .3s, color .3s;
}
.link-arrow:hover { gap: 14px; color: var(--gold-deep); }

/* ---------- Top bar ---------- */
.topbar { background: var(--black); color: var(--gray-400); font-size: 13px; position: relative; z-index: 60; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; min-height: 40px; }
.topbar a { color: var(--gray-400); transition: color .25s; }
.topbar a:hover { color: var(--gold-bright); }
.topbar .tg { display: flex; gap: 22px; align-items: center; }
.topbar .tg svg { vertical-align: -2px; margin-right: 6px; }
.topbar .social-link { display: inline-flex; align-items: center; width: 20px; height: 20px; transition: transform .25s; }
.topbar .social-link svg { width: 18px; height: 18px; margin: 0; opacity: .92; }
.topbar .social-link:hover { transform: translateY(-1px) scale(1.08); }
.topbar .social-link:hover svg { opacity: 1; }
.topbar .tg a strong { color: var(--gold-bright); font-weight: 600; }
.topbar .hide-m { display: none; }
@media (min-width: 720px) { .topbar .hide-m { display: initial; } }

.lang-toggle {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--gray-400); background: transparent;
  border: 1px solid var(--gray-600); border-radius: 999px;
  padding: 3px 11px; margin-left: 2px; transition: color .25s, border-color .25s;
}
.lang-toggle:hover { color: var(--gold-bright); border-color: var(--gold-bright); }
.lang-toggle .lt-on, .lang-toggle .lt-off { color: var(--gray-400); }
.lang-toggle .lt-div { opacity: .5; }
.lang-toggle .lt-on.active, .lang-toggle .lt-off.active { color: var(--gold-bright); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0);
  transition: background .3s, box-shadow .3s;
}
.header.scrolled {
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.header .container { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand .logo { height: 38px; width: auto; }
.brand .logo.on-light { filter: brightness(0); }
.brand .word { display: flex; flex-direction: column; line-height: 1.15; }
.brand .word b { font-size: 15.5px; font-weight: 700; letter-spacing: .01em; color: var(--ink); }
.brand .word span { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }

/* Nav — mobile-first: full-screen overlay */
.nav {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(255, 255, 255, .98);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.nav.open { opacity: 1; pointer-events: auto; }
.nav > a { font-size: 24px; font-weight: 600; padding: 12px; color: var(--gray-600); }
.nav > a.active { color: var(--ink); }
.nav > a:hover { color: var(--gold-deep); }
.nav .h-cta { margin-top: 20px; flex-direction: column; width: 100%; align-items: center; gap: 12px; }
.burger {
  display: flex; z-index: 100; width: 44px; height: 44px;
  flex-direction: column; justify-content: center; gap: 6px; align-items: center;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
.burger span { width: 19px; height: 1.8px; background: var(--ink); transition: .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.8px) rotate(-45deg); }

@media (min-width: 1000px) {
  .nav {
    position: static; inset: auto; background: none;
    flex-direction: row; justify-content: flex-start;
    opacity: 1; pointer-events: auto; gap: 34px;
  }
  .nav > a { font-size: 14.5px; font-weight: 500; padding: 6px 0; position: relative; }
  .nav > a::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
    background: var(--gold); transition: width .3s var(--ease);
  }
  .nav > a:hover::after, .nav > a.active::after { width: 100%; }
  .nav > a:hover { color: var(--ink); }
  .nav .h-cta { margin-top: 0; flex-direction: row; width: auto; }
  .nav .btn { padding: 12px 20px; font-size: 12.5px; }
  .burger { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 114px);
  min-height: calc(100svh - 114px);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--black);
}
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .34) 45%, rgba(0, 0, 0, .72) 80%, var(--black) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 48px; max-width: 860px; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--gold-bright); }
.hero .lede { margin-top: 24px; color: rgba(255, 255, 255, .82); }
.hero .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero .chip {
  font-size: 12.5px; color: rgba(255, 255, 255, .9); border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px; padding: 7px 15px; background: rgba(0, 0, 0, .24);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--gray-50); padding: 28px 0; overflow: hidden; }
.trust .tt { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 44px; }
.trust-row span { font-size: 14px; font-weight: 500; color: var(--gray-500); letter-spacing: .03em; transition: color .25s; }
.trust-row span:hover { color: var(--gold-deep); }

/* ---------- Section head ---------- */
.sec-head { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: var(--gap-y); }
.sec-head .lede { margin-top: 14px; }
.sec-head.center { align-items: center; text-align: center; }
.sec-head.center .lede { margin-inline: auto; }
.sec-head .link-arrow { display: none; }
@media (min-width: 820px) {
  .sec-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .sec-head.center { flex-direction: column; align-items: center; }
  .sec-head .link-arrow { display: inline-flex; }
}

/* ---------- Services ---------- */
#services { border-top: 1px solid var(--line); }
#services .sec-head { padding-bottom: var(--gap-y); margin-bottom: 0; border-bottom: 1px solid var(--line); }
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
@media (min-width: 540px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 820px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .svc-grid { grid-template-columns: repeat(4, 1fr); } }

.svc {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px 22px; display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.svc:hover { border-color: var(--gold); box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.svc:hover::before { transform: scaleX(1); }
.svc .top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.svc .ico {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px; color: var(--gold-deep); background: var(--white);
  transition: background .3s, color .3s, border-color .3s;
}
.svc:hover .ico { background: var(--gold); border-color: var(--gold); color: #fff; }
.svc .ico svg { width: 21px; height: 21px; }
.svc .no {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--gray-500);
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; line-height: 1;
  transition: color .3s, border-color .3s;
}
.svc:hover .no { color: var(--gold-deep); border-color: var(--gold); }
.svc .body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc .en { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-500); }
.svc h3 { font-size: 17px; font-weight: 700; line-height: 1.35; }
.svc p { font-size: 13.5px; color: var(--gray-600); line-height: 1.7; }

/* ---------- Portfolio ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tabs button {
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; color: var(--gray-600);
  transition: .3s;
}
.tabs button:hover { color: var(--ink); border-color: var(--gray-400); }
.tabs button.active { background: var(--black); border-color: var(--black); color: #fff; }

.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.work-card { grid-column: span 12; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--black); cursor: pointer; }
.work-card .img { aspect-ratio: 4/3; overflow: hidden; }
.work-card.featured .img { aspect-ratio: auto; height: 100%; min-height: 340px; }
.work-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.work-card:hover .img img { transform: scale(1.05); }
.work-card .meta {
  position: absolute; inset: auto 0 0 0; padding: 34px 22px 20px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .86)); z-index: 2;
}
.work-card .meta .tag { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); }
.work-card .meta h3 { font-size: 16.5px; font-weight: 700; color: #fff; margin-top: 6px; line-height: 1.35; }
.work-card .meta .who { font-size: 12.5px; color: rgba(255, 255, 255, .7); margin-top: 4px; }
.work-card.featured .meta h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.work-card.hide { display: none; }

@media (min-width: 640px) { .work-card { grid-column: span 6; } }
@media (min-width: 1080px) {
  .work-card { grid-column: span 4; }
  .work-card.featured { grid-column: span 8; grid-row: span 2; }
  .work-card.featured .img { min-height: 520px; }
}

/* ---------- Steps ---------- */
.steps-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: clamp(40px, 5vw, 60px); max-width: 600px; }
.steps-head .eyebrow { margin-bottom: 0; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 540px) { .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.step { padding: 0; position: relative; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(201, 166, 60, .35);
  background: var(--black); color: var(--gold-bright); display: grid; place-items: center;
  font-size: 16px; font-weight: 700; margin-bottom: 20px;
}
.step .tt { font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--gray-400); line-height: 1.75; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin-inline: auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 10px; transition: border-color .3s; }
.faq-item.open { border-color: var(--gray-400); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 24px; font-size: 15.5px; font-weight: 600; color: var(--ink); text-align: left;
  cursor: pointer;
}
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--gold-deep); font-size: 16px; font-weight: 400; transition: .3s; line-height: 1; }
.faq-item.open .faq-q .ic { background: var(--gold); border-color: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 24px 22px; font-size: 14.5px; color: var(--gray-600); line-height: 1.8; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.channels { display: flex; flex-direction: column; margin-top: 8px; }
.chan { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.chan:first-child { border-top: 1px solid var(--line); }
.chan .ic { flex-shrink: 0; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; background: var(--white); transition: transform .25s, box-shadow .25s; }
.chan .ic svg { width: 19px; height: 19px; }
.chan:hover .ic { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(20, 20, 20, .10); }
.chan .ic.ic-hq { color: #2563eb; border-color: #bfdbfe; background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.chan .ic.ic-phone { color: #0d9488; border-color: #99f6e4; background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }
.chan .ic.ic-email { color: #ea580c; border-color: #fed7aa; background: linear-gradient(135deg, #fff7ed, #ffedd5); }
.chan .ic.ic-line { color: #06c755; border-color: #86efac; background: linear-gradient(135deg, #f0fdf4, #dcfce7); }
.chan .l { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-500); font-weight: 600; margin-bottom: 4px; }
.chan .v { font-size: 15px; font-weight: 500; word-break: break-word; }
.chan .v a { transition: color .25s; }
.chan .v a:hover { color: var(--gold-deep); }
.chan .line-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--black); color: var(--gold-bright); font-size: 12.5px; font-weight: 600; padding: 10px 18px; border-radius: 999px; margin-top: 10px; transition: .3s; }
.chan .line-tag:hover { background: var(--gold); color: #fff; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-card); }
.form h3 { font-size: 22px; margin-bottom: 6px; }
.form .sub { color: var(--gray-600); font-size: 14px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.fld { display: flex; flex-direction: column; gap: 7px; }
.fld.full { grid-column: 1/-1; }
.fld label { font-size: 13px; color: var(--gray-700); }
.fld label b { color: var(--gold-deep); }
.fld input, .fld select, .fld textarea {
  background: var(--gray-50); border: 1px solid var(--line); border-radius: 9px;
  color: var(--ink); font-family: inherit; font-size: 14.5px;
  padding: 13px 15px; outline: none; transition: border-color .25s, box-shadow .25s; width: 100%;
  -webkit-appearance: none; appearance: none;
}
.fld select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A17' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; background-color: var(--gray-50);
}
.fld select option { background: #fff; }
.fld textarea { resize: vertical; min-height: 120px; }
.fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px var(--gray-100); background: #fff; }
.form .btn { width: 100%; margin-top: 24px; }
.form-note { font-size: 12.5px; color: var(--gray-500); text-align: center; margin-top: 14px; }

/* ---------- Footer ---------- */
footer { background: var(--black); color: var(--gray-400); padding-top: clamp(56px, 6vw, 84px); }
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 52px; }
@media (min-width: 540px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; } }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand .brand .logo { filter: none; }
.foot-brand .brand .word b { color: #fff; }
.foot-brand .brand .word span { color: var(--gold-bright); }
.foot-brand p { font-size: 13.5px; line-height: 1.8; max-width: 36ch; }
.foot-brand .tag { font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-bright); margin-top: 18px; font-weight: 600; }
.foot h4 { font-size: 11.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.foot li { margin-bottom: 12px; }
.foot a { font-size: 13.5px; color: var(--gray-400); transition: color .25s; }
.foot a:hover { color: var(--gold-bright); }
.foot .soc { display: flex; gap: 8px; margin-top: 20px; }
.foot .soc a { width: 32px; height: 32px; border: 1px solid rgba(255, 255, 255, .16); border-radius: 8px; display: grid; place-items: center; color: var(--gray-400); transition: .3s; }
.foot .soc a:hover { border-color: var(--gold); color: var(--gold-bright); }
.foot .soc svg { width: 13px; height: 13px; }
.foot-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--gray-500); }
.foot-bottom .dh { letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--gray-400); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 150%); z-index: 200;
  background: var(--black); color: var(--gold-bright); font-weight: 600; font-size: 14px;
  padding: 15px 26px; border-radius: 10px; border: 1px solid rgba(201, 166, 60, .4);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .3); transition: transform .5s var(--ease); max-width: 92vw; text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
