/* =========================================================
   LARRY PENNY — Main Stylesheet
   Mobile-first · Navy/Gold · Playfair + Inter
   ========================================================= */

/* ── DESIGN TOKENS ── */
:root {
  --navy:           #0D1B3E;
  --navy-light:     #1a2f5a;
  --navy-dark:      #070e1f;
  --gold:           #C9962A;
  --gold-light:     #E8B84B;
  --gold-pale:      #fdf3df;
  --white:          #FFFFFF;
  --off-white:      #F8F9FB;
  --gray-100:       #F3F4F6;
  --gray-200:       #E5E7EB;
  --gray-400:       #9CA3AF;
  --gray-500:       #6B7280;
  --gray-700:       #374151;
  --gray-900:       #111827;
  --green:          #059669;
  --red:            #DC2626;

  --bg:             #FFFFFF;
  --surface:        #F5F7FA;
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-tertiary:  #94A3B8;
  --brand-primary:  #0D1B3E;
  --cta:            #C9962A;
  --cta-hover:      #b5851f;
  --cta-light:      #fdf3df;
  --border:         #E2E8F0;
  --border-strong:  #CBD5E1;

  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  --max-w:      1200px;
  --header-h:   72px;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-xs:  0 1px 2px rgba(13,27,62,.04);
  --shadow-sm:  0 1px 3px rgba(13,27,62,.06), 0 1px 2px rgba(13,27,62,.04);
  --shadow-md:  0 4px 12px rgba(13,27,62,.10);
  --shadow-lg:  0 10px 32px rgba(13,27,62,.16);
  --shadow-xl:  0 24px 64px rgba(13,27,62,.20);

  --ease-out:   cubic-bezier(.16,1,.3,1);

  /* Section spacing */
  --section-pad: 4rem 0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: #fff;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; letter-spacing: -.02em; color: var(--navy); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.narrow { max-width: 760px; margin: 0 auto; }

section { padding: var(--section-pad); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .9375rem;
  line-height: 1;
  border-radius: var(--radius);
  padding: 13px 28px;
  transition: all .2s var(--ease-out);
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.97); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-primary:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
}

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

.btn-sm { padding: 9px 18px; font-size: .8125rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.transparent {
  background: transparent;
}
.site-header.scrolled {
  background: rgba(7,14,31,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 16px rgba(0,0,0,.25);
  border-bottom-color: rgba(255,255,255,.08);
}
/* Non-hero pages: always dark header */
.site-header.solid {
  background: rgba(7,14,31,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__name {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.nav-logo__sub {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.4;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
@media (min-width: 960px) { .nav-links { display: flex; } }

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop__btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  transition: color .2s ease;
  background: none;
  border: none;
  padding: 0;
}
.nav-drop__btn:hover { color: var(--gold-light); }
.nav-drop__btn svg { transition: transform .2s ease; }
.nav-drop:hover .nav-drop__btn svg { transform: rotate(180deg); }

.nav-drop__menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: .5rem;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 50;
}
.nav-drop:hover .nav-drop__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop__menu a {
  display: block;
  padding: .625rem 1rem;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  border-radius: var(--radius);
  transition: background .15s ease, color .15s ease;
}
.nav-drop__menu a:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Nav CTA button */
.nav-cta-btn { display: none; }
@media (min-width: 960px) { .nav-cta-btn { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  flex-shrink: 0;
}
@media (min-width: 960px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: rgba(255,255,255,.9);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .2s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  z-index: 190;
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.08);
  overflow-y: auto;
}
.mobile-nav.open {
  display: flex;
  animation: mobileSlide .3s var(--ease-out) forwards;
}
@keyframes mobileSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  padding: .875rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: block;
  font-weight: 500;
  transition: color .2s ease;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav__group-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 1.25rem 0 .5rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero--short {
  min-height: min(72vh, 600px);
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 0 4rem;
}
.hero__eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 820px;
}
.hero__title span { color: var(--gold-light); }
.hero__sub {
  font-size: clamp(.9375rem, 1.5vw, 1.0625rem);
  color: rgba(255,255,255,.82);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  align-items: center;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--navy);
  padding: .875rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTION CHROME ── */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .875rem;
  display: block;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
}
.section-header h2 {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  margin-bottom: .875rem;
}
.section-intro {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.25rem 0 1.5rem;
}
.lead {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ── BACKGROUNDS ── */
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }

/* ── TWO COLUMN ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col-60 { grid-template-columns: 3fr 2fr; }
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .cards-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 600px) { .cards-grid.cards-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .cards-grid.cards-3 { grid-template-columns: repeat(3,1fr); } }

/* ── CARD ── */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--top-gold { border-top: 4px solid var(--gold); }
.card--top-navy { border-top: 4px solid var(--navy); }
.card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .625rem;
}
.card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .75rem;
}
.card__body {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 0;
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.25rem;
  transition: gap .2s ease;
}
.card__link:hover { gap: .625rem; }

