/* ══════════════════════════════════════════════════
   KW HOME — Theme CSS v1.0
   Dark Gold Luxury Theme
══════════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --gold:       #c4963a;
  --gold-light: #e2c278;
  --copper:     #b5622e;
  --dark:       #0d0c0b;
  --dark-2:     #161410;
  --dark-3:     #1e1b16;
  --cream:      #f5f0e6;
  --cream-dim:  #c9c0ae;
  --white:      #faf8f4;
}

/* ─── WP RESETS ─── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
body.wp-admin { animation: none; }

/* ─── BASE ─── */
html { font-size: 17px; scroll-behavior: smooth; }
@media (max-width: 900px) { html { font-size: 16px; } }
@media (max-width: 600px) { html { font-size: 15px; } }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Sarabun', sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.7;
  overflow-x: clip !important;
}

/* ─── GRAIN TEXTURE ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
body { background-image: radial-gradient(ellipse at 50% 0%, rgba(196,150,58,0.04) 0%, transparent 70%); }

/* ─── PAGE LOAD FADE ─── */
/* opacity-only: adding transform on body breaks position:fixed (body becomes containing block) */
@keyframes kw-page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body { animation: kw-page-in 0.4s ease forwards; }

/* ─── TYPOGRAPHY ─── */
.serif { font-family: 'Cormorant Garamond', serif; }
.mono  { font-family: 'Montserrat', sans-serif; letter-spacing: 0.15em; font-size: 0.72em; font-weight: 500; }
h1, h2, h3, h4 { font-family: 'Noto Serif Thai', 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.25; }
em { font-family: 'Cormorant Garamond', serif; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.gold-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(196,150,58,0.15) 100%);
  margin: 1.4rem 0;
  display: block;
  position: relative;
}
.gold-line::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  margin-top: -2.5px;
  box-shadow: 0 0 4px rgba(196,150,58,0.6);
  position: absolute;
  left: 0; top: 0;
}

