/* ============================================================
   LOUPE BROKERAGE — style.css
   Version: 2.1
   Structure:
     1. Tokens (CSS custom properties)
     2. Reset & Base
     3. Utilities (labels, dividers, headlines, reveal, buttons)
     4. Navigation
     5. Hero
     6. About (light)
     7. Services (dark)
     8. Why LouPe (light)
     9. Team (dark)
    10. Insights (dark)
    11. CTA / Contact (dark)
    12. Footer
    13. Keyframe Animations
    14. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. TOKENS
   ============================================================ */
:root {
  /* Brand */
  --crimson:       #8B1A1A;
  --crimson-h:     #A52020;
  --gold:          #D4AF6A;
  --gold-dim:      rgba(212, 175, 106, 0.16);
  --gold-border:   rgba(212, 175, 106, 0.28);

  /* Dark palette */
  --black:         #0D0D0D;
  --black-soft:    #141414;
  --black-card:    #1A1A1A;
  --border-dark:   #2A2A2A;
  --gray:          #888888;

  /* Light palette */
  --light:         #F0EAE0;
  --light-alt:     #E8E1D6;
  --light-border:  #D4CCB8;
  --ink:           #1A1714;
  --ink-mid:       #4A4440;
  --ink-soft:      #7A706A;

  /* Typography */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;

  /* Layout */
  --max-w:         1200px;
  --pad-x:         40px;
  --sec-pad:       120px 0;
  --nav-h:         80px;

  /* Motion */
  --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fast:          0.2s ease;
  --smooth:        0.45s var(--ease);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}


/* ============================================================
   3. UTILITIES
   ============================================================ */

/* Labels */
.lbl-g {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lbl-r {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
}

/* Dividers */
.div-g {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 34px;
}

.div-d {
  width: 44px;
  height: 1px;
  background: var(--ink-mid);
  margin-bottom: 34px;
}

/* Headlines */
.h-dk {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 18px;
}

.h-lt {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 18px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--fast);
}

.btn-c {
  background: var(--crimson);
  color: #fff;
  border: 1px solid var(--crimson);
}

.btn-c:hover {
  background: var(--crimson-h);
  border-color: var(--crimson-h);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: #c8a35e;
  border-color: #c8a35e;
  transform: translateY(-1px);
}

.btn-gd {
  background: transparent;
  color: #fff;
  border: 1px solid var(--border-dark);
}

.btn-gd:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gl {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--light-border);
}

.btn-gl:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}


/* ============================================================
   4. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 900;
  display: flex;
  align-items: center;
  transition: background var(--smooth), border-color var(--smooth);
  border-bottom: 1px solid transparent;
}

.nav.solid {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: var(--border-dark);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.nav-logo img {
  height: 34px;
  width: auto;
}

.nav-logo-t {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--fast);
}

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

.nav-cta-link {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 2px;
}

.nav-cta-link:hover {
  background: var(--crimson-h) !important;
  color: #fff !important;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: var(--fast);
}

/* Mobile menu */
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  inset: var(--nav-h) 0 auto 0;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(14px);
  z-index: 800;
  flex-direction: column;
  padding: 24px var(--pad-x) 40px;
  border-bottom: 1px solid var(--border-dark);
}

.mob-menu.open {
  display: flex;
}

.mob-menu a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-dark);
  transition: color var(--fast);
}

.mob-menu a:hover {
  color: var(--gold);
}


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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 78% 45%, rgba(212, 175, 106, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(139, 26, 26, 0.10) 0%, transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 106, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 106, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at center, black 20%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(50px, 7.5vw, 92px);
  font-weight: 300;
  line-height: 1.04;
  color: #fff;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}

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

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.82;
  max-width: 500px;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.40s forwards;
}

.hero-sectors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 46px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}

.hs-item  { color: rgba(212, 175, 106, 0.75); }
.hs-sep   { color: var(--border-dark); }

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.70s forwards;
}

.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.3;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards;
}

.hero-scroll-t {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #444;
}

.hero-scroll-l {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(212, 175, 106, 0.35), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}


/* ============================================================
   6. ABOUT  (light section)
   ============================================================ */
.about {
  padding: var(--sec-pad);
  background: var(--light);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 110px;
}

.about-pull {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink-mid);
  line-height: 1.55;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-top: 34px;
}

.about-body p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.92;
  margin-bottom: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 44px;
  margin-top: 44px;
  border-top: 1px solid var(--light-border);
}

.stat-n {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}

.stat-l {
  font-size: 12px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.4;
}


/* ============================================================
   7. SERVICES  (dark section)
   ============================================================ */
.services {
  padding: var(--sec-pad);
  background: var(--black-soft);
}

.services-hd {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc {
  background: var(--black-card);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background var(--smooth);
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--smooth);
}

.svc:hover {
  background: #1C1A16;
}

.svc:hover::after {
  transform: scaleX(1);
}

.svc-num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 300;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--smooth);
}

.svc:hover .svc-num {
  color: rgba(212, 175, 106, 0.35);
}

.svc-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.svc-sub {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.svc-body {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.82;
}


/* ============================================================
   8. WHY LOUPE  (light section)
   ============================================================ */
.why {
  padding: var(--sec-pad);
  background: var(--light-alt);
  position: relative;
}

.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}

.why-hd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.why-intro {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.85;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--light-border);
}

.why-item {
  background: var(--light-alt);
  padding: 32px 26px;
  transition: background var(--fast);
}

.why-item:hover {
  background: #DDD7CC;
}

