@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');
:root {
  --bg-deep: #03070d;
  --bg-navy: #09101a;
  --navy-light: #121c2d;
  --steel: #9ba6b5;
  --silver: #e2e8f0;
  --white: #ffffff;
  --accent: #5c708a;
  --line: rgba(255, 255, 255, 0.06);
  --soft-line: rgba(15, 23, 42, 0.08);
  --text-dark: #0f172a;
  --muted-dark: #475569;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--silver);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 5.5%;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(3, 7, 13, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 72px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.link {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: var(--transition);
}

.link:hover,
.link.active {
  color: var(--white);
}

.btn-outline,
.btn-solid,
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: var(--transition);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 0.92rem 1.55rem;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--bg-deep);
}

.btn-solid,
.linkedin-btn {
  background: var(--white);
  color: var(--bg-deep);
  border: 1px solid var(--white);
  padding: 1rem 1.8rem;
}

.btn-solid:hover,
.linkedin-btn:hover {
  background: transparent;
  color: var(--white);
}

.note-block {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.note-block .eyebrow {
  margin-bottom: 1.25rem;
}

.note-block blockquote {
  margin-top: 1.0rem;
}

.note-block p {
  margin-top: 1.2rem;
}

.note-btn {
  margin-top: 1.75rem;
}
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: white;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-footer {
  background: var(--bg-deep);
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 1.25rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.75rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 0.9rem;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
}

.footer-links-group {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5rem;
}

.footer-col-title {
  display: inline-block;
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  margin-bottom: 1rem;
  opacity: 0.82;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-list a {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.7;
  transition: var(--transition);
}

.footer-list a:hover {
  color: var(--white);
}

.footer-copy {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 440px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: #64748b;
  letter-spacing: 0.04em;
}
.page-hero {
  padding: 6.5rem 0 7.5rem;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-navy));
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.about-hero-inner {
  text-align: left;
  max-width: 820px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 620px;
  margin-top: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.95;
  color: #93a4b8;
}
.page-hero {
  padding: 6rem 0 7rem;
}

.section-padding {
  padding: 7.5rem 0;
}

.about-content-grid {
  gap: 3.2rem;
}

.about-copy p,
.principle-card p {
  margin-bottom: 1.2rem;
}

.about-copy p:last-child,
.principle-card p:last-child {
  margin-bottom: 0;
}

.note-block {
  max-width: 860px;
}
.about-content-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.about-label span {
  padding-top: 0.35rem;
}

.about-copy h2 {
  max-width: 920px;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.45;
}

.about-copy p {
  max-width: 900px;
  font-size: 0.99rem;
  line-height: 1.95;
  margin-bottom: 1.25rem;
}

.principles-intro {
  margin-bottom: 2rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.5rem;
}

.principle-card {
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.principle-number {
  opacity: 0.9;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.principle-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.75rem;
}

.principle-card p {
  max-width: 520px;
  line-height: 1.9;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.metric-card {
  padding-top: 1rem;
}

.metric-value {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}
:root {
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;

  --text-xs: 0.72rem;
  --text-sm: 0.82rem;
  --text-md: 0.95rem;
  --text-base: 1rem;
  --text-lg: 1.1rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.6rem;
  --text-3xl: 2.1rem;
  --text-4xl: 2.9rem;
  --text-5xl: 4rem;

  --lh-tight: 1.05;
  --lh-snug: 1.25;
  --lh-base: 1.7;
  --lh-relaxed: 1.9;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--lh-base);
}

.eyebrow,
.link,
.btn-outline,
.btn-solid,
.linkedin-btn,
.service-link,
.footer-col-title,
.metric-label,
.principle-number,
.note-block p,
.footer-bottom {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: var(--lh-tight);
}

.hero-copy h1 {
  font-size: clamp(2.85rem, 4vw, var(--text-5xl));
  max-width: 640px;
}

.page-hero h1 {
  font-size: clamp(2.95rem, 5vw, 4.6rem);
  max-width: 760px;
}

.hero-copy p,
.page-hero p,
.about-copy p,
.section-desc,
.service-card p,
.standard-card p,
.principle-card p,
.note-block blockquote,
.footer-tagline,
.footer-copy,
.info-block p,
.form-disclaimer {
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
}

.about-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, var(--text-2xl));
  line-height: 1.42;
  font-weight: 400;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, var(--text-3xl));
  line-height: 1.1;
  font-weight: 400;
}

.service-card h3,
.standard-card h3,
.principle-card h3,
.info-heading,
.form-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: var(--lh-snug);
}

.service-card h3,
.standard-card h3 {
  font-size: var(--text-xl);
}

.principle-card h3 {
  font-size: var(--text-lg);
}

.note-block blockquote {
  max-width: 920px;
  font-size: clamp(1.4rem, 2vw, 1.95rem);
  line-height: 1.45;
  font-style: italic;
}

.metric-value {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
  line-height: 1;
}


.note-block {
  max-width: 840px;
}

.note-block blockquote {
  font-size: clamp(1.85rem, 2.3vw, 2.0rem);
  max-width: 760px;
}

.note-block p {
  margin-top: 1rem;
}

.note-btn {
  margin-top: 1.5rem;
}

.site-footer {
  padding: 3.75rem 0 1.1rem;
}

.footer-top {
  padding-bottom: 2.25rem;
}

