/* ─────────────────────────────────────────────────────
   COAST AIR CENTER — HOMEPAGE
   Palette: #111110 dark · #1A1916 charcoal · #F4F1EB cream
            #FAFAF8 offwhite · #C9A96E gold
───────────────────────────────────────────────────── */

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

:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark:  #8A6F3E;
  --dark:       #111110;
  --charcoal:   #1A1916;
  --cream:      #F4F1EB;
  --offwhite:   #FAFAF8;
  --border-l:   #E2DDD5;
  --border-d:   rgba(255,255,255,0.07);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Inter', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: #fff;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--dark);
  overflow-x: hidden;
}

/* ── Scroll reveal ──────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
[data-reveal].visible { opacity: 1; transform: none; }
[data-reveal="1"] { transition-delay: .1s; }
[data-reveal="2"] { transition-delay: .2s; }
[data-reveal="3"] { transition-delay: .3s; }

/* ── Shared layout ──────────────────────────────────── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.hl-card.is-featured-listing {
    border-radius: 0px !important;
    border: 5px solid #cfb87c !important;
}
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.section-title em { font-style: italic; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover {
  background: var(--gold-light); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201,169,110,.35);
}
.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.22);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.07);
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #222; color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(17,17,16,.2);
}
.btn-outline:hover {
  border-color: rgba(17,17,16,.5);
  background: rgba(17,17,16,.04);
    color: #000;

}

/* ─────────────────────────────────────────────────────
   1. HERO
───────────────────────────────────────────────────── */
.s-hero {
  position: relative;
  height: calc(75vh - 88px);
  min-height: 480px;
  max-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.s-hero__bg { position: absolute; inset: 0; }
.s-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  animation: kenBurns 16s ease-out forwards;
  will-change: transform;
  filter: sepia(18%) saturate(130%) brightness(0.92) hue-rotate(-8deg);
}
@keyframes kenBurns { to { transform: scale(1.0); } }

.s-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(30,18,8,1.0)    0%,
      rgba(30,18,8,.85)   18%,
      rgba(30,18,8,.40)   45%,
      rgba(30,18,8,.06)   75%,
      transparent          100%),
    linear-gradient(105deg,
      rgba(40,22,6,.55)    0%,
      transparent          55%),
    linear-gradient(to bottom,
      rgba(180,110,40,.08) 0%,
      transparent          35%);
}

.s-hero__body {
  position: relative;
  z-index: 2;
  padding: 0 60px 72px;
  max-width: 900px;
}

.s-hero__location {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s ease .2s forwards;
}
.s-hero__loc-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}
.s-hero__loc-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 14px;
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.s-hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s ease .45s forwards;
}
.s-hero__title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.s-hero__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .8s ease .75s forwards;
}
.s-hero__meta-line {
  width: 48px; height: 1px;
  background: rgba(201,169,110,.45);
  flex-shrink: 0;
}
.s-hero__tagline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.s-hero__tagline span { color: var(--gold); opacity: .5; margin: 0 8px; }
.s-hero__tagline a {
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
}
.s-hero__tagline a:hover { color: var(--gold); }

.s-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s ease .95s forwards;
}

.s-hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}
.s-hero__scroll-label {
  font-size: 7px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
.s-hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,169,110,.45), transparent);
  animation: scrollPulse 2.6s ease-in-out 2.2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); transform-origin:top; }
  50%      { opacity:.25; transform:scaleY(.35); transform-origin:top; }
}

.s-hero__badge {
  position: absolute;
  bottom: 52px; right: 56px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
.s-hero__badge-top {
  font-size: 8px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(201,169,110,.6);
}
.s-hero__badge-code {
  font-family: var(--serif); font-size: 34px; font-weight: 300;
  color: rgba(255,255,255,.9); line-height: 1; letter-spacing: -.01em;
}
.s-hero__badge-sub {
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.28);
}
.s-hero__badge::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, rgba(201,169,110,.5), transparent);
  margin-bottom: 8px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ── Hero responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .s-hero__body { padding: 0 40px 64px; }
  .s-hero__badge { right: 40px; bottom: 44px; }
}

