/* ==========================================================================
   MaxWellStone — Design tokens
   ========================================================================== */
:root {
  --navy: #17263a;
  --midnight: #0d1928;
  --navy-soft: #22344c;
  --gold: #e7ad24;
  --gold-dark: #c88f13;
  --gold-light: #f6df9b;
  --warm-white: #f3f0e8;
  --white: #ffffff;
  --ink: #111820;
  --grey-700: #4a5568;
  --grey-500: #7c8797;
  --grey-200: #e3e1da;
  --border-light: rgba(19, 33, 50, 0.14);
  --border-dark: rgba(255, 255, 255, 0.15);

  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-soft: 0 8px 24px rgba(5, 14, 25, 0.08);
  --shadow-lg: 0 22px 60px rgba(5, 14, 25, 0.18);
}

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

html {
  scrollbar-color: var(--gold) var(--warm-white);
  scrollbar-width: thin;
}

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

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: var(--warm-white);
}
::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 999px;
  border: 2px solid var(--warm-white);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold-dark);
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

.gold { color: var(--gold); }

.plain-amp { font-family: var(--font-sans); font-weight: 600; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--grey-700);
  font-size: 1.05rem;
}

section { padding: 88px 0; }

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--midnight); }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--gold);
  transition: gap 150ms ease;
}
.link-arrow:hover { gap: 12px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--midnight);
  border-bottom: 1px solid var(--border-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  height: 88px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav .nav-link {
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  color: var(--white);
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
}
.main-nav .nav-link:hover { color: var(--gold); }

.nav-item-dropdown { position: relative; }

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

.dropdown-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 150ms ease;
  margin-top: -4px;
}

.nav-item-dropdown.open .dropdown-caret { transform: rotate(225deg); margin-top: 4px; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  padding: 10px;
  display: none;
  z-index: 10;
}
.nav-item-dropdown.open .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: none;
}
.dropdown-menu a:hover { background: var(--warm-white); color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--midnight);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 250ms ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav a.nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-dark);
  }
  .dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--border-dark); }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    display: none;
    min-width: 0;
    padding: 0 0 0 14px;
  }
  .nav-item-dropdown.open .dropdown-menu { display: block; }
  .header-cta.desktop-only { display: none; }
  .main-nav .mobile-cta { margin-top: 20px; }
  .nav-toggle { display: flex; margin-left: auto; }
}

@media (min-width: 941px) {
  .main-nav .mobile-cta { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: clamp(620px, 76vh, 860px);
  background: var(--midnight);
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.06);
}
.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 25, 40, 0.96) 0%,
    rgba(13, 25, 40, 0.9) 35%,
    rgba(13, 25, 40, 0.5) 66%,
    rgba(13, 25, 40, 0.22) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(90px, 12vw, 140px);
  padding-bottom: clamp(70px, 9vw, 110px);
}

.hero .hero-content { max-width: 840px; }

.hero h1 {
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  margin-bottom: 22px;
}

@media (min-width: 989px) {
  .hero h1 { white-space: nowrap; }
}

.hero .lede {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero p.body {
  color: #cfd6e2;
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .hero { min-height: 0; padding: 0; }
  .hero .container { padding-top: 100px; padding-bottom: 64px; }
}

/* Sub-page hero (shorter, no split media — image as backdrop) */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(8,28,54,0.92), rgba(8,28,54,0.88));
  color: var(--white);
  padding: 90px 0 70px;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8,28,54,0.94) 0%, rgba(8,28,54,0.82) 55%, rgba(8,28,54,0.7) 100%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 760px; }
