/* ============================================================
   Kingdom Legacy Ventures LLC — Main Stylesheet
   CHANGE: Update --gold / --navy variables to adjust brand colors.
   ============================================================ */

/* Google Fonts are loaded via <link> tags (preconnect + stylesheet) in
   each page's <head> for faster, render-blocking-aware font loading. */

/* ─── CSS Custom Properties ─────────────────────────────── */
:root {
  /* Brand Colors — CHANGE these to update the palette */
  --navy-deep:      #07111f;
  --navy:           #0b1d35;
  --navy-mid:       #122847;
  --navy-light:     #1c3f7a;
  --royal-blue:     #2451a8;

  --gold:           #c9a227;
  --gold-bright:    #e8c84a;
  --gold-muted:     #9a7a1a;
  --gold-pale:      #f0dc9a;
  --gold-glow:      rgba(201, 162, 39, 0.25);

  --parchment:      #f5edd8;
  --parchment-mid:  #e8dcc5;
  --parchment-dark: #d4c5a5;
  --cream:          #faf6ee;

  --brown:          #7a5c20;
  --brown-light:    #a07c35;

  --text-on-dark:   #ddd0b8;
  --text-on-light:  #1a1208;
  --text-muted-dark: rgba(221, 208, 184, 0.55);

  --success:        #4caf7d;
  --danger:         #e05a5a;
  --info:           #6a9fd8;

  /* Layout */
  --max-width:      1200px;
  --nav-height:     88px;
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;

  /* Transitions */
  --t:              0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--text-on-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--gold-bright); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Skip Link (keyboard accessibility) ────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--navy-deep);
  color: var(--gold-bright);
  border: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) 0;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold);
}
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold      { color: var(--gold) !important; }
.text-parchment { color: var(--parchment) !important; }
.text-center    { text-align: center; }
.text-muted     { color: var(--text-muted-dark); }
.italic         { font-style: italic; }

