/* DAIS — Digit-All-Ink Solutions · Modern Premium Overhaul Stylesheet
   Theme: Navy + Gold Seal Motif. Trust-forward, ultra-modern corporate aesthetic. */

@import url('fonts/fonts.css');   /* self-hosted — no external Google Fonts request */

:root {
  --navy: #0f2742;
  --navy-2: #193a5e;
  --navy-3: #081626;
  --gold: #dfb75c;
  --gold-dk: #b38e3a;
  --ink: #1e2530;
  --muted: #627285;
  --line: #e6eef5;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-navy-soft: #f0f4f9;
  --radius: 16px;
  --radius-sm: 8px;
  --maxw: 1120px;
  
  /* Layered Ambient Shadows (Modern, Soft) */
  --shadow-sm: 0 1px 3px rgba(15, 39, 66, 0.03), 0 1px 2px rgba(15, 39, 66, 0.01);
  --shadow-md: 0 4px 6px -1px rgba(15, 39, 66, 0.03), 0 10px 15px -3px rgba(15, 39, 66, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(15, 39, 66, 0.05), 0 8px 10px -6px rgba(15, 39, 66, 0.04);
  --shadow-hover: 0 20px 35px -5px rgba(15, 39, 66, 0.08), 0 10px 15px -5px rgba(15, 39, 66, 0.04);
  
  /* Typography */
  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  
  /* Smooth Motion */
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0; 
  font-family: var(--font); 
  color: var(--ink);
  background: var(--bg); 
  line-height: 1.625; 
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; border-radius: var(--radius-sm); }
a { color: var(--navy-2); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dk); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }

/* ============ HEADER & NAV ============ */
.site-header {
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 238, 245, 0.7);
  transition: var(--transition);
}

.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 76px; 
}

.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-family: var(--serif); 
  font-weight: 700; 
  font-size: 21px; 
  color: var(--navy); 
}

