:root {
  --bg: #091015;
  --bg-soft: #101a21;
  --panel: rgba(9, 17, 24, 0.74);
  --text: #f5f0e7;
  --muted: #d2bf9a;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #c79643;
  --accent-deep: #77501a;
  --paper: #f3ede2;
  --ink: #162029;
  --max-width: 1140px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(7, 9, 13, 0.84), rgba(7, 9, 13, 0));
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: 0.04em;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-lockup img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.brand-lockup span {
  display: inline-block;
  max-width: 12ch;
  line-height: 0.9;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-nav a {
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
  color: #f0d5a0;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 0.65rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(10, 14, 19, 0.35), rgba(10, 14, 19, 0.68)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/ZK-MOT_Cessna_510_Citation_Mustang_Acernus_Aero_(6486132707).jpg")
      center center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(199, 150, 67, 0.28), transparent 28%),
    linear-gradient(to top, rgba(9, 16, 21, 0.92), rgba(9, 16, 21, 0.12) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 3.5rem;
  max-width: 44rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: inherit;
}

h3 {
  font-size: 1.55rem;
}

.hero-copy,
.body-copy,
.service-card p,
.image-break-copy p,
.cta p,
.site-footer p {
  line-height: 1.7;
  font-size: 1rem;
}

.hero-copy {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: rgba(244, 239, 231, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.button-primary {
  color: #16110a;
  background: linear-gradient(135deg, #edc779, var(--accent));
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(199, 150, 67, 0.16), transparent 30%),
    linear-gradient(180deg, #091015, #13212c);
}

.about-profile {
  position: relative;
}

.about-profile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(99, 220, 226, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.about-profile .container {
  position: relative;
  z-index: 1;
}

.about-profile-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.about-profile-line {
  width: 5.5rem;
  height: 0.28rem;
  margin-top: 0.8rem;
  background: #79e8ea;
  border-radius: 999px;
}

.about-profile-header .eyebrow {
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: "Barlow", sans-serif;
}

.about-profile h2 {
  margin-top: 1.5rem;
  font-family: "Barlow", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #79e8ea;
}

.about-profile-role {
  margin: 0.75rem 0 0;
  color: rgba(245, 240, 231, 0.82);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-profile-body {
  max-width: 50rem;
  margin-top: 3rem;
  color: rgba(245, 240, 231, 0.88);
}

.about-profile-body p {
  margin: 0 0 1.25rem;
  font-size: 1.08rem;
}

.about-profile-list {
  margin: 1.75rem 0 0;
  padding-left: 1.4rem;
  color: rgba(245, 240, 231, 0.92);
}

.about-profile-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.two-column {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
}

.section-heading {
  max-width: 18ch;
  margin-bottom: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

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

.cta {
  background:
    linear-gradient(180deg, rgba(9, 16, 21, 0.9), rgba(9, 16, 21, 0.98)),
    url("https://images.unsplash.com/photo-1517479149777-5f3b1511d5ad?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
}

.contact-shell {
  max-width: 46rem;
}

.contact-copy {
  padding: 2.5rem 0;
}

.contact-details {
  margin-top: 1.25rem;
  line-height: 1.9;
}

.contact-details a,
.contact-details span {
  color: #f0d5a0;
}

.site-footer {
  padding: 1.5rem 0 2rem;
  background: #090c11;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    display: none;
    flex-direction: column;
    min-width: 12rem;
    padding: 1rem;
    background: rgba(9, 13, 19, 0.96);
    border: 1px solid var(--line);
  }

  .brand-lockup span {
    max-width: 9ch;
    font-size: 1.3rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .two-column,
  .card-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .about-profile-header {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-profile-line {
    margin-top: 0;
  }

  .hero-content {
    padding-top: 7.5rem;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .about-profile-body {
    margin-top: 2rem;
  }
}
