/* =========================================================
   Bliss and Travel Blueprint
   Main stylesheet
   ========================================================= */

:root {
  --navy: #153d4f;
  --navy-dark: #0e2c3a;
  --teal: #2c7b7e;
  --aqua: #dceff0;
  --sand: #f5efe5;
  --cream: #fbfaf7;
  --gold: #b88a44;
  --ink: #1f2a30;
  --muted: #66747b;
  --white: #ffffff;
  --border: rgba(21, 61, 79, 0.14);
  --shadow: 0 18px 55px rgba(26, 46, 55, 0.13);
  --radius: 24px;
  --radius-small: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

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

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin-inline: auto;
}

.playfair {
  font-family: "Playfair Display", Georgia, serif;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d4f3f0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(44, 123, 126, 0.24);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.button-light {
  border-color: var(--white);
  color: var(--navy-dark);
  background: var(--white);
}

.text-link {
  color: var(--teal);
  font-weight: 700;
}

.topbar {
  padding: 8px 18px;
  color: #e8fbf8;
  background: var(--navy-dark);
  text-align: center;
  font-size: 0.82rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.95);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 8px 25px rgba(23, 45, 55, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
}

.brand img {
  width: 132px;
  max-height: 58px;
  object-fit: contain;
}

.brand-fallback {
  display: none;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: var(--navy-dark);
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-size: 1.35rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 8px 18px 22px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.mobile-nav.open {
  display: grid;
  gap: 5px;
}

.mobile-nav a:not(.button) {
  padding: 11px 4px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image:
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=88");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 34, 45, 0.88) 0%, rgba(10, 34, 45, 0.63) 48%, rgba(10, 34, 45, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 34, 45, 0.4), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 100px 150px;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero h1 span {
  color: #b9e5df;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

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

.planner-section {
  position: relative;
  z-index: 4;
  margin-top: -92px;
}

.planner-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.planner-intro {
  margin-bottom: 22px;
}

.planner-intro h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.planner-intro p:last-child {
  margin: 0;
  color: var(--muted);
}

.planner-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.85fr auto;
  gap: 12px;
  align-items: end;
}

.planner-form label {
  display: grid;
  gap: 7px;
  color: var(--navy-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.planner-form input,
.planner-form select,
.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.planner-form input:focus,
.planner-form select:focus,
.newsletter-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(44, 123, 126, 0.13);
}

.planner-submit {
  min-height: 50px;
  white-space: nowrap;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--sand);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-heading.centered {
  display: block;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
}

.section-heading p:last-child {
  color: var(--muted);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.destination-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(20, 43, 52, 0.12);
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.destination-card:hover img {
  transform: scale(1.06);
}

.destination-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 30, 39, 0.86), rgba(8, 30, 39, 0.05) 68%);
}

.destination-copy {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: var(--white);
}

.destination-copy span {
  display: inline-block;
  margin-bottom: 6px;
  color: #c7f1ec;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.destination-copy h3 {
  margin: 0;
  font-size: 2rem;
}

.destination-copy p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(21, 61, 79, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(24, 48, 58, 0.06);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--aqua);
  font-size: 1.55rem;
}

.service-kicker {
  margin: 0 0 6px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.25rem;
}

.service-card > p:not(.service-kicker) {
  margin: 10px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.partner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.partner-buttons a {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
}

.partner-buttons a:hover {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.affiliate-disclosure {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  color: #4c4b45;
  background: #fffaf0;
  font-size: 0.9rem;
}

.feature-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 54px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(14, 44, 58, 0.96), rgba(44, 123, 126, 0.82)),
    url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover;
  box-shadow: var(--shadow);
}

.feature-banner h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.feature-banner p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(28, 49, 58, 0.07);
}

.blog-card > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-body {
  padding: 24px;
}

.blog-body span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-body h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.22;
}

.blog-body p {
  color: var(--muted);
}

.blog-body a {
  color: var(--teal);
  font-weight: 700;
}