.why-n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.why-t {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-b {
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.72;
}


/* ============================================================
   9. TEAM  (dark section)
   ============================================================ */
.team {
  padding: var(--sec-pad);
  background: var(--black);
}

.team-hd {
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.team-card {
  background: var(--black-card);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--smooth);
}

.team-card:hover::before {
  opacity: 1;
}

.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(212, 175, 106, 0.10);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 26px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}

.team-role {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.team-bio {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.82;
}


/* ============================================================
   10. INSIGHTS  (dark section)
   ============================================================ */
.insights {
  padding: var(--sec-pad);
  background: var(--black-soft);
}

.insights-hd {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}

.insights-all {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding-bottom: 4px;
  transition: gap var(--fast);
}

.insights-all:hover {
  gap: 14px;
}

.insight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ic {
  background: var(--black-card);
  overflow: hidden;
}

.ic-head {
  padding: 32px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  transition: background var(--fast);
  user-select: none;
}

.ic-head:hover {
  background: #1C1A16;
}

.ic-tag {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.ic-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  line-height: 1.32;
}

.ic-toggle {
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--gold);
  margin-top: 2px;
  transition: all var(--smooth);
}

.ic.open .ic-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(45deg);
}

.ic-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.52s var(--ease);
}

.ic.open .ic-body {
  max-height: 420px;
}

.ic-body-in {
  border-top: 1px solid var(--border-dark);
  padding: 22px 28px 32px;
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.82;
}


/* ============================================================
   11. CTA / CONTACT  (dark section)
   ============================================================ */
.cta {
  padding: var(--sec-pad);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-wm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 16vw, 220px);
  font-weight: 300;
  color: rgba(212, 175, 106, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cta-body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.85;
  margin-bottom: 28px;
}

.cta-meta {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray);
  letter-spacing: 0.06em;
}

.cta-meta strong {
  color: var(--gold);
  font-weight: 400;
}

.cta-box {
  background: var(--black-card);
  border-top: 2px solid var(--gold);
  padding: 44px 36px;
}

.cta-box-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
}

.cta-box-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Calendly / Cal.com placeholder — remove once embed is live */
.cal-placeholder {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: 1px dashed rgba(212, 175, 106, 0.22);
  padding: 40px;
}

.cal-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 106, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.cal-note {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
}

.cal-note code {
  font-size: 11px;
  background: rgba(212, 175, 106, 0.10);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--gold);
}

/* Email contact link */
.cta-email-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: rgba(212, 175, 106, 0.06);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  transition: all var(--smooth);
  margin-bottom: 20px;
}

.cta-email-link:hover {
  background: rgba(212, 175, 106, 0.12);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.cta-email-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(212, 175, 106, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-email-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  flex: 1;
}

.cta-email-arrow {
  color: var(--gold);
  opacity: 0.5;
  transition: opacity var(--fast), transform var(--fast);
}

.cta-email-link:hover .cta-email-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ── Contact Form ── */
#contactForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.cf-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-two {
  flex-direction: row;
  gap: 16px;
}

.cf-two .cf-field {
  flex: 1;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

.cf-label span {
  color: var(--gold);
}

.cf-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color var(--fast), background var(--fast);
  width: 100%;
}

.cf-input::placeholder {
  color: #444;
}

.cf-input:focus {
  border-color: var(--gold-border);
  background: rgba(212, 175, 106, 0.04);
}

.cf-input:focus::placeholder {
  color: #555;
}

.cf-textarea {
  resize: vertical;
  min-height: 110px;
}

.cf-submit {
  align-self: flex-start;
  margin-top: 4px;
}

.cf-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Feedback messages */
.cf-feedback {
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  padding: 12px 16px;
  border-radius: 2px;
  line-height: 1.5;
}

.cf-feedback.visible {
  display: flex;
}

.cf-success {
  color: var(--gold);
  background: rgba(212, 175, 106, 0.08);
  border: 1px solid var(--gold-border);
}

.cf-error {
  color: #c97070;
  background: rgba(139, 26, 26, 0.10);
  border: 1px solid rgba(139, 26, 26, 0.30);
}

.cta-access-note {
  font-size: 12px;
  font-weight: 300;
  color: #555;
  line-height: 1.6;
}

.cta-access-note a {
  color: var(--gold);
  opacity: 0.75;
  transition: opacity var(--fast);
}

.cta-access-note a:hover {
  opacity: 1;
}

/* Stack form columns on mobile */
@media (max-width: 600px) {
  .cf-two { flex-direction: column; }
}


/* ============================================================
   12. FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-wrap img {
  height: 30px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}

.footer-tag {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
  max-width: 260px;
}

.footer-tag strong {
  color: var(--gold);
  font-weight: 400;
}

.footer-col-hd {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.40);
  transition: color var(--fast);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bar {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--fast);
}

.footer-legal a:hover {
  color: var(--gold);
}


/* ============================================================
   13. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.08); }
}


/* ============================================================
   14. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }

  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; gap: 48px; }
  .about-sticky    { position: static; }
  .why-hd          { grid-template-columns: 1fr; gap: 24px; }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  :root {
    --pad-x:   20px;
    --sec-pad: 80px 0;
  }

  .nav-links      { display: none; }
  .hamburger      { display: flex; }

  .hero-h1        { font-size: clamp(38px, 11vw, 58px); }
  .hero-btns      { flex-direction: column; align-items: flex-start; }

  .services-grid,
  .team-grid,
  .insight-cards  { grid-template-columns: 1fr; }

  .insights-hd    { grid-template-columns: 1fr; }
  .insights-all   { display: none; }

  .cta-grid       { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr; gap: 36px; }
  .footer-bar     { flex-direction: column; align-items: flex-start; }
  .about-stats    { gap: 16px; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .why-grid        { grid-template-columns: 1fr; }
  .about-stats     { grid-template-columns: repeat(2, 1fr); }
}
