/* ===========================
   Two Keys Group — styles.css
   =========================== */

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

:root {
  --navy: #1a1a2e;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --white: #ffffff;
  --off-white: #fafafa;
  --text: #1a1a1a;
  --text-muted: #5a5a6a;
  --border: #e8e4dc;
  --section-bg: #f5f3ef;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'Lato', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-light);
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

/* --- Layout Utilities --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--section-bg);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav--scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  padding: 0.75rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.nav__logo:hover {
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
}

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

.nav__links .btn {
  padding: 0.55rem 1.4rem;
  font-size: 0.82rem;
}

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

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

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

/* Mobile nav */
@media (max-width: 768px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem;
    gap: 1.8rem;
    transition: right 0.35s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,0.3);
  }

  .nav__links.open {
    right: 0;
  }

  .nav__links a {
    font-size: 1rem;
  }
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f20 0%, #1a1a2e 55%, #22223f 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 7rem 0 5rem;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

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

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===========================
   INTRO / ABOUT TEASER
   =========================== */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro__visual {
  position: relative;
}

.intro__image-placeholder {
  aspect-ratio: 4/5;
  position: relative;
}

.intro__image-placeholder::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: -1.2rem;
  bottom: -1.2rem;
  border: 2px solid var(--gold);
  opacity: 0.3;
  border-radius: 4px;
  z-index: 0;
}

.intro__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  display: block;
}

.key-icon {
  width: 80px;
  height: 80px;
  opacity: 0.15;
}

.intro__text .section-intro {
  margin-bottom: 1.8rem;
}

.intro__stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.intro__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.intro__stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .intro__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro__image-placeholder {
    aspect-ratio: 16/7;
  }
}

/* ===========================
   COMPANIES
   =========================== */
.companies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.company-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.company-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.12);
}

.company-card:hover::before {
  transform: scaleX(1);
}

.company-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), #2a2a4a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.company-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.company-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

.company-card h3 {
  margin-bottom: 0.75rem;
}

.company-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.company-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.company-card__link:hover {
  color: var(--gold);
  gap: 0.7rem;
}

.company-card__link svg {
  width: 14px;
  height: 14px;
}

/* ===========================
   VALUES
   =========================== */
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.value-card__num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   CTA BAND
   =========================== */
.cta-band {
  background: linear-gradient(135deg, #0f0f20 0%, #1a1a2e 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: #0d0d1a;
  color: rgba(255,255,255,0.5);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

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

.footer__text {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.82rem;
}

.footer__links a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}

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

@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: linear-gradient(135deg, #0f0f20 0%, #1a1a2e 55%, #22223f 100%);
  padding: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

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

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ===========================
   COMPANIES — FEATURED CARD
   =========================== */
.company-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.company-feature__image-box {
  aspect-ratio: 4/5;
  position: relative;
}

.company-feature__image-box::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: -1.2rem;
  bottom: -1.2rem;
  border: 2px solid var(--gold);
  opacity: 0.3;
  border-radius: 4px;
  z-index: 0;
}

.company-feature__image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy), #2a2a4a);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.company-feature__image-inner svg {
  width: 100px;
  height: 100px;
  color: var(--gold);
  opacity: 0.15;
}

.company-feature__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.company-feature__status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

.company-feature__status--soon {
  color: var(--navy);
  background: rgba(201,168,76,0.25);
  border: 1px solid rgba(201,168,76,0.4);
}

.company-feature__status--live {
  color: #166534;
  background: rgba(22,163,74,0.1);
  border: 1px solid rgba(22,163,74,0.3);
}

.company-feature h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.company-feature h2 em {
  font-style: italic;
  color: var(--gold);
}

.company-feature__desc {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.company-feature__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
  padding: 1.8rem;
  background: var(--section-bg);
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}

.company-feature__highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.company-feature__highlight-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.company-feature__highlight-icon svg {
  width: 20px;
  height: 20px;
}

.company-feature__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.company-feature__website {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.company-feature__website svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .company-feature {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .company-feature__image-box {
    aspect-ratio: 16/7;
  }
}

/* ===========================
   COMPANIES — DIVIDER
   =========================== */
.companies-divider {
  padding: 0;
}

.companies-divider__line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ===========================
   COMPANIES — COMING SOON GRID
   =========================== */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.coming-soon-card {
  background: var(--white);
  border: 2px dashed var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  transition: border-color 0.25s ease;
}

.coming-soon-card:hover {
  border-color: rgba(201,168,76,0.4);
}

.coming-soon-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.coming-soon-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  opacity: 0.6;
}

.coming-soon-card h3 {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.coming-soon-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===========================
   ABOUT — STORY
   =========================== */
.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.story__body p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.story__body p:last-child {
  margin-bottom: 0;
}

.story__pull {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

.story__image-wrap {
  position: sticky;
  top: 6rem;
}

.story__image-box {
  aspect-ratio: 4/5;
  position: relative;
}

.story__image-box::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  right: -1.2rem;
  bottom: -1.2rem;
  border: 2px solid var(--gold);
  opacity: 0.3;
  border-radius: 4px;
  z-index: 0;
}

.story__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  display: block;
}

.story__image-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 860px) {
  .story__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story__image-wrap {
    position: static;
    order: -1;
  }
  .story__image-box {
    aspect-ratio: 16/7;
  }
}

/* ===========================
   ABOUT — FOUNDERS
   =========================== */
.founders__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.12);
}

.founder-card:hover::before {
  transform: scaleX(1);
}

.founder-card__photo {
  aspect-ratio: 3/2;
  background: linear-gradient(145deg, var(--navy), #2a2a4a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-card__photo-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 700;
}

.founder-card__body {
  padding: 2rem;
}

.founder-card__role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.founder-card__body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.founder-card__body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

@media (max-width: 640px) {
  .founders__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   ABOUT — MISSION BAND
   =========================== */
.mission-band {
  background: linear-gradient(135deg, #0f0f20 0%, #1a1a2e 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mission-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
}

.mission-band .container {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.mission-band .section-label {
  display: block;
  margin-bottom: 1rem;
}

.mission-band h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.mission-band p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 600px;
  margin: 0 auto;
}

.mission-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}

.mission-divider::before,
.mission-divider::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.mission-divider span {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===========================
   CONTACT — LAYOUT
   =========================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}

.contact__form-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* ===========================
   CONTACT — FORM
   =========================== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

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

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

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

.form-input {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: #b0adb8;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input--error {
  border-color: #dc2626;
}

.form-input--error:focus {
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235a5a6a' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.form-error {
  font-size: 0.78rem;
  color: #dc2626;
  min-height: 1em;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
}

.form-submit svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.form-submit:hover svg {
  transform: translateX(3px);
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(201,168,76,0.08);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.form-success svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================
   CONTACT — INFO SIDEBAR
   =========================== */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 6rem;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-card:first-child {
  border-top: 1px solid var(--border);
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy), #2a2a4a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card__icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.contact-info-card h3 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-info-card p a {
  color: var(--gold);
  font-weight: 500;
}

.contact-info-divider {
  height: 2rem;
}

.contact__company-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact__company-link:hover {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 6px 20px rgba(26,26,46,0.08);
  transform: translateY(-2px);
  color: var(--text);
}

.contact__company-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--navy), #2a2a4a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__company-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.contact__company-link strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact__company-link span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.contact__company-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact__company-link:hover .contact__company-arrow {
  transform: translateX(3px);
  color: var(--gold);
}

/* ===========================
   FADE-IN ANIMATIONS
   =========================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
