/* =====================================================================
   Skyline Paradise Aviation – Stylesheet
   Premium private-aviation look: deep navy, champagne gold, ivory.
   Mobile-first, no framework, no build step.
   ===================================================================== */

:root {
  --navy-900: #070d18;
  --navy-800: #0b1424;
  --navy-700: #12203a;
  --navy-600: #1b2a44;
  --gold: #c9a24a;
  --gold-light: #e2c77c;
  --gold-dark: #a8842f;
  --ivory: #f6f3ec;
  --ivory-2: #ede8dc;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7a90;
  --line: rgba(27, 42, 68, 0.12);
  --shadow: 0 18px 50px rgba(7, 13, 24, 0.14);
  --shadow-sm: 0 6px 18px rgba(7, 13, 24, 0.08);
  --radius: 4px;
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --gutter: 16px;
  --header-h: 72px;
}
@media (min-width: 768px) { :root { --gutter: 32px; --header-h: 84px; } }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); color: var(--text); background: var(--white);
  line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; margin: 0 0 .5em; color: var(--navy-800); letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.bg-ivory { background: var(--ivory); }
.bg-navy { background: var(--navy-800); color: rgba(255,255,255,.82); }
.bg-navy h2, .bg-navy h3 { color: var(--white); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--gold); color: var(--navy-900); padding: 8px 14px; z-index: 999; }
.skip-link:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- typographic bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.bg-navy .eyebrow, .on-dark .eyebrow { color: var(--gold-light); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.bg-navy .section-head p { color: rgba(255,255,255,.7); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 28px;
  border: 1px solid transparent; border-radius: 2px; font-weight: 600; font-size: .86rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .2s; touch-action: manipulation; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--gold { background: var(--gold); color: var(--navy-900); }
.btn--gold:hover { background: var(--gold-light); }
.btn--outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--navy-900); }
.btn--navy { background: var(--navy-800); color: var(--white); }
.btn--navy:hover { background: var(--navy-600); }
.btn--outline-navy { border-color: var(--navy-800); color: var(--navy-800); }
.btn--outline-navy:hover { background: var(--navy-800); color: var(--white); }
.btn--block { width: 100%; }
.text-link { color: var(--gold-dark); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; display: inline-flex; align-items: center; gap: 8px; }
.text-link::after { content: "\2192"; transition: transform .2s; }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  transition: background .3s, box-shadow .3s; color: var(--white);
  background: linear-gradient(to bottom, rgba(7,13,24,.7), rgba(7,13,24,0));
}
.site-header.is-scrolled { background: rgba(11,20,36,.96); backdrop-filter: blur(10px); box-shadow: 0 4px 24px rgba(0,0,0,.25); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.brand-mark { width: 40px; height: 40px; flex: 0 0 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: .04em; white-space: nowrap; }
.brand-sub { font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-light); }
.nav-links { display: none; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a { display: inline-block; padding: 10px 14px; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 48px; height: 48px; padding: 0 10px;
  background: transparent; border: 0; color: inherit; margin-right: -10px;
}
.nav-toggle span { display: block; height: 2px; background: currentColor; transition: transform .3s, opacity .3s; border-radius: 2px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .header-cta { display: inline-flex; min-height: 44px; padding: 0 20px; }
  .nav-toggle { display: none; }
}

/* mobile drawer */
.nav-backdrop { position: fixed; inset: 0; background: rgba(7,13,24,.6); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; z-index: 110; }
.nav-backdrop.is-open { opacity: 1; visibility: visible; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: var(--navy-800); color: var(--white); z-index: 120;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); display: flex; flex-direction: column; padding: 20px 24px 32px; overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.nav-drawer-close { width: 48px; height: 48px; background: transparent; border: 1px solid rgba(255,255,255,.2); color: var(--white); border-radius: 50%; font-size: 1.4rem; line-height: 1; }
.nav-drawer ul { list-style: none; margin: 0 0 24px; padding: 0; }
.nav-drawer li a { display: flex; align-items: center; justify-content: space-between; padding: 16px 4px; font-family: var(--font-head); font-size: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-drawer li a::after { content: "\2192"; color: var(--gold); font-family: var(--font-body); font-size: 1rem; }
.nav-drawer li a[aria-current="page"] { color: var(--gold-light); }
.nav-drawer .drawer-contact { margin-top: auto; font-size: .9rem; color: rgba(255,255,255,.7); }
.nav-drawer .drawer-contact a { display: block; color: var(--white); padding: 6px 0; }
@media (min-width: 1024px) { .nav-drawer, .nav-backdrop { display: none; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--white); background: var(--navy-900); overflow: hidden;
}
.hero--short { min-height: min(70svh, 620px); align-items: center; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,13,24,.92) 0%, rgba(7,13,24,.55) 45%, rgba(7,13,24,.25) 100%);
}
.hero--short .hero-media::after { background: linear-gradient(to right, rgba(7,13,24,.85), rgba(7,13,24,.45)); }
.hero .container { position: relative; padding-top: calc(var(--header-h) + 40px); padding-bottom: clamp(56px, 9vw, 120px); }
.hero--short .container { padding-top: calc(var(--header-h) + 24px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero h1 { color: var(--white); max-width: 15ch; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p { max-width: 560px; font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,.82); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { flex: 1 1 200px; }
@media (min-width: 640px) { .hero-actions .btn { flex: 0 0 auto; } }
.hero-scroll { position: absolute; right: var(--gutter); bottom: 28px; display: none; align-items: center; gap: 10px; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.7); writing-mode: vertical-rl; }
.hero-scroll::after { content: ""; width: 1px; height: 56px; background: linear-gradient(var(--gold), transparent); animation: drop 2s infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (min-width: 1024px) { .hero-scroll { display: flex; } }
.breadcrumb { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---------- stats strip ---------- */
.stats { background: var(--navy-800); color: var(--white); border-top: 1px solid rgba(201,162,74,.25); }
.stats .container { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat { padding: 26px 8px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); }
.stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.stat span { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); }
@media (min-width: 768px) {
  .stats .container { grid-template-columns: repeat(4, 1fr); }
  .stat { border-bottom: 0; border-right: 1px solid rgba(255,255,255,.08); padding: 34px 12px; }
  .stat:last-child { border-right: 0; }
}

/* ---------- split (image + text) ---------- */
.split { display: grid; gap: 40px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); border-radius: var(--radius); z-index: -1; opacity: .6; }
.split-badge { position: absolute; left: -8px; bottom: 28px; background: var(--gold); color: var(--navy-900); padding: 18px 22px; border-radius: var(--radius); box-shadow: var(--shadow-sm); max-width: 220px; }
.split-badge strong { display: block; font-family: var(--font-head); font-size: 2.2rem; line-height: 1; }
.split-badge span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.split-body p { color: var(--muted); }
.split-body .checks { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 12px; }
.split-body .checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.split-body .checks li::before { content: "\2713"; flex: 0 0 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(201,162,74,.16); color: var(--gold-dark); font-size: .75rem; font-weight: 700; margin-top: 2px; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 72px; }
  .split.reverse .split-media { order: 2; }
  .split-media { margin: 0 18px 18px 0; }
}

/* ---------- services grid ---------- */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.service-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy-800); color: var(--white); min-height: 380px; display: flex; align-items: flex-end; isolation: isolate; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; z-index: -1; }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(7,13,24,.97) 0%, rgba(7,13,24,.85) 40%, rgba(7,13,24,.45) 70%, rgba(7,13,24,.15) 100%); }
.service-card:hover img { transform: scale(1.06); }
.service-card-body { padding: 26px 24px; width: 100%; }
.service-card .num { font-size: .72rem; letter-spacing: .3em; color: var(--gold-light); display: block; margin-bottom: 10px; }
.service-card h3 { color: var(--white); margin-bottom: 8px; }
.service-card p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 14px; }
.service-card .text-link { color: var(--gold-light); }
.service-card--wide { grid-column: 1 / -1; min-height: 300px; }
@media (min-width: 1024px) { .service-card--wide { grid-column: span 2; } }