/* ─── BUTTONS ─── */
.btn-primary, .btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--copper));
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: opacity 0.25s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::before, .btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::before, .btn-gold:hover::before { left: 140%; }
.btn-primary:hover, .btn-gold:hover { opacity: 0.88; color: var(--dark); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(196,150,58,0.45);
  padding: 0.75rem 2rem;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-outline:hover {
  background: rgba(196,150,58,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── FADE-IN OBSERVER ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* WP global styles add margin-block-start: 1.25rem to the second child of
   .wp-site-blocks (the header template-part is first, main is second).
   Also adds it to ALL children of is-layout-flow — so the hero <section>
   (second child of main after the invisible <style> tag) gets 1.25rem gap.
   Zero both out so heroes are flush edge-to-edge. */
.wp-site-blocks > main.wp-block-group { margin-block-start: 0 !important; margin-top: 0 !important; }
main.wp-block-group > section:first-of-type,
main.wp-block-group > div:first-of-type { margin-block-start: 0 !important; margin-top: 0 !important; }

/* ─── Z-INDEX LAYER SYSTEM ───────────────────────────
   300 = nav (always on top)
   200 = sticky filter/tab bars
     0 = page hero sections (isolated, can't bleed above)
   ──────────────────────────────────────────────────── */

/* Sticky filter/tab bars: sit below nav, above all content.
   position:sticky must be !important to override any WP wrapper styles.
   --kwh-nav-h is measured by JS from getBoundingClientRect().bottom of nav. */
.filter-panel,
.filter-mobile-bar,
.port-filter,
.cat-tabs-wrap,
.cat-tabs,
.news-filter {
  position: sticky !important;
  z-index: 200 !important;
  top: var(--kwh-nav-h, 70px) !important;
}

/* WP's is-layout-flow adds margin-block-start:1.25rem to every non-:first-child.
   The <style> tag inside wp:html is the :first-child, so the actual hero div
   becomes the second child and gets 21px of unwanted top gap. Reset all heroes. */
#hero,
.port-hero,
.news-hero,
.page-header,
.kw-home-hero {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}

/* News-hero: pushes hero below nav in document space (not full-bleed).
   --kwh-hero-offset = nav_bottom_viewport - admin_bar_height
   Override the 0 above — this rule comes LATER so same-specificity wins. */
.news-hero {
  margin-top: var(--kwh-hero-offset, 65px) !important;
}

/* Port-hero and page-header: full-bleed (transparent nav overlaps top).
   Their internal padding/height handles content clearance. */
.port-hero,
.page-header { margin-top: 0 !important; }

/* Isolate hero stacking contexts so their z-indexed children
   don't compete with the sticky panels above */
#hero,
.port-hero,
.news-hero,
.page-header { isolation: isolate; }

/* ─── NAV ─── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 1.4rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
nav#main-nav.scrolled {
  background: rgba(13,12,11,0.96);
  backdrop-filter: blur(12px);
  padding: 0.9rem 4rem;
  border-bottom: 1px solid rgba(196,150,58,0.15);
}
.nav-logo img { height: 52px; transition: height 0.4s; }
nav#main-nav.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; gap: 3.5rem; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--cream-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--copper));
  padding: 0.7rem 1.8rem;
  text-decoration: none;
  transition: opacity 0.25s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.85; color: var(--dark); }

/* ─── HAMBURGER ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── DROPDOWN ─── */
.nav-item { position: relative; }
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 1.8rem;
}
.dropdown {
  position: absolute;
  top: calc(100% + 1.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(10,9,8,0.97);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(196,150,58,0.2);
  border-top: 1px solid rgba(196,150,58,0.5);
  min-width: 220px;
  padding: 1rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(201,192,174,0.65);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s, padding-left 0.25s;
  position: relative;
}
.dropdown a::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(196,150,58,0.06);
  transition: width 0.25s;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover { color: var(--gold); padding-left: 2.2rem; }
.dropdown a:hover::before { width: 100%; }
.dropdown-divider { height: 1px; background: rgba(196,150,58,0.1); margin: 0.5rem 1.5rem; }

/* ─── MOBILE DRAWER ─── */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,9,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 105;
  padding: 6rem 2.5rem 3rem;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.ready { display: flex; }
.nav-drawer.open { transform: translateX(0); }

.drawer-links { list-style: none; flex: 1; margin: 0; padding: 0; }
.drawer-links li { border-bottom: 1px solid rgba(196,150,58,0.1); overflow: hidden; }
.drawer-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.drawer-links li a::after { content: '→'; color: rgba(196,150,58,0.3); font-size: 0.8rem; transition: color 0.2s, transform 0.2s; }
.drawer-links li a:hover, .drawer-links li a.active { color: var(--gold); }
.drawer-links li a:hover::after { color: var(--gold); transform: translateX(4px); }

.drawer-cta-wrap { padding-top: 2rem; }
.drawer-cta {
  display: block;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  background: linear-gradient(135deg, var(--gold), var(--copper));
  padding: 1rem 2rem;
  text-decoration: none;
  transition: opacity 0.25s;
}
.drawer-cta:hover { opacity: 0.88; }

.nav-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 104;
  backdrop-filter: blur(2px);
}
.nav-drawer-overlay.open { display: block; }

/* ─── FOOTER ─── */
.site-footer {
  background: #050402;
  border-top: 1px solid rgba(196,150,58,0.12);
  display: block !important;
  padding: 0 !important;
}
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 5rem;
}
.footer-brand-logo { margin-bottom: 1.8rem; display: block; }
.footer-brand-logo img { height: 38px; width: auto; max-width: 150px; opacity: 0.85; }
.footer-brand-desc {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.88rem;
  color: rgba(201,192,174,0.75);
  line-height: 1.9;
  margin-bottom: 2rem;
  max-width: 280px;
}
.footer-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(196,150,58,0.2);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.footer-cert-badge span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(196,150,58,0.5);
}
.footer-social { display: flex; gap: 0.6rem; }
.footer-soc-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(196,150,58,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(201,192,174,0.4);
  text-decoration: none;
  transition: all 0.25s;
  flex-shrink: 0;
}
.footer-soc-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,150,58,0.05); }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(196,150,58,0.12);
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 0.9rem; }
.footer-col ul li a {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.88rem;
  color: rgba(201,192,174,0.8);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col ul li a::before {
  content: '';
  display: inline-block;
  width: 12px; height: 1px;
  background: rgba(196,150,58,0.3);
  transition: width 0.2s, background 0.2s;
  flex-shrink: 0;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a:hover::before { width: 18px; background: var(--gold); }

.footer-contact-item { margin-bottom: 1.2rem; }
.footer-contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,150,58,0.85);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-contact-val {
  font-family: 'Sarabun', sans-serif;
  font-size: 0.9rem;
  color: rgba(201,192,174,0.85);
  line-height: 1.6;
}
.footer-contact-val a { color: rgba(201,192,174,0.85); text-decoration: none; transition: color 0.2s; }
.footer-contact-val a:hover { color: var(--gold); }

.footer-gold-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(196,150,58,0.3) 0%, rgba(196,150,58,0.05) 100%);
  max-width: 1300px;
  margin: 0 auto;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(201,192,174,0.55);
  text-transform: uppercase;
}
.footer-bottom-right { display: flex; align-items: center; gap: 2rem; }
.footer-policy-links { display: flex; gap: 1.5rem; }
.footer-policy-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,192,174,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy-links a:hover { color: var(--gold); }

