/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --copper:    #C87941;
  --copper-lt: #E09A63;
  --copper-dk: #9A5A28;
  --dark:      #0D0D0D;
  --dark2:     #111111;
  --dark3:     #181818;
  --dark4:     #222222;
  --white:     #F7F4F0;
  --muted:     #9A9080;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --radius:    12px;
}
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
::selection { background: var(--copper); color: #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 2px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NOISE TEXTURE ────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .35;
}

/* ── UTILITY ──────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 100px 0; }
.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(200,121,65,.35);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--copper-lt); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 14px;
  font-weight: 300;
  line-height: 1.8;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dk));
  color: #fff;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(200,121,65,.45);
  color: var(--copper);
}
.btn-outline:hover { background: rgba(200,121,65,.08); border-color: var(--copper); }
.divider {
  width: 48px; height: 3px;
  background: var(--copper);
  border-radius: 2px;
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── REVEAL ANIMATIONS ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--copper); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(13,13,13,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--copper); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  font-size: 1.4rem;
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
}

/* ── PAGE HERO (inner pages) ──────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--dark2);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,121,65,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.page-hero-eyebrow span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--copper-lt); }
.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 540px;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--copper); }
.breadcrumb span { color: var(--copper); }

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(200,121,65,.12) 0%, rgba(154,90,40,.06) 100%);
  border: 1px solid rgba(200,121,65,.2);
  border-radius: 20px;
  padding: 64px;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner h2 em { font-style: italic; color: var(--copper-lt); }
.cta-banner p {
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-nl-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-nl-sub { color: var(--muted); font-size: .82rem; font-weight: 300; }
.footer-nl-form { display: flex; gap: 10px; }
.footer-nl-input {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  padding: 11px 16px;
  border-radius: 6px;
  outline: none;
  width: 240px;
  transition: border-color .2s;
}
.footer-nl-input:focus { border-color: rgba(200,121,65,.5); }
.footer-nl-input::placeholder { color: rgba(154,144,128,.5); }
.footer-nl-btn { padding: 11px 22px; font-size: .85rem; }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  margin: 16px 0 20px;
  max-width: 280px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.footer-reg {
  font-size: .75rem;
  color: rgba(154,144,128,.6);
  font-weight: 300;
  letter-spacing: .04em;
}
.footer-col h5 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 300;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--copper); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { border-color: var(--copper); color: var(--copper); background: rgba(200,121,65,.08); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { color: var(--muted); font-size: .78rem; font-weight: 300; }
.footer-bottom a { color: var(--muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--copper); }
.footer-bottom-badge { font-size: .72rem; color: rgba(154,144,128,.5); font-weight: 300; }

/* ── TEAM CARDS ───────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 920px;
  margin: 0 auto;
}
.team-card {
  /* Subtle copper-tinted card — matches logo palette, not flashy */
  background: linear-gradient(180deg, #1c1208 0%, #181008 60%, #141010 100%);
  border: 1px solid rgba(200,121,65,.22);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
  box-shadow: 0 4px 28px rgba(0,0,0,.45);
}
.team-card:hover {
  border-color: rgba(200,121,65,.48);
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(0,0,0,.55), 0 0 0 1px rgba(200,121,65,.12);
}
.team-photo-wrap {
  position: relative;
  width: 100%;
  /* Warm copper-dark gradient — logo tone, very muted */
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200,121,65,.13) 0%, transparent 70%),
    linear-gradient(175deg, #1a0e06 0%, #120c06 40%, #0e0b08 100%);
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* Subtle hex pattern overlay — echoes the logo shape */
.team-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17' fill='none' stroke='rgba(200%2C121%2C65%2C0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.team-photo {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease);
}
.team-card:hover .team-photo {
  transform: scale(1.03) translateY(-4px);
}
.team-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  /* Fade into the same card background tone */
  background: linear-gradient(to top, #141010 0%, rgba(20,16,16,0) 100%);
  pointer-events: none;
  z-index: 2;
}
.team-photo-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(200,121,65,.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.team-role-badge {
  position: absolute;
  top: 14px; right: 14px;
  /* Matches logo copper, very low opacity background */
  background: rgba(28,18,8,.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,121,65,.38);
  color: var(--copper-lt);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  z-index: 3;
}
/* Copper accent line at top of card */
.team-card::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(200,121,65,.5) 30%,
    rgba(224,154,99,.7) 50%,
    rgba(200,121,65,.5) 70%,
    transparent 100%);
  flex-shrink: 0;
}
.team-info {
  padding: 24px 28px 30px;
  /* Slightly warm card body to continue the copper theme */
  background: linear-gradient(180deg, #141010 0%, #141212 100%);
  position: relative;
  z-index: 1;
}
/* Thin separator between photo and info */
.team-info::before {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,121,65,.2), transparent);
}
.team-name {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.2;
}
.team-title {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 13px;
}
.team-divider {
  width: 36px;
  height: 2px;
  background: rgba(200,121,65,.4);
  border-radius: 2px;
  margin-bottom: 13px;
}
.team-bio {
  color: rgba(247,244,240,.58);
  font-size: .875rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ── PRICING ──────────────────────────────────────── */
.pricing-toggle {
  display: flex;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 5px;
  width: fit-content;
  margin: 0 auto 52px;
}
.pricing-toggle button {
  background: transparent; border: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 28px; border-radius: 5px;
  cursor: pointer; transition: all .25s var(--ease);
}
.pricing-toggle button.active {
  background: linear-gradient(135deg, var(--copper), var(--copper-dk));
  color: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(200,121,65,.3); }
.pricing-card.featured {
  border-color: rgba(200,121,65,.45);
  background: linear-gradient(160deg, rgba(200,121,65,.07) 0%, var(--dark3) 60%);
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--copper), var(--copper-dk));
  color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pricing-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.pricing-desc { color: var(--muted); font-size: .83rem; font-weight: 300; line-height: 1.6; margin-bottom: 24px; }