/* ---------- features ---------- */
.features { display: grid; gap: 28px; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature { padding: 32px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .3s, box-shadow .3s; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--navy-800); color: var(--gold-light); display: grid; place-items: center; margin-bottom: 20px; }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.35rem; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
.bg-navy .feature { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.bg-navy .feature-icon { background: var(--gold); color: var(--navy-900); }
.bg-navy .feature p { color: rgba(255,255,255,.7); }

/* ---------- process ---------- */
.steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 0; } }
.step { position: relative; padding: 28px 22px 0; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); font-family: var(--font-head); font-size: 3.4rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 14px; opacity: .9; }
.step h3 { font-size: 1.3rem; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (min-width: 768px) {
  .step { border-top: 1px solid var(--gold); }
  .step::after { content: ""; position: absolute; top: -5px; left: 22px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }
}

/* ---------- gallery ---------- */
.gallery { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.gallery a { position: relative; display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1 / 1; background: var(--navy-700); }
.gallery a:nth-child(1), .gallery a:nth-child(6) { grid-column: span 2; grid-row: span 2; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease, filter .4s; }
.gallery a:hover img { transform: scale(1.06); filter: brightness(1.05); }
.gallery span { position: absolute; left: 14px; bottom: 12px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--white); text-shadow: 0 1px 6px rgba(0,0,0,.6); opacity: 0; transition: opacity .3s; }
.gallery a:hover span, .gallery a:focus span { opacity: 1; }

/* ---------- testimonials ---------- */
.testimonials { display: grid; gap: 20px; }
@media (min-width: 900px) { .testimonials { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.testimonial { background: var(--white); padding: 34px 28px; border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; }
.testimonial::before { content: "\201C"; font-family: var(--font-head); font-size: 5rem; color: var(--gold); line-height: .5; position: absolute; top: 30px; left: 24px; opacity: .5; }
.testimonial p { font-family: var(--font-head); font-size: 1.3rem; line-height: 1.4; color: var(--navy-800); padding-top: 22px; }
.testimonial footer { font-size: .85rem; color: var(--muted); }
.testimonial footer strong { display: block; color: var(--text); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 8px; font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta { position: relative; color: var(--white); text-align: center; padding: clamp(80px, 12vw, 140px) 0; overflow: hidden; background: var(--navy-900); }
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.cta .container { position: relative; }
.cta h2 { color: var(--white); max-width: 18ch; margin: 0 auto 16px; }
.cta p { max-width: 560px; margin: 0 auto 32px; color: rgba(255,255,255,.8); }
.cta .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 64px 0 0; font-size: .93rem; }
.footer-grid { display: grid; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; } }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .78rem; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer li a { display: inline-block; padding: 3px 0; min-height: 30px; }
.site-footer a:hover { color: var(--gold-light); }
.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { max-width: 36ch; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 4px; color: var(--gold); }
.social { display: flex; gap: 10px; margin-top: 18px; }
.social a { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; color: var(--white); transition: background .25s, border-color .25s; }
.social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-900); }
.social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; padding: 22px 0; font-size: .8rem; color: rgba(255,255,255,.5); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- about page ---------- */
.values { display: grid; gap: 20px; }
@media (min-width: 768px) { .values { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.value { padding: 36px 30px; background: var(--white); border-top: 3px solid var(--gold); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.value h3 { font-size: 1.5rem; }
.value p { color: var(--muted); margin: 0; }

.directors { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .directors { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .directors { grid-template-columns: repeat(4, 1fr); gap: 28px; } }
.director-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s; }
.director-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.director-photo { aspect-ratio: 5 / 6; overflow: hidden; background: var(--navy-700); }
.director-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.director-card:hover .director-photo img { transform: scale(1.04); }
.director-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.director-name { font-size: 1.45rem; margin-bottom: 4px; }
.director-role { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 12px; }
.director-bio { font-size: .92rem; color: var(--muted); margin-bottom: 14px; }
.director-link { margin-top: auto; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--navy-800); }
.director-link:hover { background: var(--navy-800); color: var(--white); }

.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: rgba(201,162,74,.5); }
.timeline li { position: relative; padding: 0 0 32px 36px; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 6px; width: 15px; height: 15px; border-radius: 50%; background: var(--navy-800); border: 3px solid var(--gold); }
.timeline strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--gold-light); line-height: 1; margin-bottom: 6px; }
.timeline p { margin: 0; font-size: .95rem; }
@media (min-width: 900px) {
  .timeline { display: grid; grid-template-columns: repeat(4, 1fr); }
  .timeline::before { left: 8px; right: 8px; top: 7px; bottom: auto; height: 1px; width: auto; }
  .timeline li { padding: 32px 24px 0 0; }
  .timeline li::before { top: 0; }
}