/* ── FORMS ── */
.form-wrap {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 768px) { .form-wrap { padding: 2.5rem; } }
.form-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-sub {
  font-size: .875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.f-group { display: flex; flex-direction: column; gap: .4rem; }
.f-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
}
.req { color: var(--gold); }
.f-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-primary);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  line-height: 1.5;
  font-family: var(--font-sans);
}
.f-input::placeholder { color: var(--text-tertiary); }
.f-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,42,.12);
}
select.f-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.f-select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text-primary);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23475569' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: var(--font-sans);
}
.f-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,150,42,.12);
}
.f-check {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.f-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.f-check__text {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.f-msg {
  display: none;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  margin-top: .75rem;
}
.f-msg.error { background: #fef2f2; color: var(--red); border: 1px solid #fecaca; display: block; }
.f-msg.success { background: #f0fdf4; color: var(--green); border: 1px solid #bbf7d0; display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success[style*="block"],
[data-success]:not([style*="none"]) { display: block; }
.form-success__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .625rem;
}
.form-success p {
  font-size: .9375rem;
  color: var(--text-secondary);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── FAQ ── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: background .15s ease;
  background: #fff;
}
.faq-q:hover { background: var(--off-white); }
.faq-q.open { background: var(--off-white); color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease-out);
}
.faq-a.open { max-height: 400px; }
.faq-a__inner {
  padding: 0 1.25rem 1.25rem;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ── CHECK LIST ── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.check-item--yes { border-color: rgba(5,150,105,.2); background: rgba(5,150,105,.04); }
.check-item--no  { border-color: rgba(220,38,38,.15); background: rgba(220,38,38,.03); }
.check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-item--yes .check-icon { color: var(--green); }
.check-item--no  .check-icon { color: var(--red); }
.check-item__text {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.check-item__text strong {
  display: block;
  color: var(--navy);
  margin-bottom: .25rem;
}

/* ── ABOUT PAGE SPECIFICS ── */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .about-two-col { grid-template-columns: 1fr 1.5fr; }
}
.about-photo-placeholder {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,.5);
  padding: 2rem;
}
.photo-placeholder-inner p { font-size: .875rem; margin-top: 1rem; color: rgba(255,255,255,.5); }
.photo-placeholder-inner span { font-size: .75rem; color: var(--gold-light); }
.about-credentials-badge {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.8);
}
.credential-icon { font-size: 1.125rem; }
.about-quote {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.about-quote p {
  font-size: .9375rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
}
.about-signature {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: .5rem;
}
.three-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .three-col-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .three-col-grid { grid-template-columns: repeat(3,1fr); } }
.feature-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .625rem;
}
.feature-card p {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
.value-card {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.value-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: .5rem;
}
.value-card h3 {
  font-size: 1.0625rem;
  color: var(--navy);
  margin-bottom: .625rem;
}
.value-card p {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 0;
}

/* Process timeline */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.timeline-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.12);
}
.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.timeline-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .375rem;
}
.text-white-muted { color: rgba(255,255,255,.65); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── CONTACT PAGE ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.mini-step {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  margin-bottom: 1rem;
}
.mini-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mini-step p { margin: 0; font-size: .875rem; color: var(--gray-700); line-height: 1.6; padding-top: 4px; }
.contact-trust-list { display: flex; flex-direction: column; gap: .625rem; }
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--gray-700);
}
.contact-trust-item span { color: var(--green); font-weight: 700; }