/* On light backgrounds */
.on-light h1, .on-light h2, .on-light h3, .on-light h4 { color: var(--navy); }
.on-light p, .on-light li { color: var(--text-on-light); }
.on-light .text-muted { color: rgba(26,18,8,0.55); }
.on-light a { color: var(--navy-light); }
.on-light a:hover { color: var(--gold-muted); }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section       { padding: 5rem 0; }
.section-sm    { padding: 3rem 0; }
.section-lg    { padding: 7rem 0; }
.section-light { background: var(--parchment); }
.section-dark  { background: var(--navy-deep); }
.section-mid   { background: var(--navy-mid); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1.5rem; }
.grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col    { flex-direction: column; }
.flex-wrap   { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.full-width { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ─── Logo Images ────────────────────────────────────────── */
.nav-logo-img {
  height: 78px; width: auto; display: block;
  border-radius: 6px; flex-shrink: 0;
}
.footer-logo-img {
  height: 90px; width: auto; display: block;
  margin-bottom: 0.75rem;
}
.nav-crown-img { height: 48px; width: auto; flex-shrink: 0; }
.footer-crown-img { height: 60px; width: auto; flex-shrink: 0; }

/* ─── Product Image (real photo) ─────────────────────────── */
.product-image-real {
  aspect-ratio: 16/9; border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
}
.product-image-real img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* <picture> is a transparent wrapper for WebP-with-fallback: the inner <img>
   keeps the exact same containing block, flex/grid participation and sizing as
   before, so layout is visually unchanged. */
picture { display: contents; }

/* ─── Founder Note ───────────────────────────────────────── */
.founder-note {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(201,162,39,0.28); border-radius: var(--radius-lg);
  padding: 2.75rem; position: relative; max-width: 820px; margin: 0 auto;
}
.founder-note::before {
  content: '\201C';
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: 8rem; color: var(--gold); opacity: 0.08;
  position: absolute; top: -1rem; left: 1.5rem; line-height: 1;
  pointer-events: none; select: none;
}
.founder-note-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(201,162,39,0.18); padding-bottom: 1.25rem;
}
.founder-note-header .fn-icon {
  width: 52px; height: 52px; background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.founder-note h2 { font-size: clamp(1.25rem, 3vw, 1.65rem); margin: 0; color: var(--gold); }
.founder-note-body p { font-size: 0.97rem; line-height: 1.85; margin-bottom: 1.1rem; color: var(--text-on-dark); }
.founder-note-body p:last-child { margin-bottom: 0; }
.founder-note-verse {
  font-style: italic; color: var(--gold); opacity: 0.85;
  border-left: 3px solid var(--gold); padding-left: 1rem; margin: 1.5rem 0 !important;
  font-size: 0.95rem !important;
}
.founder-note-sig {
  margin-top: 1.5rem !important; padding-top: 1.25rem;
  border-top: 1px solid rgba(201,162,39,0.18);
  font-style: italic; font-size: 0.92rem !important; opacity: 0.8;
}

/* ─── PDF Download Buttons ───────────────────────────────── */
.pdf-downloads {
  display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem;
}
.btn-pdf {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.4rem; border-radius: var(--radius);
  font-family: 'Cinzel', serif; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.07em; cursor: pointer; transition: all var(--t);
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn-pdf-active { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-pdf-active:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--navy-deep); transform: translateY(-2px); }
.btn-pdf-soon { background: transparent; color: rgba(221,208,184,0.45); border-color: rgba(221,208,184,0.2); cursor: not-allowed; }

/* ─── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(7, 17, 31, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
  z-index: 1000;
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 1.1rem;
  color: var(--gold); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo span { line-height: 1.1; }
.nav-logo .sub { display: block; font-size: 0.6rem; letter-spacing: 0.18em; opacity: 0.7; font-weight: 400; }
.nav-links {
  display: flex; align-items: center; gap: 0.25rem; list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif; font-size: 0.78rem; font-weight: 600;
  color: var(--text-on-dark); letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.75rem; border-radius: var(--radius);
  transition: all var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,162,39,0.08); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 0.45rem 1.1rem !important; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-bright) !important; color: var(--navy-deep) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 0.4rem;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); border-radius: 2px; transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: var(--navy-deep); border-bottom: 2px solid var(--gold);
  padding: 1.5rem; z-index: 998;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a {
  font-family: 'Cinzel', serif; font-size: 0.9rem; font-weight: 600;
  color: var(--text-on-dark); letter-spacing: 0.08em; text-transform: uppercase;
  display: block; padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(201,162,39,0.1);
}
.nav-mobile a:hover { color: var(--gold); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.72rem 1.75rem; border-radius: var(--radius);
  font-family: 'Cinzel', serif; font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.07em; cursor: pointer;
  transition: all var(--t); border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-primary:hover {
  background: var(--gold-bright); border-color: var(--gold-bright);
  color: var(--navy-deep); transform: translateY(-2px);
  box-shadow: 0 6px 22px var(--gold-glow);
}
.btn-secondary { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.07); color: var(--parchment); border-color: rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: var(--gold); }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #c04040; }
.btn-lg { padding: 1rem 2.4rem; font-size: 0.96rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.78rem; }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-height); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201,162,39,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(28,63,122,0.35) 0%, transparent 45%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
}
.hero-rays {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100%; max-width: 900px; height: 70%;
  background: repeating-conic-gradient(
    from -10deg at 50% 0%,
    rgba(201,162,39,0.04) 0deg 3deg,
    transparent 3deg 12deg
  );
  z-index: 0;
}
.hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 0;
}
.hero-content {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 1.5rem; text-align: center;
}
.eyebrow {
  font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow::before, .eyebrow::after {
  content: ''; display: block; width: 36px; height: 1px;
  background: var(--gold); opacity: 0.45;
}
.hero h1 { color: var(--parchment); margin-bottom: 1.5rem; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero h1 .accent { color: var(--gold); }
.hero > .hero-content > p {
  font-size: 1.1rem; max-width: 580px; margin: 0 auto 2.5rem; opacity: 0.88;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 3.5rem) 0 3.5rem;
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,162,39,0.07) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p { font-size: 1.05rem; max-width: 580px; margin: 0 auto; opacity: 0.85; }
.breadcrumb {
  font-size: 0.75rem; font-family: 'Cinzel', serif;
  opacity: 0.5; margin-bottom: 1.25rem; letter-spacing: 0.06em;
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--gold); opacity: 1; }

/* ─── Section Headers ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow { justify-content: center; margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 540px; margin: 0 auto; opacity: 0.82; }
.divider { width: 56px; height: 2px; background: var(--gold); margin: 0.8rem auto; }
.section-light .section-header h2 { color: var(--navy); }
.section-light .section-header p  { color: var(--text-on-light); opacity: 1; }

/* ─── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--navy-mid); border: 1px solid rgba(201,162,39,0.14);
  border-radius: var(--radius-lg); padding: 2rem; transition: all var(--t);
}
.card:hover {
  border-color: rgba(201,162,39,0.38);
  transform: translateY(-4px); box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.card-parchment {
  background: var(--parchment); border-color: var(--parchment-dark);
}
.card-parchment h3, .card-parchment h4 { color: var(--navy); }
.card-parchment p { color: var(--text-on-light); }
.card-parchment:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

.card-icon {
  width: 52px; height: 52px; background: rgba(201,162,39,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.5rem;
}

/* Game Cards */
.game-card {
  background: var(--navy-mid); border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--t); display: flex; flex-direction: column;
}
.game-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,0.42); }
.game-card-thumb {
  height: 150px; background: linear-gradient(135deg, var(--navy-light), var(--navy-deep));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  border-bottom: 1px solid rgba(201,162,39,0.12); position: relative; overflow: hidden;
}
.game-card-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,162,39,0.12) 0%, transparent 70%);
}
.game-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.game-card-body h3 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--gold); }
.game-card-body p { font-size: 0.88rem; opacity: 0.82; flex: 1; margin-bottom: 1rem; color: var(--text-on-dark); }
/* Force dark-background colors inside game cards regardless of parent section */
.game-card .game-card-body h3,
.game-card .game-card-body h4 { color: var(--gold) !important; }
.game-card .game-card-body p  { color: var(--text-on-dark) !important; opacity: 0.82; }
.game-card .info-row dt { color: var(--gold) !important; }
.game-card .info-row dd { color: var(--text-on-dark) !important; }
.game-card .badge { color: inherit; }
/* Restore each badge's semantic color so it reads correctly inside game cards */
.game-card .badge-available     { color: #5fd89a; }
.game-card .badge-coming-soon   { color: var(--gold); }
.game-card .badge-in-development{ color: #8ab8f0; }

/* ─── Badges ─────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 0.22rem 0.7rem; border-radius: 100px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; font-family: 'Cinzel', serif; margin-bottom: 0.75rem;
}
.badge-available     { background: rgba(76,175,125,0.15); color: #5fd89a; border: 1px solid rgba(76,175,125,0.3); }
.badge-coming-soon   { background: rgba(201,162,39,0.15); color: var(--gold); border: 1px solid rgba(201,162,39,0.3); }
.badge-in-development{ background: rgba(106,159,216,0.15); color: #8ab8f0; border: 1px solid rgba(106,159,216,0.3); }

/* ─── Product Feature Layout ─────────────────────────────── */
.product-image-placeholder {
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 2px dashed rgba(201,162,39,0.28); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--gold); font-family: 'Cinzel', serif; font-size: 0.82rem;
  text-align: center; padding: 2rem;
}
.product-image-placeholder .pi-icon { font-size: 3.5rem; opacity: 0.55; }
.product-image-placeholder p { color: var(--gold); opacity: 0.65; font-size: 0.78rem; margin: 0; }

/* ─── Scroll / Parchment Decorations ────────────────────── */
.parchment-block {
  background: var(--parchment); border-radius: var(--radius-lg);
  border: 2px solid var(--parchment-dark); padding: 2.5rem;
  color: var(--text-on-light); position: relative;
}
.parchment-block h3, .parchment-block h4 { color: var(--navy); }
.parchment-block p  { color: var(--text-on-light); }
.parchment-block blockquote {
  font-style: italic; font-size: 1.05rem; color: var(--navy);
  border-left: 3px solid var(--gold); padding-left: 1.25rem;
  margin: 1rem 0;
}

.scripture-quote {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(201,162,39,0.22); border-radius: var(--radius-lg);
  padding: 2rem; text-align: center;
}
.scripture-quote blockquote {
  font-size: 1.1rem; font-style: italic; color: var(--parchment);
  line-height: 1.7; margin-bottom: 0.75rem;
}
.scripture-quote cite {
  font-family: 'Cinzel', serif; font-size: 0.8rem; color: var(--gold);
  letter-spacing: 0.1em; font-style: normal;
}

/* ─── Email Signup ────────────────────────────────────────── */
.signup-box {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(201,162,39,0.2); border-radius: var(--radius-xl);
  padding: 3rem; text-align: center;
}
.signup-form {
  display: flex; gap: 0.75rem; max-width: 460px;
  margin: 1.5rem auto 0; flex-wrap: wrap; justify-content: center;
}
.signup-form input {
  flex: 1; min-width: 200px; padding: 0.72rem 1.2rem;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(201,162,39,0.28);
  border-radius: var(--radius); color: var(--parchment);
  font-family: 'Lato', sans-serif; font-size: 0.95rem; outline: none;
  transition: border-color var(--t);
}
.signup-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.1); }
.signup-form input::placeholder { color: rgba(221,208,184,0.38); }
.signup-note { font-size: 0.78rem; opacity: 0.48; margin-top: 0.75rem; }