.content-ideas {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.content-ideas h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.65rem;
}

.idea-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.idea-list span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--aqua);
  font-size: 0.84rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
  gap: 72px;
  align-items: center;
}

.portrait-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 48% 48% 24px 24px;
  background: var(--aqua);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.portrait-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  color: var(--navy);
  text-align: center;
  font-weight: 700;
}

.portrait-frame.portrait-missing .portrait-placeholder {
  display: grid;
}

.about-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.about-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.02rem;
}

.newsletter {
  padding: 88px 0;
  color: var(--white);
  background: var(--navy);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.newsletter h2 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.04;
}

.newsletter p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-email {
  display: inline-block;
  margin-top: 14px;
  color: #c8f1ed;
  font-weight: 700;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 54px;
}

.success-box {
  display: none;
  padding: 18px;
  border-radius: 14px;
  color: var(--navy-dark);
  background: #dff4ee;
}

.success-box strong,
.success-box span {
  display: block;
}

.success-box span {
  margin-top: 4px;
  font-size: 0.86rem;
}

.legal-section {
  padding: 52px 0;
  background: #eef3f2;
}

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

.legal-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1rem;
}

.legal-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.footer {
  padding: 65px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b2632;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand img {
  width: 120px;
  max-height: 60px;
  margin-bottom: 12px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand h3 {
  margin: 0;
  color: var(--white);
}

.footer-brand p {
  max-width: 420px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h4 {
  margin: 0 0 6px;
  color: var(--white);
}

.footer-column a:hover {
  color: #b9e5df;
}

.copyright {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(5, 20, 27, 0.7);
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  display: grid;
}

.modal-card {
  position: relative;
  width: min(100%, 580px);
  max-height: 85vh;
  overflow-y: auto;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sand);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-summary {
  color: var(--muted);
}

.modal-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.modal-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--navy);
  background: var(--cream);
  font-weight: 700;
}

.modal-link:hover {
  border-color: var(--teal);
  color: var(--white);
  background: var(--teal);
}

.modal-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 1050px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .planner-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .planner-submit {
    grid-column: 1 / -1;
  }

  .destination-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .topbar {
    font-size: 0.74rem;
  }

  .header-inner {
    min-height: 70px;
  }

  .hero,
  .hero-content {
    min-height: 630px;
  }

  .hero-content {
    padding-block: 80px 145px;
  }

  .hero-overlay {
    background: rgba(8, 31, 41, 0.68);
  }

  .planner-card {
    padding: 22px;
  }

  .planner-form,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .destination-grid,
  .service-grid,
  .blog-grid,
  .legal-grid,
  .footer-grid,
  .newsletter-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .destination-card {
    min-height: 390px;
  }

  .about-grid {
    gap: 36px;
  }

  .portrait-frame,
  .portrait-frame img {
    min-height: 430px;
  }

  .feature-banner {
    padding: 34px 26px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .destination-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .modal-card {
    padding: 28px 20px 22px;
  }
}


/* =========================================================
   LUXURY BLACK & GOLD THEME OVERRIDES
   ========================================================= */
:root {
  --navy: #090909;
  --navy-dark: #050505;
  --teal: #d5a33f;
  --aqua: #231d14;
  --sand: #151515;
  --cream: #0b0b0b;
  --gold: #d5a33f;
  --ink: #f4eee4;
  --muted: #b8b0a5;
  --white: #ffffff;
  --border: rgba(213, 163, 63, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}
body { font-family: "Montserrat", Arial, sans-serif; background:#080808; color:#f4eee4; }
.playfair { font-family: "Cormorant Garamond", Georgia, serif; }
.topbar { background:#050505; color:#d5a33f; border-bottom:1px solid rgba(213,163,63,.25); letter-spacing:.12em; }
.site-header { background:rgba(5,5,5,.96); border-bottom:1px solid rgba(213,163,63,.18); }
.desktop-nav a, .mobile-nav a:not(.button) { color:#f4eee4; }
.mobile-nav { background:#080808; }
.brand img { width:225px; max-height:86px; }
.button { border-color:#d5a33f; color:#070707; background:linear-gradient(135deg,#f0c66d,#c88f28); border-radius:3px; text-transform:uppercase; letter-spacing:.08em; }
.button-ghost { color:#f0c66d; background:transparent; border-color:#d5a33f; }
.hero { min-height:735px; background:#050505; }
.hero-background { background-image:url("https://images.unsplash.com/photo-1570077188670-e3a8d69ac5ff?auto=format&fit=crop&w=1900&q=90"); background-position:center right; }
.hero-overlay { background:linear-gradient(90deg,rgba(3,3,3,.99) 0%,rgba(3,3,3,.84) 40%,rgba(3,3,3,.2) 76%,rgba(3,3,3,.08) 100%),linear-gradient(0deg,rgba(3,3,3,.5),transparent 55%); }
.hero h1 { color:#f7f0e6; font-family:"Cormorant Garamond",Georgia,serif; font-weight:600; }
.hero h1 span { color:#d5a33f; }
.hero-copy { color:#d8d0c5; }
.planner-card { background:rgba(8,8,8,.97); border:1px solid rgba(213,163,63,.35); }
.planner-intro h2, .planner-form label { color:#f4eee4; }
.planner-intro p:last-child,.form-note { color:#aaa197; }
.planner-form input,.planner-form select { color:#f4eee4; background:#111; border-color:rgba(213,163,63,.25); }
.planner-form input::-webkit-calendar-picker-indicator { filter:invert(1); }
.section { background:#0b0b0b; }
.section-soft { background:#151515; }
.section-heading h2,.service-card h3,.about-copy h2,.blog-body h3 { color:#f4eee4; font-family:"Cormorant Garamond",Georgia,serif; }
.section-heading p:last-child,.service-card > p:not(.service-kicker),.blog-body p,.about-copy p { color:#b8b0a5; }
.destination-card,.blog-card,.service-card { border:1px solid rgba(213,163,63,.22); background:#101010; box-shadow:0 16px 45px rgba(0,0,0,.26); }
.service-icon { background:#241d13; }
.partner-buttons a { color:#d5a33f; background:#17130d; border-color:rgba(213,163,63,.25); }
.partner-buttons a:hover { color:#080808; background:#d5a33f; }
.affiliate-disclosure { color:#d8cab5; background:#1c1710; border-left-color:#d5a33f; }
.feature-banner { background:linear-gradient(100deg,rgba(5,5,5,.98),rgba(49,33,12,.86)),url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80") center/cover; border:1px solid rgba(213,163,63,.28); }
.content-ideas { background:#111; border-color:rgba(213,163,63,.22); }
.content-ideas h3 { color:#f4eee4; }
.idea-list span { color:#d5a33f; background:#231c12; }
.portrait-frame { background:#151515; border:1px solid rgba(213,163,63,.28); }
.newsletter { background:#e9dfcf; color:#2a241d; }
.newsletter h2 { color:#2a241d; }
.newsletter p:not(.eyebrow) { color:#665c51; }
.newsletter-form input { color:#2a241d; background:#fffaf2; border-color:rgba(42,36,29,.2); }
.contact-email { color:#8a5b0d; }
.legal-section { background:#111; }
.legal-grid h3 { color:#d5a33f; }
.footer { background:#050505; border-top:1px solid rgba(213,163,63,.2); }
.footer-brand img { filter:none; width:210px; max-height:110px; }
.modal-card { background:#eee5d7; color:#2a241d; border:1px solid rgba(213,163,63,.4); }
.modal-card h2 { color:#2a241d; }
.modal-link { color:#6d4b13; background:#f7efe3; border-color:rgba(161,111,24,.28); }
.modal-link:hover { color:#080808; background:#d5a33f; }
@media (max-width:760px){ .hero-overlay{background:rgba(3,3,3,.72)} .brand img{width:190px} }
