/* Wolf Den Leads LLC — corporate site.
   Tokens and component conventions mirror the wolfdenleads.com den design system. */
:root {
  --wolf-white: #FFFFFF;
  --wolf-black: #141A22;
  --wolf-black-pure: #0C1016;
  --wolf-red: #0B87F3;
  --wolf-red-dark: #096FCB;
  --wolf-red-soft: rgba(11, 135, 243, 0.10);
  --wolf-grey-50: #F3F5F7;
  --wolf-grey-100: #E6E9EE;
  --wolf-grey-200: #D0D5DD;
  --wolf-grey-400: #5B6472;
  --wolf-grey-500: #4B5563;
  --wolf-grey-600: #2F3744;
  --wolf-grey-800: #1E2632;

  --text-primary: #12171F;
  --text-secondary: #4B5563;
  --text-on-dark: #F4F6F8;
  --text-on-dark-muted: #C2CAD6;
  --text-on-dark-faint: #9AA6B8;
  --surface-dark: #141A22;
  --surface-dark-elevated: #1E2632;

  --white: var(--wolf-white);
  --light-bg: var(--wolf-grey-50);
  --red: var(--wolf-red);
  --green: #0F8A4B;
  --amber: #B45309;

  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --border-hairline: 1px solid var(--wolf-grey-200);
  --shadow-sm: 0 2px 16px rgba(12, 16, 22, 0.06);
  --shadow-md: 0 12px 40px rgba(12, 16, 22, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 64px;
  --topbar-height: 36px;
}

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

html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--header-height) + var(--topbar-height) + 16px); }

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--header-height) + var(--topbar-height));
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red); }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1rem; letter-spacing: -0.005em; }

p + p { margin-top: var(--space-sm); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--wolf-black); color: #fff; padding: 0.75rem 1.25rem;
  font-size: 0.8125rem; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.text-upper { text-transform: uppercase; letter-spacing: 0.12em; }