/* ─── Feature List ────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; }
.feature-list li::before { content: '✦'; color: var(--gold); font-size: 0.65rem; margin-top: 0.38rem; flex-shrink: 0; }

/* ─── Info Grid ───────────────────────────────────────────── */
.info-row {
  display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.25rem;
  align-items: baseline; font-size: 0.92rem;
}
.info-row dt { font-family: 'Cinzel', serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.info-row dd { color: var(--text-on-dark); }

/* ─── Notification Bar ───────────────────────────────────── */
.notif-bar {
  background: var(--gold); color: var(--navy-deep); text-align: center;
  padding: 0.55rem 1.5rem; font-family: 'Cinzel', serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em;
  position: relative; z-index: 1001;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep); border-top: 1px solid rgba(201,162,39,0.14);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; opacity: 0.62; max-width: 260px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-on-dark); opacity: 0.65; transition: all var(--t); }
.footer-col a:hover { opacity: 1; color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.1); padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; opacity: 0.4; margin: 0; }
.footer-cross { color: var(--gold); opacity: 0.35; display: inline-flex; align-items: center; }

/* ─── Contact Form ────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-family: 'Cinzel', serif; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 0.75rem 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.22); border-radius: var(--radius);
  color: var(--parchment); font-family: 'Lato', sans-serif; font-size: 0.95rem;
  outline: none; transition: border-color var(--t);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold); background: rgba(255,255,255,0.08);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select option { background: var(--navy-mid); color: var(--parchment); }

/* ─── Toast Notification ─────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  background: var(--navy-mid); border: 1px solid var(--gold); border-radius: var(--radius);
  padding: 0.9rem 1.75rem; color: var(--parchment); font-family: 'Cinzel', serif;
  font-size: 0.85rem; z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease; box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}
.toast.show { opacity: 1; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2col   { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-logo-img { height: 62px; }
  .nav-logo { font-size: 0.92rem; }
  .nav-crown-img { height: 40px; }
  .nav-logo-text .sub { display: none; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .section   { padding: 3.5rem 0; }
  .section-lg{ padding: 4rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .signup-box { padding: 2rem 1.25rem; }
}
@media (max-width: 520px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg    { width: 100%; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .signup-form { flex-direction: column; }
  .signup-form input { min-width: unset; }
}