.s-hero__pills { display: none; }

@media (max-width: 768px) {
  .s-hero {
    height: calc(70vh - 76px);
    min-height: 480px;
    justify-content: flex-end;
    align-items: center;
  }
  .s-hero__body {
    padding: 0 32px 72px;
    max-width: 100%;
    text-align: center;
  }
  .s-hero__location { justify-content: center; }
  .s-hero__meta { display: none; }
  .s-hero__actions { justify-content: center; }
  .s-hero__title { font-size: clamp(34px, 7vw, 60px); }
  .s-hero__badge { display: none; }
  .s-hero__scroll { bottom: 24px; }

  .s-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
  }
  .s-hero__pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 100px;
    white-space: nowrap;
    transition: background .25s, border-color .25s, color .25s;
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp .55s cubic-bezier(.22,1,.36,1) forwards;
  }
  .s-hero__pill:nth-child(1) { animation-delay: .7s; }
  .s-hero__pill:nth-child(2) { animation-delay: .85s; }
  .s-hero__pill:nth-child(3) { animation-delay: 1.0s; }
  .s-hero__pill:hover {
    background: rgba(201,169,110,0.2);
    border-color: rgba(201,169,110,0.6);
    color: #C9A96E;
  }
}
@media (max-width: 480px) {
  .s-hero { min-height: 520px; }
  .s-hero__body { padding: 0 24px 64px; }
  .s-hero__title {
    font-size: clamp(38px, 11vw, 60px);
    letter-spacing: -.02em;
    margin-bottom: 20px;
  }
  .s-hero__location { font-size: 8px; letter-spacing: .24em; margin-bottom: 20px; }
  .s-hero__pills { margin-bottom: 24px; gap: 7px; }
  .s-hero__pill { font-size: 9px; padding: 8px 15px; }
  .s-hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .s-hero__actions .btn {
    justify-content: center;
    padding: 16px 24px;
    font-size: 11px;
  }
  .s-hero__scroll { display: none; }
}

/* ─────────────────────────────────────────────────────
   2. STATS
───────────────────────────────────────────────────── */
.s-stats {
  background: var(--dark);
  border-top: 1px solid rgba(201,169,110,.14);
}
.s-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.s-stats__item {
  padding: 52px 32px;
  text-align: center;
  border-right: 1px solid var(--border-d);
}
.s-stats__item:last-child { border-right: none; }
.s-stats__num {
  font-family: var(--serif);
  font-size: 56px; font-weight: 300;
  color: var(--gold); line-height: 1; display: block;
}
.s-stats__suf {
  font-family: var(--serif);
  font-size: 36px; color: var(--gold); opacity: .5;
}
.s-stats__label {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 12px; display: block;
}

/* ─────────────────────────────────────────────────────
   3. SERVICES
───────────────────────────────────────────────────── */
.s-services {
  background: #f8f9fa;
  padding: 68px 0;
}
.s-services__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.s-services__header .section-title { color: var(--dark); }
.s-services__header .section-title em { color: var(--gold-dark); }
.s-services__sub {
  font-size: 14px; color: rgba(17,17,16,.46);
  line-height: 1.75; margin-top: 18px; font-weight: 300;
}
.s-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-l);
  max-width: 1160px;
  margin: 0 auto;
}
.s-service {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  text-decoration: none; display: block;
}
.s-service img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.8) saturate(.8);
}
.s-service:hover img { transform: scale(1.06); filter: brightness(.7) saturate(.9); }
.s-service__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,16,.93) 0%, rgba(17,17,16,.25) 55%, transparent 100%);
}
.s-service__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
}
.s-service__num {
  font-family: var(--serif); font-size: 12px;
  color: var(--gold); opacity: .6; letter-spacing: .1em;
  display: block; margin-bottom: 14px;
}
.s-service__title {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  color: #fff; line-height: 1.15;
}
.s-service__desc {
  font-size: 13px; color: rgba(255,255,255,.58);
  line-height: 1.7; font-weight: 300; max-width: 260px;
  margin-top: 16px;
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s, transform .4s;
}
.s-service__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-top: 20px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s .05s, transform .4s .05s;
}
.s-service__cta-line {
  display: block; width: 22px; height: 1px;
  background: var(--gold); transition: width .3s;
}
.s-service:hover .s-service__desc,
.s-service:hover .s-service__cta { opacity: 1; transform: none; }
.s-service:hover .s-service__cta-line { width: 36px; }

