/* =========================
   BASE STYLES
========================= */

:root {
  --navy: #071a33;
  --navy-light: #102b4e;
  --gold: #c89b3c;
  --gold-light: #e8c875;
  --cream: #f7f3ea;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #64748b;
  --border: #e5e7eb;
  --shadow: 0 20px 50px rgba(7, 26, 51, 0.12);
  --radius: 20px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  color: var(--navy);
}

p {
  margin-bottom: 18px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

section {
  padding: 90px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* =========================
   HEADER AND NAVIGATION
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.72rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  padding: 110px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(200, 155, 60, 0.22), transparent 28%),
    linear-gradient(135deg, #06172d 0%, #0d2d52 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-copy > p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: var(--white);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

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

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-row div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.trust-row span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-card {
  padding: 42px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card img {
  width: 170px;
  margin: 0 auto 30px;
}

.hero-card blockquote {
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  line-height: 1.5;
}

.founder-tag {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.founder-tag strong,
.founder-tag span {
  display: block;
}

.founder-tag strong {
  color: var(--gold-light);
}

.founder-tag span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
}

/* =========================
   MISSION SECTION
========================= */

.mission {
  background: var(--white);
}

.mission:nth-of-type(even) {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 70px;
}

.split h2 {
  max-width: 520px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.mission-copy {
  color: #475569;
  font-size: 1.02rem;
}

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

/* =========================
   FOUNDER SECTION
========================= */

#team {
  background:
    linear-gradient(rgba(247, 243, 234, 0.95), rgba(247, 243, 234, 0.95)),
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.18), transparent 35%);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  align-items: center;
  gap: 70px;
  width: 100%;
}

.founder-photo {
  position: relative;
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: 0;
  border: 2px solid var(--gold);
  border-radius: 24px;
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.founder-content {
  max-width: 670px;
}

.founder-content h2 {
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.founder-content h3 {
  margin-bottom: 4px;
  font-size: 1.55rem;
}

.founder-title {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-weight: 700;
}

.founder-content p {
  color: #475569;
  font-size: 1.05rem;
}

/* =========================
   SERVICES SECTION
========================= */

.services {
  background: var(--white);
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  padding: 34px;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 155, 60, 0.45);
  box-shadow: var(--shadow);
}

.service-card .icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
   APPROACH SECTION
========================= */

.approach {
  color: var(--white);
  background: var(--navy);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: start;
  gap: 70px;
}

.approach h2,
.approach h3 {
  color: var(--white);
}

.approach-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.approach-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.approach-panel ul {
  margin-top: 28px;
  list-style: none;
}

.approach-panel li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.approach-panel li span {
  color: var(--gold-light);
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.step > strong {
  display: flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--gold-light);
  border-radius: 50%;
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* =========================
   CALL TO ACTION
========================= */

.cta {
  background: linear-gradient(135deg, var(--gold) 0%, #e4c36d 100%);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta h2 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.cta p {
  max-width: 760px;
  color: rgba(7, 26, 51, 0.82);
}

.btn-light {
  flex-shrink: 0;
  color: var(--white);
  background: var(--navy);
}

.btn-light:hover {
  background: var(--navy-light);
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 54px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: #041225;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 68px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand span {
  font-size: 0.8rem;
}

.footer-social {
  text-align: right;
}

.footer-social h4 {
  margin-bottom: 8px;
  color: var(--white);
}

.footer-social a {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-social a:hover {
  color: var(--white);
}

.disclaimer,
.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8rem;
}

.disclaimer {
  max-width: 900px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
}

/* =========================
   TABLET RESPONSIVE STYLES
========================= */

@media (max-width: 980px) {
  nav {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 11px 8px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .split,
  .founder-layout,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-card {
    max-width: 620px;
  }

  .split {
    gap: 34px;
  }

  .founder-layout {
    gap: 50px;
  }

  .founder-photo {
    width: min(100%, 500px);
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-social {
    text-align: left;
  }
}

/* =========================
   MOBILE RESPONSIVE STYLES
========================= */

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  section {
    padding: 68px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-sub {
    display: none;
  }

  nav {
    top: 74px;
  }

  .hero {
    padding: 82px 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .hero-card {
    padding: 30px 22px;
  }

  .hero-card img {
    width: 135px;
  }

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

  .service-card {
    padding: 28px 24px;
  }

  .founder-layout {
    text-align: center;
  }

  .founder-photo {
    width: calc(100% - 20px);
    margin: 0 auto;
  }

  .founder-photo::before {
    inset: 12px -12px -12px 12px;
  }

  .founder-content {
    text-align: left;
  }

  .founder-content .eyebrow,
  .founder-content h2,
  .founder-content h3,
  .founder-title {
    text-align: center;
  }

  .step {
    padding: 20px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}