/* Redesigned CSS Premium Seal */
.brand .seal {
  width: 34px; 
  height: 34px; 
  border-radius: 50%; 
  flex: none;
  background: radial-gradient(circle at 40% 30%, #ffdf92 0%, var(--gold) 55%, var(--gold-dk) 100%);
  border: 2px solid var(--navy); 
  position: relative;
  box-shadow: 0 2px 4px rgba(15, 39, 66, 0.12), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .seal {
  transform: rotate(15deg) scale(1.05);
}

.brand .seal::before {
  content: ""; 
  position: absolute; 
  inset: 3px; 
  border-radius: 50%;
  border: 1px dashed rgba(15, 39, 66, 0.35);
}

.brand .seal::after {
  content: "✒"; 
  position: absolute; 
  inset: 0; 
  display: grid; 
  place-items: center; 
  font-size: 14px; 
  color: var(--navy); 
  font-weight: bold;
  text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.brand small { 
  display: block; 
  font-family: var(--font); 
  font-weight: 600; 
  font-size: 10px; 
  letter-spacing: .14em; 
  text-transform: uppercase; 
  color: var(--muted); 
  margin-top: 2px;
}

.nav-links { 
  display: flex; 
  gap: 24px; 
  align-items: center; 
  font-size: 14.5px; 
  font-weight: 500; 
}

.nav-links a { 
  color: #334155; 
  padding: 6px 4px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover { 
  color: var(--navy); 
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .btn::after {
  display: none !important;
}

.nav-toggle { 
  display: none; 
  background: none; 
  border: 0; 
  font-size: 28px; 
  color: var(--navy); 
  cursor: pointer; 
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; 
  align-items: center;
  justify-content: center;
  padding: 12px 28px; 
  border-radius: 999px; 
  font-weight: 600; 
  font-size: 14.5px;
  border: 2px solid transparent; 
  cursor: pointer; 
  transition: var(--transition);
  gap: 8px;
}

.btn-primary {
  background-color: var(--gold);   /* solid fallback: text never lands on a transparent (dark) bg */
  background-image: linear-gradient(135deg, #f5d47e 0%, var(--gold) 50%, var(--gold-dk) 100%);
  color: var(--navy-3);
  border: none;
  box-shadow: 0 4px 12px rgba(201, 164, 76, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
  padding: 14px 30px;
}
/* the generic .nav-links a color was overriding button text (slate on gold) — force dark navy */
.nav-links a.btn-primary { color: var(--navy-3); }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(201, 164, 76, 0.35);
  filter: brightness(1.05);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost { 
  background: rgba(255, 255, 255, 0.08); 
  color: #fff; 
  border: 2px solid rgba(255,255,255,.35); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-ghost:hover { 
  border-color: var(--gold); 
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-navy { 
  background: var(--navy); 
  color: #fff; 
  border: none;
  box-shadow: 0 4px 12px rgba(15, 39, 66, 0.15);
  padding: 14px 30px;
}

.btn-navy:hover { 
  background: var(--navy-2); 
  color: var(--gold); 
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 39, 66, 0.25);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative; 
  display: flex; 
  flex-direction: column; 
  min-height: 85vh;
  background: var(--navy-3); 
  color: #eaf0f7; 
  overflow: hidden;
}

.hero-banner { 
  flex: 0 0 auto; 
  position: relative; 
  z-index: 2; 
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 22, 38, 0.9) 0%, rgba(8, 22, 38, 0.7) 100%);
  border-bottom: 1px solid rgba(223, 183, 92, 0.2); 
  padding: 40px 0 44px; 
}

.hero-banner-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 40px; 
  flex-wrap: wrap; 
}

.hero-banner-text { 
  flex: 1 1 560px; 
  max-width: 760px; 
}

.hero-banner-text h1 { 
  margin: 10px 0 16px; 
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px); 
  line-height: 1.15;
  color: #fff;
}

.hero-banner-text .lead { 
  margin: 0; 
  max-width: 720px; 
  font-size: clamp(16px, 1.8vw, 18.5px); 
  color: #cbd5e1;
  font-weight: 400;
  line-height: 1.6;
}

.hero .hero-cta { 
  flex: 0 0 auto; 
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Photo area below the banner (Ken Burns Cinematic Effect) */
.hero-media { 
  position: relative; 
  flex: 1 1 auto; 
  min-height: 48vh; 
  background: #06101c;
}

.hero-media .slide { 
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center; 
  opacity: 0; 
  animation: kenburns 35s infinite; 
  will-change: transform, opacity; 
}

/* Stagger animations for smooth loop */
.hero-media .slide:nth-child(1) { animation-delay: 0s; }
.hero-media .slide:nth-child(2) { animation-delay: 5s; }
.hero-media .slide:nth-child(3) { animation-delay: 10s; }
.hero-media .slide:nth-child(4) { animation-delay: 15s; }
.hero-media .slide:nth-child(5) { animation-delay: 20s; }
.hero-media .slide:nth-child(6) { animation-delay: 25s; }
.hero-media .slide:nth-child(7) { animation-delay: 30s; }

/* Ken Burns + Fade Keyframe */
@keyframes kenburns {
  0% { transform: scale(1); opacity: 0; }
  2% { transform: scale(1.02); opacity: 1; }
  12% { transform: scale(1.08); opacity: 1; }
  15% { transform: scale(1.1); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) { 
  .hero-media .slide { animation: none; } 
  .hero-media .slide:nth-child(1) { opacity: 1; } 
}

.hero .eyebrow { 
  color: var(--gold); 
  font-weight: 700; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  font-size: 13px; 
}

/* ============ TRUST BAR ============ */
.trustbar { 
  background: var(--navy-3); 
  color: #ffffff; 
  border-top: 1px solid rgba(223, 183, 92, 0.3); 
  border-bottom: 1px solid rgba(223, 183, 92, 0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  z-index: 10;
}

.trustbar .container { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 20px 52px; 
  justify-content: center; 
  padding: 24px 32px; 
  font-size: 15px; 
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.trustbar span {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.trustbar span::before {
  content: "✦";
  color: var(--gold);
  font-size: 12px;
  filter: drop-shadow(0 0 2px rgba(223, 183, 92, 0.4));
}

.trustbar b { 
  color: var(--gold); 
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (max-width: 860px) {
  .trustbar .container {
    gap: 16px 30px;
    padding: 20px;
    font-size: 13.5px;
  }
}

/* ============ SECTIONS ============ */
section.block { padding: 88px 0; }
section.block.alt { background: var(--bg-alt); }

.section-head { 
  max-width: 720px; 
  margin: 0 auto 56px; 
  text-align: center; 
}

.section-head .eyebrow { 
  color: var(--gold-dk); 
  font-weight: 700; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  font-size: 12.5px; 
}

.section-head h2 { 
  font-family: var(--serif); 
  font-size: clamp(28px, 4vw, 38px); 
  margin: 12px 0 16px; 
  color: var(--navy); 
  line-height: 1.2;
}

.section-head p { 
  color: var(--muted); 
  font-size: 18px; 
  margin: 0;
  line-height: 1.55;
}

/* ============ CARDS GRID ============ */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg); 
  border: 1px solid rgba(15, 39, 66, 0.05); 
  border-radius: var(--radius);
  padding: 34px 30px; 
  box-shadow: var(--shadow-md); 
  transition: var(--transition); 
  display: flex; 
  flex-direction: column;
}

.card:hover { 
  transform: translateY(-6px); 
  border-color: rgba(201, 164, 76, 0.35); 
  box-shadow: var(--shadow-hover);
}

.card .ico { 
  width: 52px; 
  height: 52px; 
  border-radius: 12px; 
  background: linear-gradient(135deg, var(--bg-navy-soft) 0%, #e1e9f2 100%); 
  display: grid; 
  place-items: center; 
  font-size: 24px; 
  margin-bottom: 22px; 
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8);
}

.card h3 { 
  font-size: 21px; 
  margin: 0 0 10px; 
  color: var(--navy); 
  font-family: var(--serif); 
}

.card p { 
  color: var(--muted); 
  margin: 0 0 20px; 
  font-size: 15px; 
  line-height: 1.6;
  flex: 1; 
}

.card a.more { 
  font-weight: 600; 
  color: var(--navy-2); 
  font-size: 14.5px; 
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card a.more::after { 
  content: "→"; 
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover a.more {
  color: var(--gold-dk);
}

.card:hover a.more::after { 
  transform: translateX(5px); 
}

/* ============ SPLIT LAYOUT ============ */
.split { 
  display: grid; 
  grid-template-columns: 1.15fr 0.85fr; 
  gap: 64px; 
  align-items: center; 
}

.split.reverse > :first-child { order: 2; }

.panel { 
  background: linear-gradient(145deg, var(--navy-3) 0%, var(--navy) 100%); 
  color: #e2e8f0; 
  border-radius: var(--radius); 
  padding: 40px; 
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.05);
}

.panel h3 { 
  color: #fff; 
  font-family: var(--serif); 
  font-size: 24px;
  margin-top: 0; 
  margin-bottom: 22px;
}

.panel .feature-list li::before { 
  color: var(--gold); 
}

/* ============ FEATURE LISTS ============ */
.feature-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  display: grid; 
  gap: 16px; 
}

.feature-list li { 
  padding-left: 32px; 
  position: relative; 
  font-weight: 500;
  font-size: 15.5px;
}

.feature-list li::before { 
  content: "✓"; 
  position: absolute; 
  left: 0; 
  top: -1px; 
  color: var(--gold-dk); 
  font-weight: 700; 
  font-size: 17px;
}

/* ============ CTA BAND ============ */
.cta-band { 
  background: linear-gradient(135deg, var(--navy-3) 0%, #0c1c2e 100%); 
  color: #fff; 
  text-align: center; 
  padding: 80px 0; 
  border-top: 1px solid rgba(223, 183, 92, 0.25);
  position: relative;
}

.cta-band h2 { 
  font-family: var(--serif); 
  font-size: clamp(28px, 4vw, 36px); 
  margin: 0 0 14px; 
  color: #fff;
}

.cta-band p { 
  color: #cbd5e1; 
  max-width: 600px; 
  margin: 0 auto 32px; 
  font-size: 17.5px;
  line-height: 1.55;
}

/* ============ INTERIOR PAGE HERO ============ */
.page-hero { 
  background: var(--navy-3); 
  color: #fff; 
  padding: 72px 0; 
}

.page-hero.has-img { 
  position: relative; 
  background-size: cover; 
  background-position: center; 
}

.page-hero.has-img::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(120deg, rgba(8, 22, 38, 0.96) 0%, rgba(15, 39, 66, 0.85) 60%, rgba(8, 22, 38, 0.7) 100%); 
}

.page-hero.has-img .container { 
  position: relative; 
  z-index: 2; 
}

.page-hero .eyebrow { 
  color: var(--gold); 
  font-weight: 700; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  font-size: 13px; 
}

.page-hero h1 { 
  font-family: var(--serif); 
  font-size: clamp(30px, 4.5vw, 44px); 
  margin: 12px 0 14px; 
  line-height: 1.2;
}

.page-hero p { 
  color: #cbd5e1; 
  max-width: 680px; 
  font-size: 18.5px; 
  margin: 0; 
  line-height: 1.55;
}

/* ============ EDITORIAL PROSE ============ */
.prose { max-width: 780px; margin: 0 auto; }

.prose h2 { 
  font-family: var(--serif); 
  color: var(--navy); 
  font-size: 28px; 
  margin: 44px 0 16px; 
  line-height: 1.25;
}

.prose h3 { 
  color: var(--navy); 
  font-size: 20px; 
  margin: 32px 0 10px; 
  font-family: var(--font);
  font-weight: 600;
}

.prose p, .prose li { 
  color: #3f4e5f; 
  font-size: 16px;
  line-height: 1.65;
}

.prose p { margin-bottom: 22px; }

.prose ol, .prose ul {
  margin: 20px 0;
  padding-left: 24px;
}

.prose ol li, .prose ul li {
  margin-bottom: 12px;
}

/* ============ NOTICES & DISCLAIMERS ============ */
.note { 
  background: var(--bg-alt); 
  border-left: 4px solid var(--gold); 
  border-radius: 12px; 
  padding: 20px 24px; 
  color: var(--muted); 
  font-size: 15px; 
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
  border-top: 1px solid rgba(15,39,66,0.01);
  border-right: 1px solid rgba(15,39,66,0.01);
  border-bottom: 1px solid rgba(15,39,66,0.01);
}

.note strong {
  color: var(--navy);
}

/* ============ CONTACT FORM ============ */
.form { 
  display: grid; 
  gap: 20px; 
  max-width: 580px; 
  background: var(--bg);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.form label { 
  font-weight: 600; 
  font-size: 14.5px; 
  color: var(--navy); 
  display: block; 
  margin-bottom: 8px; 
}

.form input, .form select, .form textarea {
  width: 100%; 
  padding: 13px 16px; 
  border: 1px solid var(--line); 
  border-radius: 10px; 
  font: inherit; 
  font-size: 15px;
  background: #fff;
  transition: var(--transition);
  color: var(--ink);
}

.form input:focus, .form select:focus, .form textarea:focus { 
  outline: none; 
  border-color: var(--gold); 
  box-shadow: 0 0 0 4px rgba(223, 183, 92, 0.15);
}

/* ============ FOOTER ============ */
.site-footer { 
  background: var(--navy-3); 
  color: #94a3b8; 
  padding: 68px 0 32px; 
  font-size: 15px; 
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 1.4fr 1fr 1fr; 
  gap: 40px; 
  margin-bottom: 48px; 
}

.site-footer h4 { 
  color: #fff; 
  font-size: 15px; 
  margin: 0 0 16px; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-footer a { 
  color: #94a3b8; 
  display: block; 
  margin-bottom: 10px; 
}

.site-footer a:hover { 
  color: var(--gold); 
  transform: translateX(2px);
}

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,.07); 
  padding-top: 24px; 
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 16px; 
  font-size: 13px; 
  color: #64748b; 
}

/* Tile details */
.img-tile { 
  border-radius: var(--radius); 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
  min-height: 340px; 
  background-size: cover; 
  background-position: center; 
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}
.img-tile:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Interior Crossfade Flash Section */
.flash { 
  position: relative; 
  height: 520px; 
  overflow: hidden; 
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15,39,66,0.04);
}

.flash .slide { 
  position: absolute; 
  inset: 0; 
  background-size: cover; 
  background-position: center top; 
  opacity: 0; 
  animation: flashfade 35s infinite; 
  will-change: transform, opacity; 
}

.flash .slide:nth-child(1) { animation-delay: 0s; }
.flash .slide:nth-child(2) { animation-delay: 5s; }
.flash .slide:nth-child(3) { animation-delay: 10s; }
.flash .slide:nth-child(4) { animation-delay: 15s; }
.flash .slide:nth-child(5) { animation-delay: 20s; }
.flash .slide:nth-child(6) { animation-delay: 25s; }
.flash .slide:nth-child(7) { animation-delay: 30s; }

.flash .scrim { 
  position: absolute; 
  inset: 0; 
  z-index: 2; 
  background: linear-gradient(90deg, rgba(8,22,38,.85) 0%, rgba(8,22,38,.4) 50%, transparent 80%); 
}

.flash .flash-copy { 
  position: absolute; 
  z-index: 3; 
  left: 0; 
  top: 50%; 
  transform: translateY(-50%); 
  max-width: 560px; 
  padding: 0 clamp(32px, 8vw, 80px); 
  color: #fff; 
}

.flash .flash-copy .eyebrow { 
  color: var(--gold); 
  font-weight: 700; 
  letter-spacing: .15em; 
  text-transform: uppercase; 
  font-size: 13px; 
}

.flash .flash-copy h2 { 
  font-family: var(--serif); 
  font-size: clamp(26px, 4vw, 36px); 
  margin: 10px 0 0; 
  line-height: 1.2; 
}

@keyframes flashfade { 
  0% { opacity: 0; transform: scale(1); } 
  2% { opacity: 1; transform: scale(1.02); } 
  12% { opacity: 1; transform: scale(1.04); } 
  15% { opacity: 0; transform: scale(1.01); } 
  100% { opacity: 0; transform: scale(1); } 
}

@media (prefers-reduced-motion: reduce) { 
  .flash .slide { animation: none; } 
  .flash .slide:nth-child(1) { opacity: 1; } 
}

/* ============ SYSTEM PREFERRED DARK MODE ============ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #090e15;
    --bg-alt: #0d1520;
    --bg-navy-soft: #141f2f;
    --ink: #cbd5e1;
    --muted: #8494a8;
    --line: #1e293b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 20px 35px rgba(0, 0, 0, 0.6);
    --navy: #e2e8f0;
    --navy-2: #dfb75c;
  }
  
  body {
    background: var(--bg);
    color: var(--ink);
  }
  
  .site-header {
    background: rgba(9, 14, 21, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .brand {
    color: #ffffff;
  }
  
  .brand small {
    color: #8494a8;
  }
  
  .brand .seal {
    border-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .brand .seal::after {
    color: #0d1520;
  }
  
  .nav-links a {
    color: #cbd5e1;
  }
  
  .nav-links a:hover {
    color: var(--gold);
  }
  
  .nav-links a:hover::after {
    background: var(--gold);
  }
  
  section.block.alt {
    background: var(--bg-alt);
  }
  
  .section-head h2 {
    color: #ffffff;
  }
  
  .card {
    background: #0d141e;
    border-color: rgba(255, 255, 255, 0.04);
  }
  
  .card:hover {
    border-color: rgba(223, 183, 92, 0.3);
  }
  
  .card h3 {
    color: #ffffff;
  }
  
  .card .ico {
    background: linear-gradient(135deg, #141f2f 0%, #0d141e 100%);
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.04);
  }
  
  .card a.more {
    color: var(--gold);
  }
  
  .card:hover a.more {
    color: #ffffff;
  }
  
  .prose h2, .prose h3 {
    color: #ffffff;
  }
  
  .prose p, .prose li {
    color: #cbd5e1;
  }
  
  .form {
    background: #0d141e;
    border-color: rgba(255, 255, 255, 0.04);
  }
  
  .form label {
    color: #cbd5e1;
  }
  
  .form input, .form select, .form textarea {
    background: #080d14;
    border-color: #1e293b;
    color: #ffffff;
  }
  
  .form input:focus, .form select:focus, .form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(223, 183, 92, 0.2);
  }
  
  .note {
    background: #0c121b;
    border-left-color: var(--gold-dk);
    color: #8494a8;
  }
  
  .note strong {
    color: #ffffff;
  }
}

/* ============ RESPONSIVE LAYOUTS ============ */
@media (max-width: 860px) {
  .container { padding: 0 24px; }
  
  .flash { height: 380px; }
  .flash .scrim { background: linear-gradient(0deg, rgba(8,22,38,.92) 0%, rgba(8,22,38,.4) 60%, transparent 100%); }
  .flash .flash-copy { top: auto; bottom: 0; transform: none; padding-bottom: 34px; padding-left: 24px; padding-right: 24px; }
  
  .grid-3, .grid-2, .split, .footer-grid { grid-template-columns: 1fr; }
  .split { gap: 40px; }
  .split.reverse > :first-child { order: 0; }
  
  /* Mobile Header Navigation Menu */
  .nav-links { 
    display: none; 
    position: absolute; 
    top: 76px; 
    left: 0; 
    right: 0; 
    background: var(--bg); 
    flex-direction: column; 
    padding: 24px; 
    border-bottom: 1px solid var(--line); 
    gap: 20px; 
    box-shadow: var(--shadow-lg);
    z-index: 100;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  @media (prefers-color-scheme: dark) {
    .nav-links {
      background: #0d141e;
      border-bottom-color: rgba(255, 255, 255, 0.05);
    }
  }
  
  .nav-links.open { 
    display: flex; 
  }
  
  .nav-toggle { 
    display: block; 
  }
  
  .site-header {
    background: var(--bg);
  }
  
  @media (prefers-color-scheme: dark) {
    .site-header {
      background: #090e15;
    }
  }
  
  .hero { min-height: 80vh; } 
  .hero-banner-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-banner { padding: 32px 0; }
  .hero .hero-cta { width: 100%; }
  .hero .hero-cta .btn { width: 100%; }
}

/* ============ ACCORDION FAQ ============ */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

details.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

details.faq-item[open] {
  border-color: rgba(201, 164, 76, 0.5);
  box-shadow: var(--shadow-md);
}

details.faq-item summary {
  font-weight: 600;
  font-size: 16.5px;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  outline: none;
  cursor: pointer;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--gold-dk);
  font-weight: 500;
  transition: transform 0.25s ease;
  line-height: 1;
}

details.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

details.faq-item p {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
  details.faq-item {
    background: #0d141e;
    border-color: rgba(255, 255, 255, 0.04);
  }
}

/* ============ TESTIMONIALS ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.testi-card {
  background: var(--bg);
  border: 1px solid rgba(15, 39, 66, 0.05);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.testi-card p.quote {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 18px;
  line-height: 1.5;
  flex: 1;
}

.testi-card .rating {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 12px;
}

.testi-card .author {
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
}

@media (prefers-color-scheme: dark) {
  .testi-card {
    background: #0d141e;
    border-color: rgba(255, 255, 255, 0.04);
  }
  .testi-card p.quote {
    color: #ffffff;
  }
}

@media (max-width: 860px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger card reveals */
.grid .card:nth-child(1) { transition-delay: 0.1s; }
.grid .card:nth-child(2) { transition-delay: 0.2s; }
.grid .card:nth-child(3) { transition-delay: 0.3s; }
.grid .card:nth-child(4) { transition-delay: 0.4s; }
.grid .card:nth-child(5) { transition-delay: 0.5s; }
.grid .card:nth-child(6) { transition-delay: 0.6s; }

.testi-card:nth-child(1) { transition-delay: 0.1s; }
.testi-card:nth-child(2) { transition-delay: 0.25s; }
.testi-card:nth-child(3) { transition-delay: 0.4s; }