/* ─────────────────────────────────────────────────────
   4. LISTINGS
───────────────────────────────────────────────────── */
.s-listings {
  background: #fff;
  padding: 68px 0;
}
.s-listings .section-title { color: var(--dark); }
.s-listings .section-title em { color: var(--gold-dark); }
.s-listings__intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 56px;
}
.s-listings__intro .s-cta__deco { margin-bottom: 24px; }
.s-listings__intro .eyebrow { display: block; margin-bottom: 14px; }

/* ── Homepage Featured Aircraft Cards ── */
.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hl-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.055);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  position: relative;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.hl-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A96E, #A8863E);
  opacity: 0;
  transition: opacity .35s;
}
.hl-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,.13); }
.hl-card:hover::before { opacity: 1; }

.hl-card__img {
  position: relative;
  padding-top: 58%;
  overflow: hidden;
  background: #f0ece4;
}
.hl-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.hl-card:hover .hl-card__img img { transform: scale(1.07); }

.hl-card--sold .hl-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(120,20,20,.48);
}
.hl-sold-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  font-family: var(--serif);
  font-size: 36px; font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 3px solid rgba(255,255,255,.7);
  padding: 6px 18px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  display: none;
}
.hl-card--sold .hl-sold-stamp { display: block; }

.hl-badges {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 4; pointer-events: none;
}
.hl-badge {
  font-size: 8.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hl-badge--featured {
  background: rgba(201,169,110,.92); color: #fff;
  box-shadow: 0 2px 10px rgba(168,134,62,.4);
}
.hl-badge--active {
  background: rgba(22,163,74,.88); color: #fff;
}
.hl-badge--sold {
  background: rgba(192,57,43,.88); color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}

.hl-card__body { padding: 24px 24px 20px; flex: 1; display: flex; flex-direction: column; }
.hl-card__cat {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 8px;
}
.hl-card__name {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--dark); line-height: 1.2; margin-bottom: 14px;
}
.hl-card--sold .hl-card__name { color: rgba(17,17,16,.45); }

.hl-specs {
  display: flex; gap: 0;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
  margin-bottom: 18px;
}
.hl-spec {
  flex: 1; padding: 10px 0; text-align: center;
  border-right: 1px solid rgba(0,0,0,.07);
}
.hl-spec:last-child { border-right: none; }
.hl-spec__val {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--dark); letter-spacing: -.01em;
}
.hl-spec__lbl {
  display: block; font-size: 8px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(0,0,0,.38); margin-top: 2px;
}
.hl-card--sold .hl-spec__val { color: rgba(17,17,16,.4); }

.hl-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.hl-price {
  font-family: var(--serif); font-size: 24px; font-weight: 300;
  color: var(--dark); letter-spacing: -.01em;
}
.hl-card--sold .hl-price { text-decoration: line-through; color: rgba(17,17,16,.35); font-size: 18px; }
.hl-sold-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(17,17,16,.5); display: none;
}
.hl-card--sold .hl-sold-label { display: block; }

/* ── PURCHASED ── */
.hl-card--purchased .hl-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(120,20,20,.48);
}
.hl-purchased-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  font-family: var(--serif);
  font-size: 36px; font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .12em;
  text-transform: uppercase;
  border: 3px solid rgba(255,255,255,.7);
  padding: 6px 18px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 3;
  display: none;
}
.hl-card--purchased .hl-purchased-stamp { display: block; }
.hl-badge--purchased {
  background: rgba(192,57,43,.85);
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}
.hl-purchased-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(192,57,43,.7); display: none;
}
.hl-card--purchased .hl-purchased-label { display: block; }
.hl-card--purchased .hl-price { text-decoration: line-through; color: rgba(17,17,16,.35); font-size: 18px; }
.hl-card:not(.hl-card--sold):not(.hl-card--purchased):hover .hl-inquire { color: var(--gold-dark); }
.hl-card--purchased .hl-inquire { color: rgba(0,0,0,.2); pointer-events: none; }