.page-hero .section-eyebrow { color: var(--gold-light); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
.page-hero p.intro { font-size: 1.1rem; color: #d7dde8; max-width: 640px; }

.scroll-hint {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: scrollHintBounce 1.8s ease-in-out infinite;
}
.scroll-hint svg { width: 18px; height: 18px; }

@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (max-width: 600px) {
  .scroll-hint { right: 16px; bottom: 14px; width: 36px; height: 36px; }
  .scroll-hint svg { width: 15px; height: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; }
}

/* ==========================================================================
   Feature strip ("How We Help You...") — icon + label x4
   ========================================================================== */
.feature-strip {
  background: var(--navy);
  padding: 0 0 64px;
  margin-top: -1px;
}
.feature-strip .strip-inner {
  background: var(--midnight);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-strip-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
}
.feature-strip-item .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-strip-item span.label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #dfe4ec;
}

@media (max-width: 860px) {
  .feature-strip .strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .feature-strip .strip-inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Cards — Our Maximisers
   ========================================================================== */
.maximisers { background: var(--navy); color: var(--white); }
.maximisers .section-head p { color: #cfd6e2; }
.maximisers .section-head h2 { color: var(--white); }

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.maximiser-card {
  background: var(--midnight);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.maximiser-card .card-media { aspect-ratio: 16/10; overflow: hidden; }
.maximiser-card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.maximiser-card .card-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.maximiser-card .icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.maximiser-card h3 { font-size: 1.25rem; color: var(--white); }
.maximiser-card p { color: #cfd6e2; font-size: 0.95rem; flex: 1; }

@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   How Can We Help — 6-card grid
   ========================================================================== */
.help-section { background: var(--warm-white); }

.card-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.help-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.help-card .icon-line {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  border: 1.25px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-card h3 { font-size: 1.1rem; }
.help-card p { color: var(--grey-700); font-size: 0.92rem; flex: 1; }

@media (max-width: 900px) {
  .card-grid-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid-6 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Two-column media band (Future of Financial Services, generic)
   ========================================================================== */
.split-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-band.reverse .container { direction: rtl; }
.split-band.reverse .container > * { direction: ltr; }
.split-band h2 { margin-bottom: 20px; }
.split-band p { color: var(--grey-700); margin-bottom: 20px; font-size: 1.02rem; }
.split-band .media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.split-band .media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .split-band .container { grid-template-columns: 1fr; gap: 32px; }
  .split-band.reverse .container { direction: ltr; }
  .split-band .media { order: -1; }
}

/* ==========================================================================
   Checklist
   ========================================================================== */
.checklist { display: grid; gap: 14px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.checklist li::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l4 4 10-10"/></svg>') center / 12px no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M5 12l4 4 10-10"/></svg>') center / 12px no-repeat;
}
.checklist-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
}
@media (max-width: 640px) {
  .checklist-columns { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Strategic Group section
   ========================================================================== */
.strategic-group .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.strategic-group h2 { margin-bottom: 18px; }
.strategic-group p.lede-text { color: var(--grey-700); margin-bottom: 32px; }
.strategic-group-panel {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 32px;
}
.strategic-group-panel .brand-mark {
  width: 96px;
  border-radius: 8px;
  margin-bottom: 28px;
}
@media (max-width: 860px) {
  .strategic-group .container { grid-template-columns: 1fr; gap: 36px; }
}

/* ==========================================================================
   Why MaxWellStone (dark band with CTA panel)
   ========================================================================== */
.why-section {
  background: var(--navy);
  color: var(--white);
}
.why-section .container {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.why-section .media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.why-section .media img { width: 100%; height: 100%; object-fit: cover; }
.why-section h2 { color: var(--white); margin-bottom: 22px; }
.why-section .checklist li { color: #e8ebf0; }
.why-section p.body-text { color: #cfd6e2; margin-top: 24px; }

.cta-panel {
  background: var(--midnight);
  border: 1px solid rgba(212,165,43,0.35);
  border-radius: var(--radius);
  padding: 32px;
}
.cta-panel h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.cta-panel p { color: #cfd6e2; margin-bottom: 24px; font-size: 0.95rem; }

@media (max-width: 980px) {
  .why-section .container { grid-template-columns: 1fr; }
  .why-section .media { aspect-ratio: 16/9; }
}

/* ==========================================================================
   Generic content sections (sub-pages: Why This Matters / Who This Is For / How We Work)
   ========================================================================== */
.content-section .container { max-width: 820px; }
.content-section .container.contact-layout { max-width: 1140px; }
.content-section + .content-section { padding-top: 0; }
.content-section h2 { font-size: 1.6rem; margin-bottom: 18px; }
.content-section p { color: var(--grey-700); font-size: 1.02rem; margin-bottom: 16px; }
.content-section.alt { background: var(--warm-white); }

.bullet-list { display: grid; gap: 14px; margin-top: 8px; }
.bullet-list li {
  display: flex;
  gap: 12px;
  color: var(--grey-700);
  font-size: 1.02rem;
}
.bullet-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
  margin-top: 10px;
}

/* ==========================================================================
   Detail cards (What We Help With / Why Work With Us / Who This Is For / How It Works)
   ========================================================================== */
.detail-grid { background: var(--warm-white); }
.detail-grid .container { max-width: 980px; }

.detail-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
}
.detail-card .icon-line {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1.25px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.detail-card h2 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.detail-card p {
  color: var(--grey-700);
  font-size: 0.98rem;
  margin-bottom: 0;
}
.detail-card .bullet-list { margin-top: 10px; }
.detail-card .bullet-list li { font-size: 0.96rem; }

@media (max-width: 700px) {
  .detail-cards { grid-template-columns: 1fr; }
}

/* Closing CTA band on sub-pages */
.cta-band {
  background: var(--warm-white);
  text-align: center;
  padding: 72px 0;
}
.cta-band .container { max-width: 640px; }
.cta-band h2 { font-size: 1.7rem; margin-bottom: 24px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: 1.4rem; margin: 28px 0 14px; }
.contact-info ul.plain { display: grid; gap: 10px; color: var(--grey-700); }
.offices-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  font-weight: 600;
}
.offices-row span { color: var(--navy); }
.offices-row .dot { color: var(--gold); }

.contact-form {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  gap: 18px;
}
.form-row { display: grid; gap: 8px; }
.form-row label { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: var(--navy); }
.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.85rem; color: var(--grey-500); }

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .form-row-split { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050f1e;
  color: #b9c1cf;
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: #8b95a6; max-width: 260px; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; color: #b9c1cf; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: #7c869a;
}
.footer-bottom .offices { display: flex; gap: 10px; }
.footer-bottom .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}
.footer-bottom .social a:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}