/* ─── SOCIAL SIDEBAR ─── */
.social-sidebar {
  position: fixed;
  right: 16px; top: 50%;
  transform: translateY(-50%);
  z-index: 98;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-sidebar-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: rgba(13,12,11,0.88);
  border: 1px solid rgba(196,150,58,0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(0,0,0,0.55), inset 0 1px 0 rgba(196,150,58,0.08);
  position: relative;
  transition: border-color 0.25s, background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.social-sidebar-btn:hover {
  border-color: rgba(196,150,58,0.75);
  background: rgba(196,150,58,0.12);
  transform: scale(1.1) translateX(-2px);
  box-shadow: 0 0 20px rgba(196,150,58,0.3), 0 4px 16px rgba(0,0,0,0.5);
}
.social-sidebar-btn svg { opacity: 0.75; transition: opacity 0.25s; }
.social-sidebar-btn:hover svg { opacity: 1; }
.social-sidebar-btn::before {
  content: attr(data-label);
  position: absolute;
  right: 52px; top: 50%;
  transform: translateY(-50%);
  background: rgba(13,12,11,0.92);
  border: 1px solid rgba(196,150,58,0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  white-space: nowrap;
  padding: 0.28rem 0.65rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(8px);
}
.social-sidebar-btn:hover::before { opacity: 1; }

/* ─── MOBILE SPEED DIAL ─── */
.mob-speed-dial {
  display: none;
  position: fixed;
  bottom: 1.5rem; right: 1.2rem;
  z-index: 300;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}
.mob-dial-trigger {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(196,150,58,0.5), 0 2px 8px rgba(0,0,0,0.4);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
  position: relative; z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.mob-dial-trigger.open { transform: rotate(45deg); box-shadow: 0 6px 28px rgba(196,150,58,0.6), 0 2px 12px rgba(0,0,0,0.5); }
.mob-dial-icon-open { display: none; }
.mob-dial-trigger.open .mob-dial-icon-main { display: none; }
.mob-dial-trigger.open .mob-dial-icon-open { display: block; }
.mob-dial-options {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.6rem;
  position: absolute; bottom: 62px; right: 0;
  pointer-events: none;
}
.mob-dial-item {
  display: flex; align-items: center; gap: 0.6rem;
  opacity: 0;
  transform: translateY(12px) scale(0.85);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  text-decoration: none;
}
.mob-speed-dial.open .mob-dial-options { pointer-events: all; }
.mob-speed-dial.open .mob-dial-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.mob-speed-dial.open .mob-dial-item:nth-child(1) { transition-delay: 0.00s; }
.mob-speed-dial.open .mob-dial-item:nth-child(2) { transition-delay: 0.06s; }
.mob-dial-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10,9,8,0.92);
  border: 1px solid rgba(196,150,58,0.3);
  padding: 0.3rem 0.8rem;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.mob-dial-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(196,150,58,0.35);
  background: rgba(13,12,11,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 3px 14px rgba(0,0,0,0.45);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.mob-dial-backdrop { display: none; position: fixed; inset: 0; z-index: 299; }
.mob-dial-backdrop.open { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem 4rem; padding: 4rem 3rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 900px) {
  nav#main-nav { padding: 1rem 2rem !important; }
  .nav-links   { display: none !important; }
  .nav-cta     { display: none !important; }
  .nav-hamburger { display: flex !important; }
  .dropdown    { display: none !important; }
  .social-sidebar { display: none; }
  .footer-top  { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; padding: 3.5rem 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 1.2rem 2rem; }
  .footer-gold-line { margin: 0; max-width: 100%; }
}
@media (max-width: 600px) {
  nav#main-nav { padding: 1rem 1.5rem !important; }
  .nav-logo img { height: 36px !important; }
  .mob-speed-dial { display: flex; }
  .footer-top { grid-template-columns: 1fr !important; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; padding: 1rem 1.5rem; }
  .footer-bottom-right { flex-direction: column; gap: 0.5rem; }
  .footer-policy-links { justify-content: center; }
}
