@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Variables ─── */
:root {
  --black:        #07080b;
  --near-black:   #0e0f14;
  --navy:         #0d1e36;
  --navy-mid:     #142840;
  --navy-light:   #1c3458;
  --white:        #f5f2ed;
  --white-dim:    rgba(245, 242, 237, 0.62);
  --gold:         #b8975a;
  --gold-dim:     rgba(184, 151, 90, 0.28);
  --border:       rgba(245, 242, 237, 0.1);
  --border-navy:  rgba(30, 60, 100, 0.55);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;

  --max-width:  1160px;
  --nav-height: 70px;
  --transition: 0.22s ease;
}

/* ─── Base ─── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════
   NAV
════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(7, 8, 11, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-brand span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  color: var(--white) !important;
  border: 1px solid rgba(184, 151, 90, 0.55);
  padding: 0.5rem 1.3rem !important;
  transition: background var(--transition), border-color var(--transition) !important;
}

.nav-cta:hover {
  background: var(--gold-dim);
  border-color: var(--gold) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.28s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════
   HERO (homepage)
════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(140deg, transparent 20%, var(--navy) 100%);
  opacity: 0.45;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 7rem 0 6rem;
}

.hero-kicker {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-kicker::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--white);
  max-width: 13ch;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.3vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-body {
  font-size: 0.93rem;
  color: var(--white-dim);
  max-width: 52ch;
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

/* ═══════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover { background: #c9a86a; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: rgba(245, 242, 237, 0.45);
  background: rgba(245, 242, 237, 0.04);
}

.btn-arrow::after {
  content: '→';
  font-size: 0.88rem;
  letter-spacing: 0;
}

/* ═══════════════════════════════
   FEATURES
════════════════════════════════ */
.features {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature {
  padding: 3rem 2.75rem;
  border-right: 1px solid var(--border);
}

.feature:last-child { border-right: none; }

.feature-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--navy-light);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.87rem;
  color: var(--white-dim);
  line-height: 1.75;
}

/* ═══════════════════════════════
   CREDENTIALS STRIP
════════════════════════════════ */
.credentials-strip {
  background: var(--navy);
  padding: 2.75rem 0;
  border-top: 1px solid var(--border-navy);
  border-bottom: 1px solid var(--border-navy);
}

.credentials-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cred-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.cred-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
}

.cred-divider {
  width: 1px;
  height: 2.25rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════ */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  background: var(--black);
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.page-hero-kicker {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero-kicker::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  max-width: 20ch;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  margin-top: 1.25rem;
  max-width: 58ch;
  line-height: 1.55;
}

/* ═══════════════════════════════
   SECTIONS
════════════════════════════════ */
.section { padding: 6rem 0; }

.section--navy  { background: var(--navy); }
.section--dark  { background: var(--near-black); }

.section-label {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 0.93rem;
  color: var(--white-dim);
  max-width: 60ch;
  line-height: 1.85;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.two-col--wide { grid-template-columns: 1.15fr 1fr; }

/* ═══════════════════════════════
   CREDENTIAL CARDS
════════════════════════════════ */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.credential-card {
  background: var(--near-black);
  padding: 2rem 2.25rem;
}

.credential-card--full { grid-column: 1 / -1; }

.credential-card-label {
  font-size: 0.61rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.credential-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.credential-card-body {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ═══════════════════════════════
   STATS ROW
════════════════════════════════ */
.stat-row {
  display: flex;
  border: 1px solid var(--border);
  margin: 3rem 0;
}

.stat {
  flex: 1;
  padding: 2rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ═══════════════════════════════
   SERVICE ITEMS
════════════════════════════════ */
.service-items {
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.service-item {
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-item:last-child { border-bottom: none; }

.service-item-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gold);
  min-width: 2rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.service-item-title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.service-item-text {
  font-size: 0.87rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ═══════════════════════════════
   NOTICE BOX
════════════════════════════════ */
.notice {
  border: 1px solid var(--gold-dim);
  background: rgba(184, 151, 90, 0.04);
  padding: 2rem 2.5rem;
  margin-top: 2.5rem;
}

.notice-text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.65;
}

/* ═══════════════════════════════
   WHY IT MATTERS BLOCKS
════════════════════════════════ */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 2.5rem;
}

.reason-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.reason-item:last-child { border-bottom: none; }

.reason-icon {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.reason-text {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.7;
}

/* ═══════════════════════════════
   BLOODLINES — BREED PANEL
════════════════════════════════ */
.bloodline-panel {
  background: var(--near-black);
  border: 1px solid var(--border);
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.bloodline-panel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.bloodline-panel-body {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.8;
}

/* ═══════════════════════════════
   PRIVACY POLICY
════════════════════════════════ */
.policy-statement {
  background: var(--navy);
  border: 1px solid var(--border-navy);
  padding: 3.5rem;
  margin-bottom: 4rem;
}

.policy-statement-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.93rem;
  color: var(--white-dim);
  line-height: 1.65;
}

.policy-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

.policy-statement-body {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.85;
  margin-top: 1rem;
}

.legal-section { margin-bottom: 2.5rem; }

.legal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.legal-body {
  font-size: 0.87rem;
  color: var(--white-dim);
  line-height: 1.82;
}

/* ═══════════════════════════════
   CONTACT FORM
════════════════════════════════ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(245, 242, 237, 0.04);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1.1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(184, 151, 90, 0.6);
  background: rgba(245, 242, 237, 0.06);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(245, 242, 237, 0.25); }

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-select option { background: var(--near-black); }

.form-note {
  font-size: 0.82rem;
  color: var(--white-dim);
  line-height: 1.65;
  font-style: italic;
  font-family: var(--font-display);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Contact aside */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

.contact-aside-block {
  border-left: 2px solid var(--gold-dim);
  padding-left: 1.5rem;
}

.contact-aside-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-aside-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ═══════════════════════════════
   PHOTO SECTIONS
════════════════════════════════ */

/* Hero with photo background — uses .hero-bg img child */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.5) saturate(0.7);
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(7,8,11,0.93) 0%,
    rgba(7,8,11,0.88) 35%,
    rgba(7,8,11,0.5) 62%,
    rgba(14,30,54,0.38) 100%
  );
}

/* hero-inner must sit above the bg */
.hero .container { position: relative; z-index: 1; }

/* Grain texture for hero — subtle noise overlay */
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

/* Full-width photo band */
.photo-band {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.45) saturate(0.7);
}

.photo-band--overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,11,0.35) 0%, rgba(7,8,11,0.0) 40%, rgba(7,8,11,0.55) 100%);
}