/* ── FEATURED FRAME ── */
.featured-frame {
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 6px;
  padding: 2rem 2rem 1.8rem;
  margin: 2rem 0 1.5rem;
  background: rgba(200,169,110,.03);
}
.featured-frame__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.featured-frame__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,169,110,.4), transparent);
}
.featured-frame__tag {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8a96e;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}
.featured-frame__tag i { font-size: .52rem; opacity: .8; }
.featured-frame__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(200,169,110,.15);
  margin-top: 1.8rem;
}

.hl-inquire {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(0,0,0,.3); font-weight: 600;
  transition: color .2s;
}
.hl-card:not(.hl-card--sold):hover .hl-inquire { color: var(--gold-dark); }
.hl-card--sold .hl-inquire { color: rgba(0,0,0,.2); pointer-events: none; }

.s-listings__cta {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-top: 52px;
}

@media (max-width: 900px) { .hl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .hl-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ─────────────────────────────────────────────────────
   5. WHY COAST AIR
───────────────────────────────────────────────────── */
.s-why { background: #f8f9fa; padding: 68px 0; }
.s-why__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.s-why__image { position: relative; }
.s-why__image img {
  width: 100%; height: 580px; object-fit: cover; display: block;
  filter: brightness(.93) saturate(.85);
}
.s-why__badge {
  position: absolute; bottom: -22px; right: -22px;
  width: 130px; height: 130px;
  background: var(--gold);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
}
.s-why__badge-num {
  font-family: var(--serif); font-size: 44px; font-weight: 300;
  color: var(--dark); line-height: 1;
}
.s-why__badge-label {
  font-size: 8px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(17,17,16,.6); text-align: center;
  padding: 0 10px; line-height: 1.4;
}
.s-why__content .section-title { color: var(--dark); }
.s-why__content .section-title em { color: var(--gold-dark); }
.s-why__lead {
  font-size: 15px; line-height: 1.85;
  color: rgba(17,17,16,.5);
  margin: 22px 0 44px; font-weight: 300;
}
.s-pillars { display: flex; flex-direction: column; }
.s-pillar {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 22px 0; border-bottom: 1px solid var(--border-l);
}
.s-pillar:last-child { border-bottom: none; }
.s-pillar__num {
  font-family: var(--serif); font-size: 13px; color: var(--gold);
  flex-shrink: 0; padding-top: 2px; min-width: 24px;
}
.s-pillar__title {
  font-size: 13px; font-weight: 600; color: var(--dark);
  margin-bottom: 5px; letter-spacing: -.01em;
}
.s-pillar__text {
  font-size: 13px; color: rgba(17,17,16,.46);
  line-height: 1.65; font-weight: 300;
}
.s-why__actions { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────
   6. CTA BANNER
───────────────────────────────────────────────────── */
.s-cta {
  position: relative; overflow: hidden;
  padding: 0; text-align: center;
  background: transparent;
}
.s-cta__bg { display: none; }
.s-cta__overlay { display: none; }
.s-cta__body { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.s-cta__deco {
  display: flex; align-items: center;
  justify-content: center; gap: 18px; margin-bottom: 36px;
}
.s-cta__deco-line { width: 56px; height: 1px; background: var(--gold); opacity: .45; }
.s-cta__deco-diamond {
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); opacity: .7;
}
.s-cta .section-title {
  color: var(--dark); font-size: clamp(34px, 4.5vw, 64px); margin-bottom: 20px;
}
.s-cta .section-title em { color: var(--gold-dark); font-style: italic; }
.s-cta__sub {
  font-size: 14px; color: rgba(0,0,0,.45);
  line-height: 1.8; margin-bottom: 48px; font-weight: 300;
}
.s-cta__actions {
  display: flex; align-items: center;
  justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────
   7. NEWS
───────────────────────────────────────────────────── */
.s-news {
  background: #f8f9fa;
  padding: 68px 0 60px;
  overflow: hidden;
}
.s-news__top {
  text-align: center;
  margin-bottom: 70px;
}
.s-news__label {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600;
  margin-bottom: 20px;
}
.s-news__label::before,
.s-news__label::after {
  content: ''; display: block;
  width: 36px; height: 1px;
  background: rgba(168,134,62,.35);
}
.s-news__heading {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300; color: var(--dark);
  letter-spacing: -.03em; line-height: .95;
}
.s-news__heading em { color: var(--gold-dark); font-style: italic; }

.s-news__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.s-news-art {
  display: block; text-decoration: none;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease, box-shadow .3s, transform .3s;
}
.s-news-art.revealed { opacity: 1; transform: translateY(0); }
.s-news-art:nth-child(2) { transition-delay: .12s; }
.s-news-art:nth-child(3) { transition-delay: .24s; }
.s-news-art.revealed:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,.11);
}

.s-news-art__img {
  height: 280px; overflow: hidden; position: relative;
}
.s-news-art__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
  filter: brightness(.92) saturate(.9);
}
.s-news-art:hover .s-news-art__img img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.s-news-art__num {
  position: absolute; bottom: 12px; right: 16px;
  font-family: var(--serif); font-size: 60px; font-weight: 300;
  color: rgba(0,0,0,.08); line-height: 1;
  pointer-events: none; user-select: none;
}

.s-news-art__body {
  padding: 28px 28px 32px;
  position: relative;
}
.s-news-art__body::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .45s ease;
}
.s-news-art:hover .s-news-art__body::before { width: 100%; }

