:root {
  --ink: #151515;
  --muted: #686b70;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: rgba(21, 21, 21, 0.13);
  --charcoal: #1f2326;
  --teal: #0f6f74;
  --teal-dark: #0a4d52;
  --gold: #b48947;
  --sky: #dbe8ec;
  --shadow: 0 24px 80px rgba(20, 20, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: #fff;
  background: rgba(31, 35, 38, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.brand,
.desktop-nav,
.nav-action,
.menu-toggle {
  align-items: center;
  display: flex;
}

.brand {
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(180, 137, 71, 0.76);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark svg,
.hero-logo svg {
  width: 72%;
  height: 72%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.desktop-nav {
  gap: clamp(14px, 2vw, 28px);
  justify-content: center;
  font-size: 0.94rem;
  font-weight: 600;
  flex-wrap: wrap;
}

.desktop-nav a,
.nav-action,
.menu-toggle {
  opacity: 0.92;
}

.nav-action,
.menu-toggle {
  justify-self: end;
  min-height: 42px;
  background: transparent;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 68px 16px auto;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(31, 35, 38, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 16px;
  color: #fff;
  font-weight: 800;
}

.mobile-nav a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 11, 12, 0.86) 0%, rgba(8, 11, 12, 0.58) 38%, rgba(8, 11, 12, 0.1) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

.hero-logo {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(180, 137, 71, 0.64);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(7, 10, 11, 0.38);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.7rem, 11vw, 9.8rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.015em;
}

.hero-copy {
  width: min(580px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions,
.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 800;
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  color: #fff;
}

.button.dark {
  background: var(--charcoal);
  color: #fff;
}

.hero-strip {
  position: absolute;
  inset: auto clamp(18px, 4vw, 54px) 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
}

.hero-strip span {
  padding: 18px;
  background: rgba(7, 10, 11, 0.42);
  font-weight: 700;
  text-align: center;
}

.booking-band,
.fleet-band,
.service-band {
  scroll-margin-top: 86px;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2,
.service-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
  gap: 22px;
  align-items: start;
}

.booking-form,
.quote-panel,
.fleet-card,
.service-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 40px rgba(20, 20, 20, 0.06);
}

.booking-form {
  padding: clamp(18px, 3vw, 30px);
}

.segmented {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eee9df;
}

.segmented input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.segmented span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 800;
}

.segmented input:checked + span {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hidden-field {
  display: none;
}

.form-grid.compact {
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.city-search {
  position: relative;
}

.field.full {
  margin-top: 16px;
}

.field span,
.panel-label,
.quote-list dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 12px 14px;
  outline: 0;
}

.field input[type="date"],
.field input[type="time"] {
  min-width: 0;
  line-height: 1.2;
}

.field input[type="date"]::-webkit-date-and-time-value,
.field input[type="time"]::-webkit-date-and-time-value {
  min-height: 24px;
  text-align: left;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 111, 116, 0.14);
}

.city-results {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 12;
  display: none;
  max-height: 240px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.16);
}

.city-results.open {
  display: block;
}

.city-option {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
}

.city-option:hover,
.city-option:focus {
  background: #eef6f6;
  outline: 0;
}

.city-option:last-child {
  border-bottom: 0;
}

.conditional-panel {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  padding: 18px;
}

.conditional-panel.hidden {
  display: none;
}

.panel-heading {
  display: grid;
  gap: 5px;
}

.panel-heading strong {
  font-size: 1.05rem;
}

.panel-heading span {
  color: var(--muted);
  line-height: 1.5;
}

.leg-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.leg-row {
  display: grid;
  grid-template-columns: 72px repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.leg-number {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  color: var(--teal-dark);
  font-weight: 900;
}

.leg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.leg-button {
  min-height: 42px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.leg-button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.leg-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.form-footer {
  justify-content: space-between;
  margin-top: 20px;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--teal);
}

.quote-panel {
  position: sticky;
  top: 92px;
  padding: 26px;
  color: #fff;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.quote-panel strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.quote-panel > div > span,
.fine-print {
  color: rgba(255, 255, 255, 0.68);
}

.quote-list {
  display: grid;
  gap: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  overflow: hidden;
}

.quote-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  background: var(--charcoal);
}

.quote-list dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.fine-print {
  margin: 0;
  line-height: 1.6;
  font-size: 0.88rem;
}

.fleet-band {
  background: var(--sky);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fleet-card {
  min-height: 430px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.fleet-card.featured {
  border-color: rgba(15, 111, 116, 0.45);
  box-shadow: 0 22px 60px rgba(15, 111, 116, 0.2);
}

.jet-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.fleet-card h3 {
  margin: 22px 0 10px;
  font-size: 1.35rem;
}

.fleet-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.aircraft-examples {
  margin-top: 18px;
}

.aircraft-examples span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.aircraft-examples p {
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.jet-specs {
  display: grid;
  gap: 1px;
  margin-top: auto;
  padding-top: 18px;
}

.jet-specs div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 9px 0;
}

.jet-specs dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jet-specs dd {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
  text-align: right;
}

.fleet-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(21, 21, 21, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}

.service-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-list div {
  padding: 22px;
}

.service-list span {
  color: var(--gold);
  font-weight: 900;
}

.service-list strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 1.18rem;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.74);
}

.site-footer span:first-child {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.about-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px clamp(18px, 7vw, 92px) 72px;
}

.service-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 120px clamp(18px, 7vw, 92px) 72px;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.service-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.about-hero h1,
.consulting-band h2,
.about-band h2,
.about-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.service-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 6.8vw, 6.7rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.015em;
  overflow-wrap: anywhere;
}

.about-hero p:not(.eyebrow),
.service-hero p:not(.eyebrow),
.about-cta p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
  line-height: 1.75;
}

.about-band,
.values-band,
.consulting-band,
.consulting-points,
.about-cta {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 4vw, 54px);
}

.about-grid,
.consulting-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.values-band {
  background: var(--sky);
}

.consulting-points {
  background: var(--sky);
}

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

.values-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(20, 20, 20, 0.06);
}