.photo-band--caption {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
}

.photo-band--caption-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,242,237,0.75);
  letter-spacing: 0.02em;
}

/* Two-col with image */
.image-col {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.55) saturate(0.75);
}

.image-col--overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,30,54,0.3) 0%, rgba(7,8,11,0.15) 100%);
}

/* Texture overlay for dark sections (no photo) */
.section--texture {
  position: relative;
}

.section--texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(245,242,237,0.012) 2px,
      rgba(245,242,237,0.012) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(245,242,237,0.008) 40px,
      rgba(245,242,237,0.008) 41px
    );
  pointer-events: none;
}

/* Grain texture for hero — subtle noise overlay */
.hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

/* Gold rule decoration */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}

.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.gold-rule::after {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.gold-rule-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ═══════════════════════════════
   DIVIDER
════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 3rem 0;
}

.divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

/* ═══════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid var(--border);
  padding: 2.75rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-brand span { color: var(--gold); }

.footer-domain {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white-dim);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-style: italic;
  color: var(--white-dim);
  text-align: center;
}

.footer-legal {
  font-size: 0.73rem;
  font-weight: 300;
  color: rgba(245, 242, 237, 0.32);
  text-align: right;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.65rem;
  color: var(--white-dim);
  transition: color var(--transition);
}

.footer-social-link:hover {
  color: var(--gold);
}

/* ═══════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════ */
@media (max-width: 960px) {
  .two-col,
  .two-col--wide {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .features-grid { grid-template-columns: 1fr; }

  .feature {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 2rem 0;
  }

  .feature:last-child { border-bottom: none; }

  .credential-grid { grid-template-columns: 1fr; }
  .credential-card--full { grid-column: 1; }

  .stat-row { flex-wrap: wrap; }
  .stat { flex: 1 1 45%; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal { text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .credentials-inner { gap: 1.25rem; }
  .cred-divider { display: none; }

  .policy-statement { padding: 2rem; }
}

/* ═══════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: calc(100vh - var(--nav-height));
    background: rgba(7, 8, 11, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 0;
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open { display: flex; }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 1.1rem 0;
    font-size: 0.82rem;
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 1.5rem;
    width: auto;
  }

  .nav-cta {
    display: inline-block !important;
    padding: 0.85rem 2rem !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    font-size: 0.72rem !important;
    background: transparent !important;
    width: auto !important;
    text-align: center;
    letter-spacing: 0.15em;
  }

  .nav-toggle { display: flex; }

  .footer-social-link {
    color: var(--white);
    margin-top: 1rem;
  }

  .footer-social-link svg {
    width: 24px;
    height: 24px;
  }

  .hero-inner { padding: 4rem 0 3.5rem; }

  .section { padding: 4rem 0; }

  .service-item { padding: 1.25rem 1rem; }
  .service-item-num { display: none; }

  .policy-statement { padding: 1.75rem; }

  .stat { flex: 1 1 100%; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .bloodline-panel { padding: 1.75rem; }
}


/* ════════════════════════════════
   THE APP — client diary promo band
   (optional extra; dismissible)
════════════════════════════════ */
.vc-app-promo {
  position: relative;
  background: var(--near-black);
  border-top: 1px solid var(--border);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.vc-app-promo::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 140px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.vc-app-promo.vc-dismissed { opacity: 0; transform: translateY(10px); pointer-events: none; }
.vc-promo-inner {
  display: flex; align-items: center; gap: 1.75rem;
  padding: 1.5rem 0;
}
.vc-promo-icon {
  width: 60px; height: 60px; flex-shrink: 0;
  border-radius: 24%; border: 1px solid var(--border);
  background: radial-gradient(120% 100% at 50% 0%, #1b1710, #0a0805);
  display: grid; place-items: center; box-shadow: 0 10px 26px -14px rgba(0,0,0,0.9);
}
.vc-promo-icon img { width: 72%; height: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); }
.vc-promo-copy { flex: 1; min-width: 0; }
.vc-promo-label {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin: 0;
}
.vc-promo-title {
  font-family: var(--font-display); font-weight: 600; font-size: 1.7rem;
  line-height: 1.05; margin: 0.3rem 0 0; color: var(--white); letter-spacing: 0.01em;
}
.vc-promo-text {
  font-family: var(--font-body); font-weight: 300; font-size: 0.85rem;
  line-height: 1.5; color: var(--white-dim); margin: 0.35rem 0 0; max-width: 54ch;
}
.vc-promo-actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.vc-promo-preview {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: none; border: 0; cursor: pointer; color: var(--white);
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.1rem;
  transition: color var(--transition); white-space: nowrap;
}
.vc-promo-preview:hover { color: var(--gold); }
.vc-promo-preview svg { width: 14px; height: 14px; }
.vc-promo-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--white); color: var(--black);
  border-radius: 9px; padding: 0.55rem 1rem; text-decoration: none;
  transition: background var(--transition); white-space: nowrap;
}
.vc-promo-badge:hover { background: #fff; }
.vc-promo-badge svg { width: 22px; height: 22px; }
.vc-promo-badge .vc-badge-text { display: flex; flex-direction: column; line-height: 1; }
.vc-promo-badge .sm { font-size: 0.56rem; letter-spacing: 0.03em; opacity: 0.75; }
.vc-promo-badge .lg { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em; margin-top: 2px; }
.vc-promo-close {
  position: absolute; top: 14px; right: 16px;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); background: rgba(245,242,237,0.03);
  color: var(--white-dim); cursor: pointer; display: grid; place-items: center;
  transition: border-color var(--transition), color var(--transition); line-height: 0;
}
.vc-promo-close:hover { border-color: var(--gold); color: var(--gold); }
.vc-promo-close svg { width: 13px; height: 13px; }
.vc-promo-restore { display: none; text-align: center; padding: 1.1rem 0; background: var(--near-black); border-top: 1px solid var(--border); }
.vc-promo-restore.show { display: block; }
.vc-promo-restore button {
  background: none; border: 1px solid var(--border); color: var(--white-dim);
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  padding: 0.6rem 1.2rem; transition: border-color var(--transition), color var(--transition);
}
.vc-promo-restore button:hover { border-color: var(--gold); color: var(--gold); }

/* live preview modal */
.vc-app-modal { position: fixed; inset: 0; z-index: 9999; display: none; }
.vc-app-modal.open { display: block; }
.vc-modal-scrim { position: absolute; inset: 0; background: rgba(5,4,3,0.84); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.vc-modal-stage { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 1.5rem; }
.vc-modal-phone { position: relative; width: 320px; max-width: 88vw; height: 660px; max-height: 82vh; border-radius: 30px; overflow: hidden; border: 1px solid var(--border); background: #060503; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9); }
.vc-modal-phone iframe { width: 100%; height: 100%; border: 0; display: block; }
.vc-modal-cap { font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white-dim); margin: 0; }
.vc-modal-close { position: absolute; top: 20px; right: 20px; z-index: 2; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: rgba(20,18,14,0.6); color: var(--white); cursor: pointer; display: grid; place-items: center; transition: border-color var(--transition), color var(--transition); }
.vc-modal-close:hover { border-color: var(--gold); color: var(--gold); }
.vc-modal-close svg { width: 17px; height: 17px; }

@media (max-width: 720px) {
  .vc-promo-inner { flex-wrap: wrap; gap: 1.1rem; padding: 1.4rem 0 1.6rem; }
  .vc-promo-icon { width: 50px; height: 50px; }
  .vc-promo-copy { flex-basis: calc(100% - 70px); }
  .vc-promo-text { display: none; }
  .vc-promo-actions { flex-basis: 100%; justify-content: space-between; }
  .vc-app-promo::before { width: 90px; }
}