.s-news-art__cat {
  font-size: 8px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700; margin-bottom: 12px; display: block;
}
.s-news-art__title {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--dark); line-height: 1.3; letter-spacing: -.01em;
  margin-bottom: 14px;
  transition: color .25s;
}
.s-news-art:hover .s-news-art__title { color: var(--gold-dark); }
.s-news-art__excerpt {
  font-size: 12.5px; color: rgba(0,0,0,.42);
  line-height: 1.8; font-weight: 300; margin-bottom: 24px;
}
.s-news-art__foot {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,.07);
  padding-top: 16px;
}
.s-news-art__date { font-size: 10px; color: rgba(0,0,0,.28); letter-spacing: .06em; }
.s-news-art__cta {
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(0,0,0,.35); font-weight: 600;
  transition: color .2s;
}
.s-news-art:hover .s-news-art__cta { color: var(--gold-dark); }

.s-news__footer {
  text-align: center; margin-top: 56px;
}
.s-news__all {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dark); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,.2); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.s-news__all:hover { color: var(--gold-dark); border-color: var(--gold); }
.s-news__all span { transition: transform .2s; display: inline-block; }
.s-news__all:hover span { transform: translateX(6px); }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wrap { padding: 0 28px; }
  .s-why__inner { gap: 60px; }
}
@media (max-width: 860px) {
  .s-stats__grid { grid-template-columns: repeat(2,1fr); }
  .s-stats__item { border-bottom: 1px solid var(--border-d); }
  .s-services__grid {
    grid-template-columns: 1fr;
    gap: 0;
    background: none;
    padding: 0 20px;
    max-width: 520px;
  }
  .s-service {
    aspect-ratio: unset;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  }
  .s-service.is-visible { opacity: 1; transform: translateY(0); }
  .s-service:nth-child(2) { transition-delay: .12s; }
  .s-service:nth-child(3) { transition-delay: .24s; }
  .s-service:active { box-shadow: 0 4px 16px rgba(0,0,0,0.28); transform: scale(0.985); }

  .s-service .s-service__overlay {
    background: linear-gradient(
      to top,
      rgba(8,6,4,.97) 0%,
      rgba(8,6,4,.62) 48%,
      rgba(8,6,4,.18) 100%
    );
  }
  .s-service::after {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, #C9A96E 40%, #C9A96E 60%, transparent);
    opacity: 0.5;
    border-radius: 2px;
  }
  .s-service__body { padding: 28px 28px 28px 36px; }
  .s-service__num { margin-bottom: 8px; font-size: 11px; opacity: 0.8; }
  .s-service__title { font-size: 28px; }

  .s-service .s-service__desc {
    opacity: 1;
    transform: none;
    font-size: 12.5px;
    max-width: 100%;
    color: rgba(255,255,255,.65);
    margin-top: 10px;
  }
  .s-service .s-service__cta {
    opacity: 1;
    transform: none;
    margin-top: 14px;
    font-size: 9.5px;
    letter-spacing: .2em;
  }
  .s-service .s-service__cta-line { width: 26px; }

  .aircraft-card-slide { grid-template-columns: 1fr 1fr; }
  .s-why__inner { grid-template-columns: 1fr; gap: 52px; }
  .s-why__image img { height: 380px; }
  .s-news__row { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .s-stats__item { padding: 38px 20px; }
  .s-stats__num { font-size: 44px; }
  .s-services__grid { padding: 0 16px; max-width: 100%; }
  .s-service { height: 240px; border-radius: 14px; margin-bottom: 12px; }
  .s-service__body { padding: 24px 24px 24px 32px; }
  .s-service__title { font-size: 24px; }
  .s-service .s-service__desc { font-size: 12px; }
  .aircraft-card-slide { grid-template-columns: 1fr; }
  .s-news__header { flex-direction: column; align-items: flex-start; }
  .s-news-card--sm { flex-direction: column; }
  .s-news-card--sm .s-news-card__img { width: 100%; height: 180px; }
  .s-why__badge { width: 100px; height: 100px; bottom: -14px; right: -14px; }
  .s-why__badge-num { font-size: 34px; }
  .s-why__actions { flex-direction: column; }
  .s-cta { padding: 0; }
}

/* ─────────────────────────────────────────────────────
   INQUIRY MODAL
───────────────────────────────────────────────────── */
.inq-overlay{position:fixed;inset:0;z-index:99999;display:flex;align-items:center;justify-content:center;padding:16px;background:rgba(10,8,5,.72);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);opacity:0;pointer-events:none;transition:opacity .32s ease}
.inq-overlay.is-open{opacity:1;pointer-events:all}
.inq-modal{position:relative;width:100%;max-width:540px;background:#FAFAF7;border-radius:16px;overflow:hidden;box-shadow:0 32px 80px rgba(0,0,0,.38),0 0 0 1px rgba(201,169,110,.18);transform:translateY(28px) scale(.97);transition:transform .36s cubic-bezier(.22,.68,0,1.2),opacity .32s ease;opacity:0}
.inq-overlay.is-open .inq-modal{transform:translateY(0) scale(1);opacity:1}
.inq-close{position:absolute;top:16px;right:16px;width:34px;height:34px;border-radius:50%;border:1.5px solid rgba(255,255,255,.28);background:rgba(255,255,255,.12);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,border-color .2s;z-index:10}
.inq-close:hover{background:rgba(255,255,255,.22);border-color:rgba(255,255,255,.5)}
.inq-header{background:#111110;padding:28px 28px 24px;display:flex;align-items:center;gap:18px}
.inq-plane-icon{width:52px;height:52px;border-radius:12px;background:linear-gradient(135deg,#C9A96E,#A8863E);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:22px;color:#fff}
.inq-aircraft-info{flex:1;min-width:0}
.inq-label{font-size:10px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:#C9A96E;margin:0 0 4px}
.inq-name{font-family:'Cormorant Garamond',serif;font-size:22px;font-weight:400;color:#fff;margin:0 0 8px;line-height:1.1}
.inq-meta-row{display:flex;align-items:center;gap:8px}
.inq-year,.inq-price{font-size:12px;font-weight:500;color:rgba(255,255,255,.75);background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:4px;padding:3px 8px}
.inq-dot{color:rgba(255,255,255,.25);font-size:11px}
.inq-divider{height:1px;background:linear-gradient(90deg,rgba(201,169,110,.4),transparent);margin:0 28px}
.inq-form{padding:24px 28px 28px;display:flex;flex-direction:column;gap:14px}
.inq-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.inq-field{display:flex;flex-direction:column;gap:5px}
.inq-field--full{grid-column:1/-1}
.inq-field label{font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:#888}
.inq-field input,.inq-field select,.inq-field textarea{width:100%;background:#fff;border:1.5px solid #E8E4DC;border-radius:8px;padding:10px 14px;font-size:14px;color:#1C1610;font-family:inherit;transition:border-color .2s,box-shadow .2s;outline:none;-webkit-appearance:none;appearance:none}
.inq-field input::placeholder,.inq-field textarea::placeholder{color:#C0BAB0}
.inq-field input:focus,.inq-field select:focus,.inq-field textarea:focus{border-color:#C9A96E;box-shadow:0 0 0 3px rgba(201,169,110,.12)}
.inq-field textarea{resize:none;line-height:1.5}
.inq-field select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 12px center;padding-right:34px;cursor:pointer}
.inq-consent{display:flex;align-items:flex-start;gap:10px;cursor:pointer;margin:0}
.inq-consent input[type="checkbox"]{display:none}
.inq-consent-box{flex-shrink:0;width:16px;height:16px;margin-top:1px;border:1.5px solid #D4C5A9;border-radius:4px;background:#fff;transition:background .18s,border-color .18s;position:relative}
.inq-consent-box::after{content:'';position:absolute;inset:0;margin:auto;width:9px;height:5px;border-left:1.8px solid #fff;border-bottom:1.8px solid #fff;transform:rotate(-45deg) translateY(-1px);opacity:0;transition:opacity .15s}
.inq-consent input:checked+.inq-consent-box{background:linear-gradient(135deg,#C9A96E,#A8863E);border-color:#C9A96E}
.inq-consent input:checked+.inq-consent-box::after{opacity:1}
.inq-consent-text{font-size:11px;color:#5A5450;line-height:1.5}
.inq-submit{display:flex;align-items:center;justify-content:center;gap:9px;width:100%;padding:14px;border-radius:8px;background:linear-gradient(135deg,#C9A96E,#A8863E);color:#fff;font-size:14px;font-weight:600;letter-spacing:.8px;text-transform:uppercase;border:none;cursor:pointer;font-family:inherit;transition:opacity .2s,transform .2s;margin-top:4px}
.inq-submit:hover{opacity:.88;transform:translateY(-1px)}
.inq-privacy{font-size:11px;color:#B0A89A;text-align:center;margin:0;display:flex;align-items:center;justify-content:center;gap:5px}
.inq-privacy i{color:#C9A96E;font-size:10px}
.inq-success{padding:48px 28px;flex-direction:column;align-items:center;text-align:center;gap:14px;display:none}
.inq-success-icon{width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#C9A96E,#A8863E);display:flex;align-items:center;justify-content:center;font-size:26px;color:#fff}
.inq-success h4{font-family:'Cormorant Garamond',serif;font-size:26px;font-weight:600;color:#1C1610;margin:0}
.inq-success p{font-size:14px;color:#888;margin:0}
.hl-inquire-btn{background:none;border:none;cursor:pointer;font-family:inherit}
@media(max-width:540px){
  .inq-overlay{align-items:center;justify-content:center;padding:16px}
  .inq-modal{border-radius:20px;width:88%;max-width:340px;max-height:88vh;overflow-y:auto;transform:scale(.92) translateY(16px)}
  .inq-overlay.is-open .inq-modal{transform:scale(1) translateY(0)}
  .inq-header{padding:16px 18px 12px;gap:12px}
  .inq-plane-icon{width:36px;height:36px;font-size:14px}
  .inq-label{font-size:9px}
  .inq-name{font-size:17px}
  .inq-year,.inq-price{font-size:11px;padding:2px 7px}
  .inq-close{top:14px;right:14px;width:28px;height:28px}
  .inq-form{padding:14px 18px 24px;gap:10px}
  .inq-row{grid-template-columns:1fr;gap:10px}
  .inq-field input,.inq-field select,.inq-field textarea{padding:8px 12px;font-size:13px}
  .inq-field textarea{max-height:64px;min-height:64px}
  .inq-submit{padding:11px;font-size:12px}
}