.values-grid span {
  color: var(--gold);
  font-weight: 900;
}

.values-grid h3 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-cta {
  background: var(--charcoal);
  color: #fff;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  background: var(--charcoal);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fff;
  box-shadow: var(--shadow);
  transform: translateY(130%);
  transition: transform 220ms ease;
}

.toast.show {
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 13, 0.68);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(24px, 5vw, 36px);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.8rem);
  line-height: 1;
}

.modal-card p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fbfaf7;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.contact-details {
  display: grid;
  gap: 1px;
  margin: 24px 0 0;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.contact-details div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: #fbfaf7;
  padding: 14px;
}

.contact-details dt {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-details dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

body.modal-lock {
  overflow: hidden;
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .booking-layout,
  .service-band,
  .about-grid,
  .consulting-grid {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    position: static;
  }

  .fleet-grid,
  .service-list,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    max-width: none;
    font-size: 1.18rem;
    line-height: 1.1;
  }

  .nav-action {
    min-height: 38px;
    padding: 0 12px;
  }

  .menu-toggle {
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 94vh;
    align-items: flex-start;
    padding-top: 118px;
  }

  .hero-content {
    margin: 0 18px;
    padding-top: 0;
  }

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

  .hero-strip {
    grid-template-columns: 1fr;
    bottom: 14px;
  }

  .hero-strip span {
    padding: 11px 12px;
    text-align: left;
  }

  .form-grid,
  .contact-grid,
  .segmented,
  .fleet-grid,
  .service-list,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 54px;
    font-size: 1rem;
    padding: 14px 13px;
  }

  .field input[type="date"],
  .field input[type="time"] {
    display: block;
    height: 54px;
    line-height: 1.2;
  }

  .field input[type="date"]::-webkit-calendar-picker-indicator,
  .field input[type="time"]::-webkit-calendar-picker-indicator {
    margin-left: 8px;
    opacity: 0.72;
  }

  .about-hero h1,
  .service-hero h1,
  .consulting-band h2,
  .about-band h2,
  .about-cta h2 {
    font-size: 3.3rem;
    line-height: 1;
  }

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

  .leg-number {
    min-height: auto;
  }

  .form-footer,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