.text-center { text-align: center; }
.text-muted { color: var(--text-secondary); }
.text-red { color: var(--red); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: var(--space-sm);
}
.section--dark .eyebrow, .hero .eyebrow, .cta-band .eyebrow { color: #6BB6F7; }

.link-arrow {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.link-arrow::after { content: '→'; transition: transform var(--transition); }
.link-arrow:hover::after { transform: translateX(4px); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-md); }
.container--narrow { max-width: 860px; }

.section { padding: var(--space-xl) 0; }
.section--compact { padding: var(--space-lg) 0; }
.section--dark { background: var(--surface-dark); color: var(--text-on-dark); }
.section--dark .text-muted { color: var(--text-on-dark-muted); }
.section--light { background: var(--light-bg); }
.section--white { background: var(--white); }

.section-header { max-width: 780px; margin: 0 auto var(--space-lg); text-align: center; }
.section-header--left { margin-left: 0; text-align: left; }
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p { color: var(--text-secondary); font-size: 1.0625rem; }
.section--dark .section-header p { color: var(--text-on-dark-muted); }

/* Top bar */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: var(--topbar-height);
  background: var(--surface-dark);
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
}
.topbar__inner {
  max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md);
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
}
.topbar__note { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar__links { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.topbar__links a { color: var(--text-on-dark-muted); }
.topbar__links a:hover { color: #fff; }
.topbar__lang {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 4px;
  color: var(--text-on-dark) !important;
}
.topbar__lang:hover {
  border-color: #fff;
  color: #fff !important;
}
.topbar__social { display: inline-flex; align-items: center; }

/* Header */
.site-header {
  position: fixed; top: var(--topbar-height); left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: var(--border-hairline);
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
  height: var(--header-height); max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md);
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 48px; width: auto; max-width: min(240px, 56vw); object-fit: contain; }

.site-nav { display: flex; align-items: center; flex: 1; justify-content: flex-end; min-width: 0; }
.site-nav__panel { display: flex; align-items: center; gap: 1.5rem; min-width: 0; }
.site-nav__drawer-head { display: none; }
.site-nav__links { display: flex; align-items: center; gap: 1.25rem; list-style: none; }
.site-nav__links a {
  font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.01em;
  color: var(--wolf-grey-600); white-space: nowrap;
}
.site-nav__links a:hover, .site-nav__links a.is-active { color: var(--wolf-black); }
.site-nav__links a.is-active { font-weight: 600; }
.site-nav__actions { display: flex; align-items: center; gap: 0.625rem; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--wolf-black); margin: 4px 0; transition: var(--transition); }

.site-nav__backdrop {
  position: fixed; inset: 0; background: rgba(12, 16, 22, 0.55); z-index: 1400;
}
.site-nav__backdrop[hidden] { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--wolf-grey-200);
  cursor: pointer; transition: all var(--transition);
  background: transparent; color: inherit;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn--nav { padding: 0.5rem 0.875rem; font-size: 0.6875rem; letter-spacing: 0.06em; white-space: nowrap; }
.btn--nav:hover { transform: none; }
.btn--large { padding: 1.125rem 2.25rem; font-size: 0.875rem; }
.btn--outline-silver { color: var(--wolf-black); border-color: var(--wolf-grey-200); background: #fff; }
.btn--outline-silver:hover { background: var(--wolf-grey-50); color: var(--wolf-black); border-color: var(--wolf-grey-400); }
.section--dark .btn--outline-silver,
.hero .btn--outline-silver,
.cta-band .btn--outline-silver {
  color: #fff; border-color: rgba(255,255,255,0.45); background: transparent;
}
.section--dark .btn--outline-silver:hover,
.hero .btn--outline-silver:hover,
.cta-band .btn--outline-silver:hover {
  background: rgba(255,255,255,0.08); color: #fff; border-color: #fff;
}
.btn--solid-dark { background: var(--wolf-black); color: #fff; border-color: var(--wolf-black); }
.btn--solid-dark:hover { background: var(--wolf-black-pure); border-color: var(--wolf-black-pure); color: #fff; }
.btn--solid-red { background: var(--wolf-red); color: #fff; border-color: var(--wolf-red); }
.btn--solid-red:hover { background: var(--wolf-red-dark); border-color: var(--wolf-red-dark); color: #fff; box-shadow: 0 6px 24px rgba(11,135,243,0.35); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.btn-row--center { justify-content: center; }

/* Hero */
.hero {
  position: relative;
  background: var(--surface-dark);
  color: var(--text-on-dark);
  padding: calc(var(--space-xl) + 1rem) 0 var(--space-xl);
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 420px at 78% 12%, rgba(11,135,243,0.20), transparent 62%),
    radial-gradient(700px 380px at 8% 92%, rgba(11,135,243,0.10), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero__content { max-width: 820px; }
.hero__content--center { margin: 0 auto; text-align: center; }
.hero__welcome {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-on-dark-faint);
  margin-bottom: var(--space-sm);
}
.hero__headline { margin-bottom: var(--space-sm); }
.hero__headline .accent { color: #6BB6F7; }
.hero__subhead { font-size: 1.125rem; color: var(--text-on-dark-muted); max-width: 720px; }
.hero__content--center .hero__subhead { margin-left: auto; margin-right: auto; }
.hero__actions { margin-top: var(--space-md); }
.hero--page { padding: var(--space-lg) 0; }
.hero--page .hero__headline { font-size: clamp(2rem, 4vw, 3rem); }

/* Ticker / proof band */
.proof-band { background: var(--surface-dark-elevated); color: var(--text-on-dark-muted); padding: var(--space-sm) 0; }
.proof-band__inner {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 0.75rem 2rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em;
}
.proof-band__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.proof-band__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--space-md); }
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: #fff; border: var(--border-hairline); padding: var(--space-md);
  transition: all var(--transition); display: flex; flex-direction: column;
}
.card:hover { border-color: var(--wolf-grey-400); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card--dark { background: var(--surface-dark-elevated); border-color: rgba(255,255,255,0.10); color: var(--text-on-dark); }
.card--dark:hover { border-color: rgba(255,255,255,0.28); }
.card--flat:hover { transform: none; box-shadow: none; border-color: var(--wolf-grey-200); }
.card__num {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.14em; color: var(--red); margin-bottom: 0.75rem;
}
.card__icon { color: var(--red); margin-bottom: var(--space-sm); }
.card--dark .card__icon { color: #6BB6F7; }
.card__title { margin-bottom: 0.5rem; }
.card__text { color: var(--text-secondary); font-size: 0.9375rem; }
.card--dark .card__text { color: var(--text-on-dark-muted); }
.card__link { margin-top: auto; padding-top: var(--space-sm); }

/* Value props — three-up with rule */
.valueprops { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.valueprop { border-top: 3px solid var(--red); padding-top: var(--space-sm); }
.valueprop h3 { margin-bottom: 0.75rem; }
.valueprop p { color: var(--text-secondary); font-size: 0.9375rem; }
.section--dark .valueprop p { color: var(--text-on-dark-muted); }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
.split__body p { color: var(--text-secondary); }
.section--dark .split__body p { color: var(--text-on-dark-muted); }
.split__panel {
  background: var(--surface-dark-elevated); color: var(--text-on-dark);
  padding: var(--space-md); border: 1px solid rgba(255,255,255,0.10);
}
.split__panel--light { background: #fff; color: var(--text-primary); border: var(--border-hairline); box-shadow: var(--shadow-sm); }
.split__panel h3 { margin-bottom: var(--space-sm); }

/* Checklist */
.checklist { list-style: none; display: grid; gap: 0.75rem; }
.checklist li { position: relative; padding-left: 1.75rem; font-size: 0.9375rem; color: var(--text-secondary); }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 10px; height: 10px; border: 2px solid var(--red); border-top: 0; border-right: 0;
  transform: rotate(-45deg);
}
.section--dark .checklist li, .card--dark .checklist li { color: var(--text-on-dark-muted); }

/* Stats */
.stats-band { background: var(--surface-dark); color: var(--text-on-dark); padding: var(--space-lg) 0; }
.stats-band__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-md); text-align: center; }
.stat__number { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 700; line-height: 1; color: #fff; }
.stat__number--text { font-size: clamp(1.5rem, 3vw, 2rem); }
.stat__suffix { color: var(--red); }
.stat__label { margin-top: 0.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-on-dark-faint); }

/* Considerations grid (6 items) */
.consider-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.consider {
  border-left: 2px solid var(--wolf-grey-200); padding-left: var(--space-sm);
  transition: border-color var(--transition);
}
.consider:hover { border-left-color: var(--red); }
.consider h3 { font-size: 1.125rem; margin-bottom: 0.4rem; }
.consider p { color: var(--text-secondary); font-size: 0.9375rem; }
.section--dark .consider { border-left-color: rgba(255,255,255,0.16); }
.section--dark .consider p { color: var(--text-on-dark-muted); }

/* Partner logos / verticals */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--space-sm); }
.partner {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 96px; padding: var(--space-sm);
  background: #fff; border: var(--border-hairline);
  font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em;
  color: var(--wolf-grey-600); font-size: 1.0625rem;
  transition: all var(--transition);
}
.partner:hover { border-color: var(--red); color: var(--wolf-black); box-shadow: var(--shadow-sm); }
.partner small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-top: 0.35rem; }

/* Differently band */
.differently { text-align: center; max-width: 820px; margin: 0 auto; }
.differently h2 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: var(--space-sm); }
.differently p { font-size: 1.125rem; color: var(--text-on-dark-muted); }

/* CTA band */
.cta-band { background: var(--wolf-red); color: #fff; padding: var(--space-lg) 0; }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-md); }
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { color: rgba(255,255,255,0.88); max-width: 620px; }
.cta-band .btn--solid-dark { background: var(--wolf-black); border-color: var(--wolf-black); }
.cta-band .btn--outline-silver { color: #fff; border-color: rgba(255,255,255,0.6); }

/* Forms */
.form { display: grid; gap: var(--space-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-secondary);
}
.form__label .req { color: var(--red); }
.form__hint { font-size: 0.75rem; color: var(--text-secondary); }
.form__control {
  width: 100%; padding: 0.875rem 1rem;
  font-family: var(--font-body); font-size: 0.9375rem; color: var(--text-primary);
  background: #fff; border: 1px solid var(--wolf-grey-200); border-radius: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__control:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--wolf-red-soft); }
textarea.form__control { min-height: 130px; resize: vertical; }

.dropzone {
  border: 2px dashed var(--wolf-grey-200); background: var(--wolf-grey-50);
  padding: var(--space-md); text-align: center; cursor: pointer;
  transition: all var(--transition);
}
.dropzone:hover, .dropzone.is-dragover { border-color: var(--red); background: var(--wolf-red-soft); }
.dropzone__title { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; }
.dropzone__hint { font-size: 0.75rem; color: var(--text-secondary); margin-top: 0.35rem; }
.dropzone__file { margin-top: 0.6rem; font-size: 0.8125rem; color: var(--red); font-weight: 600; }
.dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: var(--space-sm) 1.25rem; border-left: 3px solid; font-size: 0.9375rem; }
.alert--ok { background: rgba(15,138,75,0.08); border-color: var(--green); color: #0B5F35; }
.alert--err { background: rgba(180,83,9,0.08); border-color: var(--amber); color: #7A3B06; }

/* Blog / insights */
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-md); }
.post-card { display: flex; flex-direction: column; background: #fff; border: var(--border-hairline); transition: all var(--transition); }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--wolf-grey-400); }
.post-card__thumb {
  height: 148px; background: var(--surface-dark);
  display: flex; align-items: center; justify-content: center;
  background-image: radial-gradient(500px 200px at 70% 20%, rgba(11,135,243,0.30), transparent 60%);
}
.post-card__thumb img { height: 40px; width: auto; opacity: 0.95; }
.post-card__body { padding: var(--space-sm) 1.25rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); font-weight: 600; }
.post-card__title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; line-height: 1.25; margin: 0.5rem 0; }
.post-card__excerpt { color: var(--text-secondary); font-size: 0.9375rem; }
.post-card__meta { margin-top: auto; padding-top: var(--space-sm); font-size: 0.75rem; color: var(--text-secondary); }

.article { max-width: 760px; margin: 0 auto; }
.article__meta { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: var(--space-md); }
.article h2 { margin: var(--space-lg) 0 var(--space-sm); }
.article h3 { margin: var(--space-md) 0 0.5rem; }
.article p, .article li { color: var(--text-secondary); font-size: 1.0625rem; }
.article ul, .article ol { margin: var(--space-sm) 0 var(--space-sm) 1.25rem; display: grid; gap: 0.5rem; }
.article blockquote {
  border-left: 3px solid var(--red); padding-left: var(--space-sm); margin: var(--space-md) 0;
  font-family: var(--font-display); font-size: 1.25rem; color: var(--text-primary);
}

/* Contact blocks */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-md); }
.contact-card { background: var(--surface-dark-elevated); border: 1px solid rgba(255,255,255,0.10); padding: var(--space-md); }
.contact-card h3 { margin-bottom: 0.75rem; }
.contact-card address { font-style: normal; color: var(--text-on-dark-muted); font-size: 0.9375rem; }
.contact-card a { color: #6BB6F7; }
.contact-card a:hover { color: #fff; }
.contact-card__label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-on-dark-faint); margin-top: var(--space-sm); }