.pricing-amount { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.pricing-amount span { font-size: 1.1rem; color: var(--copper); vertical-align: top; margin-top: 6px; display: inline-block; }
.pricing-period { font-size: .78rem; color: var(--muted); font-weight: 300; display: block; margin: 6px 0 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0; font-size: .87rem;
  color: rgba(247,244,240,.75); font-weight: 300;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pricing-features li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(200,121,65,.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23C87941' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 10px;
  border: 1px solid rgba(200,121,65,.35);
}
.pricing-cta {
  display: block; text-align: center; padding: 13px;
  border-radius: 6px; font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; transition: all .25s var(--ease);
}
.pricing-cta-outline { border: 1px solid rgba(200,121,65,.4); color: var(--copper); }
.pricing-cta-outline:hover { background: rgba(200,121,65,.08); border-color: var(--copper); }
.pricing-cta-solid { background: linear-gradient(135deg, var(--copper), var(--copper-dk)); color: #fff; }
.pricing-cta-solid:hover { opacity: .88; }
.pricing-panel { display: none; }
.pricing-panel.active { display: block; }

/* ── LEARNING HUB ─────────────────────────────────── */
.hub-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 0 auto 48px; }
.hub-tab {
  background: transparent; border: 1px solid rgba(255,255,255,.1); color: var(--muted);
  font-family: var(--font-body); font-size: .8rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 9px 22px; border-radius: 6px; cursor: pointer; transition: all .25s var(--ease);
}
.hub-tab.active, .hub-tab:hover { border-color: var(--copper); color: var(--copper); background: rgba(200,121,65,.06); }
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.book-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s;
}
.book-card:hover { transform: translateY(-5px); border-color: rgba(200,121,65,.25); }
.book-cover { width: 100%; height: 220px; object-fit: cover; object-position: center top; background: var(--dark4); }
.book-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.book-category-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--copper); margin-bottom: 8px; }
.book-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 4px; line-height: 1.35; }
.book-author { font-size: .78rem; color: var(--muted); font-weight: 300; margin-bottom: 10px; }
.book-desc { font-size: .83rem; color: rgba(247,244,240,.65); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 18px; }
.book-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.book-price { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--copper-lt); }
.book-buy {
  padding: 8px 20px; background: linear-gradient(135deg, var(--copper), var(--copper-dk));
  color: #fff; font-size: .8rem; font-weight: 600; letter-spacing: .05em;
  border-radius: 5px; transition: opacity .2s;
}
.book-buy:hover { opacity: .85; }
.hub-panel { display: none; }
.hub-panel.active { display: block; }

/* ── SERVICES GRID ────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 36px 30px;
  transition: transform .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-dk));
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(200,121,65,.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 1.8rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.75; }

/* ── WHY CARDS ────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 32px 28px;
  transition: border-color .3s, transform .3s var(--ease);
}
.why-card:hover { border-color: rgba(200,121,65,.25); transform: translateY(-4px); }
.why-card-icon { font-size: 1.5rem; margin-bottom: 16px; }
.why-card h4 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--muted); font-size: .85rem; font-weight: 300; line-height: 1.75; }

/* ── PROCESS ──────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-step { text-align: center; padding: 32px 20px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(200,121,65,.1); border: 1px solid rgba(200,121,65,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--copper);
  margin: 0 auto 20px;
}
.process-step h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: .83rem; font-weight: 300; line-height: 1.75; }

/* ── CONTACT FORM ─────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.contact-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(200,121,65,.1); border: 1px solid rgba(200,121,65,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-card h4 { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.contact-card p, .contact-card a { color: var(--white); font-size: .9rem; font-weight: 300; line-height: 1.6; }
.contact-card a:hover { color: var(--copper); }
.contact-form-box {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; padding: 40px 36px;
}
.contact-form-box h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--dark4); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-family: var(--font-body); font-size: .9rem;
  padding: 12px 14px; border-radius: 8px; outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,144,128,.45); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: rgba(200,121,65,.5); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--dark4); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,121,65,.1); border: 1px solid rgba(200,121,65,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 20px;
}
.form-success h4 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.form-success h4 em { font-style: italic; color: var(--copper-lt); }
.form-success p { color: var(--muted); font-weight: 300; line-height: 1.8; margin-bottom: 24px; }

/* ── ABOUT PAGE ───────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story-text .section-sub { max-width: none; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 28px 24px;
}
.value-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 700; color: rgba(200,121,65,.25); line-height: 1; margin-bottom: 12px; }
.value-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .83rem; font-weight: 300; line-height: 1.75; }
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--dark3); border: 1px solid rgba(255,255,255,.07); border-radius: 16px;
  overflow: hidden; margin: 60px 0 0;
}
.stat-item { padding: 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.stat-item:last-child { border-right: none; }
.stat-n { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--copper-lt); margin-bottom: 6px; }
.stat-l { font-size: .78rem; font-weight: 300; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media(max-width:1024px){
  .services-grid, .hub-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .about-story { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media(max-width:820px){
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 72px 0; }
  .team-grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { flex-direction: column; padding: 28px 24px; }
  .footer-nl-form { width: 100%; }
  .footer-nl-input { flex: 1; width: auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .cta-banner { padding: 40px 28px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .stat-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 22px; }
}
@media(max-width:560px){
  .services-grid, .hub-grid, .why-grid, .value-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 60px; }
}