.footer-tagline,
.footer-copy,
.footer-list a {
  font-size: 0.94rem;
}

.footer-bottom {
  padding-top: 1rem;
}

@media (max-width: 992px) {
  .footer-top,
  .footer-links-group {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-brand {
    max-width: none;
  }
}

.mobile-toggle span {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
}

.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.mobile-toggle span::before { top: -6px; }
.mobile-toggle span::after { top: 6px; }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(3,7,13,0.98);
  padding: 7rem 0 2rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-links {
  display: grid;
  gap: 1rem;
}

.mobile-menu-links a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel);
}

.mobile-menu-links a.active,
.mobile-menu-links a:hover {
  color: var(--white);
}

.hero-split {
  min-height: 100vh;
  padding-top: 6rem;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 6rem);
}

.hero-copy {
  max-width: 640px;
  text-align: left;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  margin-bottom: 1.35rem;
  display: block;
  font-weight: 600;
}

.hero-copy h1,
.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.85rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 640px;
}

.hero-copy p {
  color: var(--steel);
  font-size: 1.06rem;
  line-height: 1.95;
  font-weight: 300;
  max-width: 560px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  min-height: 640px;
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.06);
  background: #050910;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3,7,13,0.06) 0%,
    rgba(3,7,13,0.18) 35%,
    rgba(3,7,13,0.45) 100%
  );
  z-index: 1;
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,7,13,0.06) 0%, rgba(3,7,13,0.2) 38%, rgba(3,7,13,0.45) 100%);
}

.section-light {
  background: var(--white);
  color: var(--text-dark);
}

.section-dark {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.section-padding {
  padding: 8rem 0;
}

.section-head {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.1rem;
}

.section-title.white {
  color: var(--white);
}

.section-desc {
  max-width: 920px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
}

.service-grid,
.standard-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.8rem;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.standard-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.standard-card {
  padding: 2.5rem 2.2rem;
  transition: var(--transition);
}

.service-card {
  background: #fbfbfb;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-top: 1px solid var(--accent);
}

.standard-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.service-card:hover,
.standard-card:hover {
  transform: translateY(-6px);
}

.service-kicker {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card h3,
.standard-card h3 {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--text-dark);
}

.standard-card h3 {
  color: var(--white);
}

.service-card p,
.standard-card p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.9;
}

.service-card p {
  color: #4a5568;
}

.standard-card p {
  color: var(--steel);
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--bg-deep);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.25rem;
}

.service-link:hover {
  color: var(--accent);
}

.cta-block,
.careers-wrapper {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.cta-wrap,
.career-button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.careers-wrapper p {
  color: var(--steel);
  font-size: 1.06rem;
  line-height: 1.9;
  font-weight: 300;
}

.contact-grid,
.form-row {
  display: grid;
  gap: 1.2rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.contact-image {
  height: 260px;
  background-image: url('assets/your-luxury-office.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.contact-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,7,13,0.12), rgba(3,7,13,0.55));
}

.interview-grid,
.form-row {
  display: grid;
  gap: 1.2rem;
}

.interview-grid {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 1.5rem;
}

.interview-image {
  height: 260px;
  background-image: url('assets/interview_image.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.interview-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,7,13,0.12), rgba(3,7,13,0.55));
}
.info-block {
  padding: 1.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}

.info-heading,
.form-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.12rem;
  margin-bottom: 1rem;
}

.info-heading svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.info-block p,
.form-disclaimer {
  color: var(--steel);
  font-size: 0.98rem;
  line-height: 1.9;
  font-weight: 300;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--steel);
  font-weight: 300;
}

.info-list li::before {
  content: '— ';
  color: var(--accent);
}

.elite-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.2rem;
  text-align: left;
}

.form-row {
  grid-template-columns: 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(226,232,240,0.45);
}

.form-group select option {
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}

.btn-submit {
  background: transparent;
  color: var(--white);
  padding: 1rem 1.6rem;
  border: 1px solid #000000; /* Solid black border */
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  width: fit-content;
}

.btn-submit:hover {
  background: #1a202c;
}

.form-disclaimer {
  margin-top: 0.5rem;
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .contact-grid,
  .service-grid,
  .standard-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-split {
    padding-top: 5.5rem;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }

  .section-padding {
    padding: 6.5rem 0;
  }
}
.section-light.section-padding {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.about-content-grid {
  gap: 2.2rem;
  align-items: start;
}

.about-label,
.principles-intro {
  display: flex;
  align-items: flex-start;
}

.about-label span,
.section-label span,
.principles-intro span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #94a3b8;
  border-top: 1px solid rgba(15, 23, 42, 0.18);
  padding-top: 0.35rem;
}

.about-copy h2 {
  margin-bottom: 1.1rem;
}

.about-copy p {
  margin-bottom: 1rem;
}

.principles-intro {
  margin-bottom: 1.5rem;
}

.principles-grid {
  gap: 1.5rem 2.4rem;
}

.principle-card {
  padding-top: 0.9rem;
}

.principle-card h3 {
  margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
  .hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.95rem, 4.3vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.8rem;
  max-width: 680px;
  }

  .logo img {
    height: 60px;
  }

  .service-card,
  .standard-card {
    padding: 2rem;
  }
}

@media (max-width: 560px) {
  .btn-solid,
  .btn-outline,
  .linkedin-btn {
    width: 100%;
    justify-content: center;
  }
}