/* Services mini grid (contact page) */
.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .services-mini-grid { grid-template-columns: repeat(3,1fr); } }
.service-mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: block;
  transition: background .2s ease, transform .2s ease;
  text-decoration: none;
}
.service-mini-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.service-mini-icon { font-size: 1.75rem; margin-bottom: .625rem; }
.service-mini-card h4 { font-size: .9375rem; font-weight: 700; color: #fff; margin-bottom: .375rem; }
.service-mini-card p { font-size: .8125rem; color: rgba(255,255,255,.6); line-height: 1.5; margin: 0; }

/* ── SECTION-CTA (About page) ── */
.section-cta {
  background: var(--navy);
  padding: 4rem 0;
  text-align: center;
}
.section-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-cta .lead { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 2rem; }
.section-cta .actions { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201,150,42,.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .lead {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}
.cta-banner .section-label { margin-bottom: 1rem; }
.cta-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
}
.disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  max-width: 600px;
  margin: 2rem auto 0;
  line-height: 1.65;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy-dark);
  padding: 4rem 0 0;
  color: rgba(255,255,255,.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 960px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: .75rem;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  margin: 0;
}
.footer-brand p + p { margin-top: .5rem; }
.footer-col-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  padding: .3rem 0;
  display: block;
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-disclaimer {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}
.footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-legal a {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  transition: color .2s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }
.footer-copy {
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  margin: .25rem 0 0;
}
.footer-copy a { color: rgba(255,255,255,.4); }
.footer-copy a:hover { color: rgba(255,255,255,.8); }

/* ── STICKY MOBILE CTA ── */
.sticky-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  padding: .875rem 1rem;
  background: rgba(7,14,31,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  transition: transform .35s var(--ease-out), opacity .35s ease;
  transform: translateY(100%);
  opacity: 0;
}
.sticky-mobile.visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 767px) { .sticky-mobile { display: block; } }
@media (min-width: 768px) { .sticky-mobile { display: none !important; } }

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── UTILITY ── */
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline; } }
.text-center { text-align: center; }

/* ── THANK YOU PAGE ── */
.thankyou-wrap {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
  background: var(--surface);
}
.thankyou-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 3rem 2rem;
  max-width: 540px;
  width: 100%;
  text-align: center;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thankyou-card h1 { font-size: 1.875rem; color: var(--navy); margin-bottom: .75rem; }
.thankyou-card p { color: var(--gray-700); line-height: 1.75; }
.thankyou-card .btn { margin-top: 2rem; }

/* ── RESPONSIVE TYPOGRAPHY ── */
@media (max-width: 767px) {
  :root { --section-pad: 3rem 0; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .cta-banner .actions { flex-direction: column; align-items: center; }
  .section-cta .actions { flex-direction: column; align-items: center; }
}

/* ── D'METRID ADDITIONS — classes used in HTML not in base CSS ── */

/* Hero media wrapper */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero headline (alias for hero__title) */
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

/* Hero badge / eyebrow pill */
.hero__badge {
  display: inline-block;
  background: rgba(201,150,42,.18);
  border: 1px solid rgba(201,150,42,.35);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .375rem .875rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* Hero CTAs wrapper (alias for hero__actions) */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  align-items: center;
}
@media (max-width: 767px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
}

/* Ghost button (outlined/transparent for dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.88);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.65);
  color: #fff;
}

/* Gold button (same as primary, used on some pages) */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Trust icon span */
.trust-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Generic actions row */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 600px) {
  .actions { flex-direction: column; align-items: stretch; }
  .actions .btn { width: 100%; }
}

/* form-grid base class */
.form-grid { display: grid; gap: 1rem; }

/* ── Process Steps ── */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .steps-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 600px) {
  .steps-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .steps-4 { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: .9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.step__body {
  font-size: .875rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ── Container narrow variant ── */
.container-sm {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Two-column check list variant ── */
.check-list-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .check-list-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ── Hero fine-print note ── */
.hero__note {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 1.25rem;
  line-height: 1.5;
}

/* ── About Page Layout Columns ── */
.about-photo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-story-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Section Headline (used directly on h2 without section-header wrapper) ── */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* ── Contact Page Layout ── */
.contact-context {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form-col {
  /* inherits .form-wrap sizing; just a positional wrapper */
}
.what-happens-next {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ── Mastermind Marketing footer credit hover ── */
a[href*="mastermind-marketing.com"] {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .2s ease, text-decoration-color .2s ease;
  text-underline-offset: 3px;
}
a[href*="mastermind-marketing.com"]:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.6);
}
