:root {
  --navy: #061e3e;
  --navy-2: #0d315e;
  --gold: #c99b36;
  --gold-light: #f0d68a;
  --ink: #172233;
  --muted: #647084;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: rgba(6, 30, 62, 0.12);
  --gold-line: rgba(201, 155, 54, 0.35);
  --shadow: 0 24px 70px rgba(6, 30, 62, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}
p { margin: 0; }

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .45s ease, visibility .45s ease;
}
.site-loader img {
  width: min(260px, 70vw);
  max-height: 150px;
  object-fit: contain;
  background: var(--white);
  padding: 14px;
  border-radius: 8px;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.navbar {
  width: min(1180px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.05;
}
.brand img {
  width: 104px;
  max-height: 58px;
  object-fit: contain;
}
.brand span { white-space: nowrap; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-weight: 800;
}
.nav-links a {
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  padding: 84px max(24px, calc((100vw - 1180px) / 2)) 76px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 30, 62, .98), rgba(13, 49, 94, .94)),
    radial-gradient(circle at 76% 25%, rgba(240, 214, 138, .35), transparent 32%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -18vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(240, 214, 138, .32);
  border-radius: 50%;
}
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(240, 214, 138, .38);
  border-radius: 50%;
}
.orbit-one { width: 520px; height: 520px; right: 10%; top: 8%; }
.orbit-two { width: 300px; height: 300px; left: 12%; bottom: -80px; }
.signal {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 10px rgba(240, 214, 138, .12);
}
.signal-one { right: 26%; top: 24%; }
.signal-two { right: 35%; bottom: 23%; }
.signal-three { left: 20%; top: 24%; }
.hero-content, .hero-card { position: relative; z-index: 1; }
.section-kicker {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .section-kicker { color: var(--gold-light); }
.hero h1 {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6.4rem);
}
.hero-copy {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}
.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 32px rgba(201, 155, 54, .28);
}
.button-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
}
.hero-card {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.hero-card div {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.hero-card div:last-child { border-bottom: 0; }
.hero-card strong {
  color: var(--gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
}
.hero-card span { font-weight: 800; }

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-heading h2,
.founder-panel h2,
.page-hero h1,
.contact-intro h1,
.cta-section h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
}
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(6, 30, 62, .07);
}
.card-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}
.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}
.info-card p { color: var(--muted); }

.founder-feature {
  display: grid;
  grid-template-columns: minmax(280px, 450px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}
.portrait-frame {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}
.portrait-frame.tall { min-height: 680px; }
.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.founder-panel,
.contact-form {
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.designation {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 800;
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}
.badge-list span {
  padding: 8px 11px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: rgba(201, 155, 54, .08);
  color: var(--navy);
  font-size: .86rem;
  font-weight: 800;
}
.signature-line {
  width: 180px;
  height: 24px;
  margin: 22px 0;
  border-bottom: 2px solid var(--gold);
  border-radius: 50%;
  transform: skewX(-18deg);
}
.founder-panel p + p { margin-top: 14px; }
blockquote {
  margin: 24px 0;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.45;
}

.page-hero {
  padding: 94px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.page-hero h1 {
  max-width: 980px;
  color: var(--white);
}
.page-hero p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
}
.values-section { padding-top: 0; }
.service-detail { padding-bottom: 52px; }
.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 90px;
  padding: 42px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}
.cta-section h2 {
  max-width: 780px;
  color: var(--white);
}

.contact-section {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1fr minmax(320px, 500px);
  gap: 48px;
  align-items: center;
}
.contact-logo {
  width: 230px;
  margin-bottom: 30px;
}
.contact-intro p:not(.section-kicker) {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
}
.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.contact-list p {
  color: var(--navy);
  font-weight: 700;
}
.contact-list strong {
  display: inline-block;
  min-width: 64px;
  color: var(--gold);
}
.contact-form {
  display: grid;
  gap: 16px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  font: inherit;
}
textarea { resize: vertical; }
.form-note {
  color: var(--muted);
  font-size: .9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 28px;
  align-items: start;
  padding: 44px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--navy);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  width: 120px;
  max-height: 72px;
  object-fit: contain;
  background: var(--white);
  padding: 8px;
  border-radius: 6px;
}
.footer-brand h2 {
  color: var(--white);
  font-size: 1.55rem;
}
.footer-brand p,
.footer-contact p {
  color: rgba(255,255,255,.76);
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
  font-weight: 800;
}
.footer-links a { color: var(--gold-light); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 940px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: grid; }
  .hero,
  .founder-feature,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 64px;
  }
  .hero-card { max-width: 470px; }
  .card-grid.three { grid-template-columns: 1fr; }
  .portrait-frame,
  .portrait-frame.tall { min-height: 460px; }
  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .navbar { height: 74px; }
  .brand { font-size: 1.02rem; }
  .brand img { width: 72px; }
  .brand span { white-space: normal; }
  .nav-links { top: 74px; }
  .hero h1 { font-size: 2.75rem; }
  .hero-card div { grid-template-columns: 58px 1fr; }
  .section { padding: 62px 0; }
  .portrait-frame,
  .portrait-frame.tall { min-height: 390px; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
}