/* Testimonial */
.testimonial { max-width: 780px; margin: 0 auto; text-align: center; }
.testimonial__quote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 500; line-height: 1.4; }
.testimonial__author { margin-top: var(--space-sm); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-secondary); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-md); }
.step__num {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--red); color: var(--red);
  font-family: var(--font-display); font-weight: 700; margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.125rem; margin-bottom: 0.4rem; }
.step p { color: var(--text-secondary); font-size: 0.9375rem; }
.section--dark .step p { color: var(--text-on-dark-muted); }

/* Footer */
.site-footer { background: var(--surface-dark); color: var(--text-on-dark-muted); padding: var(--space-xl) 0 var(--space-md); }
.site-footer__inner { display: grid; grid-template-columns: 1.1fr 2fr; gap: var(--space-lg); }
.site-footer__tagline { font-size: 0.875rem; margin-top: var(--space-sm); max-width: 340px; }
.site-footer__address { font-style: normal; font-size: 0.875rem; margin-top: var(--space-sm); color: var(--text-on-dark-faint); }
.site-footer__email { margin-top: 0.5rem; font-size: 0.9375rem; }
.site-footer__email a { color: #6BB6F7; }
.site-footer__email a:hover { color: #fff; }
.site-footer__social { margin-top: var(--space-sm); }
.site-footer__social a { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--text-on-dark-muted); }
.site-footer__social a:hover { color: #fff; }
.site-footer__nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: var(--space-md); }
.site-footer__nav h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: #fff; margin-bottom: 0.75rem; }
.site-footer__nav ul { list-style: none; display: grid; gap: 0.5rem; }
.site-footer__nav a { font-size: 0.875rem; color: var(--text-on-dark-muted); }
.site-footer__nav a:hover { color: #fff; }
.site-footer__bottom {
  margin-top: var(--space-lg); padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; gap: var(--space-sm); justify-content: space-between; align-items: center;
  font-size: 0.8125rem;
}
.site-footer__bottom a { color: var(--text-on-dark-muted); }
.site-footer__bottom a:hover { color: #fff; }
.site-footer__bottom .link-arrow { color: #6BB6F7; }

/* Responsive */
@media (max-width: 1080px) {
  .site-nav__links { gap: 1rem; }
  .site-nav__links a { font-size: 0.78125rem; }
}

@media (max-width: 900px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
}

@media (max-width: 860px) {
  .hamburger { display: block; }
  .site-nav__panel {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 88vw);
    background: #fff; z-index: 1500;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: var(--space-md); padding: var(--space-md);
    transform: translateX(100%); transition: transform var(--transition);
    overflow-y: auto; box-shadow: var(--shadow-md);
  }
  .site-nav__panel.is-open { transform: translateX(0); }
  .site-nav__drawer-head { display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm); }
  .site-nav__close { background: none; border: 0; font-size: 1.75rem; line-height: 1; cursor: pointer; color: var(--wolf-grey-600); }
  .site-nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__links li { border-bottom: var(--border-hairline); }
  .site-nav__links a { display: block; padding: 0.875rem 0; font-size: 1rem; }
  .site-nav__actions { flex-direction: column; align-items: stretch; }
  .site-nav__actions .btn { width: 100%; padding: 0.875rem 1rem; font-size: 0.75rem; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  :root { --space-xl: 3.25rem; --space-lg: 2.25rem; }
  .container { padding: 0 1.25rem; }
  .form__row { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .site-logo img { height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