/* ---------- services page ---------- */
.service-row { display: grid; gap: 28px; align-items: center; padding: clamp(40px, 6vw, 72px) 0; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 16px); }
.service-row:last-child { border-bottom: 0; }
@media (min-width: 900px) { .service-row { grid-template-columns: 1fr 1fr; gap: 64px; } .service-row:nth-child(even) .service-row-media { order: 2; } }
.service-row-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.service-row h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.service-row p { color: var(--muted); }
.service-row ul { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 10px; }
.service-row li { position: relative; padding-left: 26px; font-size: .95rem; }
.service-row li::before { content: ""; position: absolute; left: 0; top: 12px; width: 12px; height: 1px; background: var(--gold); }
.service-nav { display: flex; gap: 8px; overflow-x: auto; padding: 4px var(--gutter) 14px; margin: 0 calc(var(--gutter) * -1); scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.service-nav::-webkit-scrollbar { display: none; }
.service-nav a { flex: 0 0 auto; padding: 10px 16px; border: 1px solid var(--line); border-radius: 999px; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; background: var(--white); min-height: 40px; display: inline-flex; align-items: center; }
.service-nav a:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ---------- licenses page ---------- */
.licenses { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .licenses { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .licenses { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.license-card { margin: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--line); }
.license-thumb { position: relative; display: block; width: 100%; padding: 0; border: 0; background: var(--ivory-2); aspect-ratio: 4 / 3; overflow: hidden; }
.license-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.license-thumb:hover img { transform: scale(1.03); }
.license-zoom { position: absolute; right: 12px; bottom: 12px; background: var(--navy-800); color: var(--white); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; padding: 8px 12px; border-radius: 2px; }
.license-pdf { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--navy-800); font-size: .85rem; }
.license-card figcaption { padding: 18px 20px 22px; }
.license-card h3 { font-size: 1.35rem; margin-bottom: 4px; }
.license-issuer { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.license-note { font-size: .9rem; color: var(--muted); margin: 0; }
.compliance { display: grid; gap: 16px; list-style: none; padding: 0; margin: 0; }
@media (min-width: 768px) { .compliance { grid-template-columns: repeat(2, 1fr); } }
.compliance li { display: flex; gap: 14px; padding: 18px 20px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); }
.compliance svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--gold-light); margin-top: 2px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(7,13,24,.92); display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 1100px; width: 100%; max-height: 100%; display: flex; flex-direction: column; align-items: center; }
.lightbox-img { max-height: 78vh; width: auto; max-width: 100%; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--white); }
.lightbox-caption { color: var(--white); text-align: center; margin-top: 14px; }
.lightbox-title { font-family: var(--font-head); font-size: 1.4rem; }
.lightbox-sub { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.lightbox-close { position: absolute; top: 14px; right: 14px; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(0,0,0,.3); color: var(--white); font-size: 1.5rem; line-height: 1; }

/* ---------- contact page ---------- */
.contact-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.25fr; gap: 64px; align-items: start; } }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card .feature-icon { width: 48px; height: 48px; flex: 0 0 48px; margin: 0; }
.contact-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--muted); margin: 0; font-size: .95rem; word-break: break-word; }
.contact-card a:hover { color: var(--gold-dark); }
.form { background: var(--white); padding: clamp(24px, 4vw, 40px); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 0 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--navy-800); }
.field input, .field select, .field textarea { font: inherit; font-size: 16px; padding: 14px 14px; border: 1px solid var(--line); border-radius: 2px; background: var(--ivory); color: var(--text); min-height: 48px; width: 100%; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--gold); outline-offset: 0; background: var(--white); }
.form-note { font-size: .82rem; color: var(--muted); }
.form-success { margin-top: 16px; padding: 14px 16px; background: rgba(201,162,74,.14); border-left: 3px solid var(--gold); font-size: .92rem; }
.map-placeholder { margin-top: 48px; border-radius: var(--radius); overflow: hidden; background: var(--navy-800); color: var(--white); min-height: 260px; display: grid; place-items: center; text-align: center; padding: 32px; position: relative; }
.map-placeholder img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.map-placeholder > div { position: relative; }
.map-placeholder h3 { color: var(--white); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll::after { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* floating WhatsApp / call buttons */
.float-call { position: fixed; right: 16px; bottom: 16px; z-index: 90; display: flex; flex-direction: column; gap: 10px; }
.float-call a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.float-call .wa { background: #25d366; }
.float-call .ph { background: var(--gold); color: var(--navy-900); }
.float-call svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .float-call .ph { display: none; } }
