/* =========================================================
   Kanatoğulları Turizm — Premium Design System
   Saf CSS · lacivert & altın · hızlı · erişilebilir
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #050e20;
  --navy-800: #09244b;
  --navy-700: #0d2f5e;
  --navy-600: #123a72;
  --gold: #c9a24b;
  --gold-500: #d4af37;
  --gold-300: #e7cd86;
  --cream: #f7f4ec;
  --paper: #ffffff;

  /* Ink */
  --ink-900: #0e1726;
  --ink-700: #23324a;
  --ink-500: #5a6a82;
  --ink-300: #9aa7bc;
  --line: #e6e9f0;

  /* Semantic */
  --bg: #ffffff;
  --bg-alt: #f6f7fb;
  --text: var(--ink-900);
  --muted: var(--ink-500);
  --accent: var(--gold);
  --accent-strong: #b8860b;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(9, 36, 75, .06), 0 2px 8px rgba(9, 36, 75, .05);
  --shadow-md: 0 8px 24px rgba(9, 36, 75, .10);
  --shadow-lg: 0 24px 60px rgba(9, 36, 75, .16);
  --shadow-gold: 0 10px 30px rgba(201, 162, 75, .28);

  /* Rhythm */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(56px, 8vw, 116px);

  /* Type */
  --font-sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Sora", var(--font-sans);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy-800); color: #eaf0fb; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: clamp(20px, 3vw, 32px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans); font-weight: 700; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--accent-strong);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.section--navy .eyebrow { color: var(--gold-300); }
.title { font-size: clamp(1.9rem, 4.2vw, 3rem); }
.title-lg { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--muted); max-width: 62ch; }
.section--navy .lead { color: #c4d2e8; }
.accent-serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--gold-500); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head.text-center { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy-800); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em; white-space: nowrap;
  padding: .85em 1.6em; border-radius: 999px; font-weight: 700; font-size: .98rem;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 1.1em; height: 1.1em; }
.btn--gold { --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold)); --btn-fg: #2a1e00; box-shadow: var(--shadow-gold); }
.btn--gold:hover { box-shadow: 0 14px 36px rgba(201, 162, 75, .42); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy-800); }
.btn--light { --btn-bg: #fff; --btn-fg: var(--navy-800); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--sm { padding: .6em 1.1em; font-size: .88rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7em; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--navy-800); }
.brand__mark { width: 40px; height: 40px; flex: 0 0 auto; }
.brand small { display: block; font-family: var(--font-sans); font-weight: 600; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-strong); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__menu a { padding: .55em .78em; border-radius: 999px; font-weight: 600; font-size: .95rem; color: var(--ink-700); white-space: nowrap; transition: color .2s, background .2s; }
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: var(--navy-800); background: var(--bg-alt); }
.nav__item { position: relative; }
.nav__item--has > a::after { content: "▾"; font-size: .7em; margin-left: .35em; opacity: .6; }
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 268px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: .22s ease;
}
.nav__item--has:hover .nav__dropdown, .nav__item--has:focus-within .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown a { display: block; padding: .6em .8em; border-radius: 9px; font-size: .92rem; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__phone { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; color: var(--navy-800); font-size: .94rem; white-space: nowrap; }
.nav__phone svg { width: 18px; height: 18px; color: var(--accent-strong); }

.nav__toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 12px; background: #fff; align-items: center; justify-content: center; }
.nav__toggle span { position: relative; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .25s; }
.nav__toggle span::before, .nav__toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .25s; }
.nav__toggle span::before { top: -6px; } .nav__toggle span::after { top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1180px) {
  .nav__menu, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__menu.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: fixed; inset: 74px 0 0 0; background: #fff; padding: 20px var(--gutter);
    overflow-y: auto; border-top: 1px solid var(--line); animation: slideDown .3s ease;
  }
  .nav__menu.is-open a { font-size: 1.05rem; padding: .8em .6em; border-radius: 12px; }
  .nav__menu.is-open .nav__dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; min-width: 0; }
  .nav__item--has > a::after { content: ""; }
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1100px 620px at 82% -5%, rgba(201,162,75,.24), transparent 58%),
    radial-gradient(900px 700px at 8% 110%, rgba(18,58,114,.55), transparent 60%),
    linear-gradient(135deg, #071630 0%, #09244b 55%, #0d2f5e 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image:
    linear-gradient(115deg, transparent 40%, rgba(201,162,75,.10) 41%, rgba(201,162,75,.10) 42%, transparent 43%),
    linear-gradient(115deg, transparent 62%, rgba(255,255,255,.05) 63%, rgba(255,255,255,.05) 63.4%, transparent 64%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,14,32,.55) 0%, rgba(5,14,32,.15) 55%, transparent 100%);
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg .media-frame { display: none; }
.hero__inner { position: relative; z-index: 1; display: grid; align-items: center; min-height: min(84vh, 720px); padding-block: clamp(56px, 10vw, 110px); }
.hero__content { max-width: 640px; }
.hero__eyebrow { color: var(--gold-300); }
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); color: #fff; margin-bottom: .35em; }
.hero__sub { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: #d3ddee; margin-bottom: 2em; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(20px, 5vw, 54px); margin-top: clamp(36px, 6vw, 64px); padding-top: 30px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--gold-300); line-height: 1; }
.hero__stat span { font-size: .9rem; color: #b9c6db; letter-spacing: .02em; }

/* ---------- Cards ---------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  height: 100%; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__num { font-family: var(--font-display); font-size: .95rem; font-weight: 800; color: var(--gold); letter-spacing: .1em; margin-bottom: 14px; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(201,162,75,.16), rgba(9,36,75,.08)); color: var(--navy-800); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: .5em; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 1.2em; }
.card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .45em; font-weight: 700; color: var(--navy-800); font-size: .95rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }
.card--navy { background: linear-gradient(160deg, var(--navy-700), var(--navy-800)); color: #eaf0fb; border-color: transparent; box-shadow: var(--shadow-md); }
.card--navy h3 { color: #fff; } .card--navy p { color: #c2d0e6; } .card--navy .card__link { color: var(--gold-300); }
.card--navy .card__icon { background: rgba(255,255,255,.10); color: var(--gold-300); }

/* Feature (icon-left) */
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(201,162,75,.18), rgba(9,36,75,.06)); color: var(--accent-strong); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: .3em; }
.feature p { color: var(--muted); font-size: .96rem; margin: 0; }
.section--navy .feature__icon { background: rgba(255,255,255,.10); color: var(--gold-300); }
.section--navy .feature p { color: #bccbe3; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img, .media-frame { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split__badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 18px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.split__badge b { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy-800); line-height: 1; }
.split__badge span { font-size: .82rem; color: var(--muted); }
@media (max-width: 520px) { .split__badge { position: static; margin-top: 16px; } }

/* Checklist */
.checklist { display: grid; gap: 14px; margin: 1.4em 0; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--accent-strong); margin-top: 1px; }
.checklist b { font-weight: 700; }

/* Media placeholder frame (until real photos added) */
.media-frame {
  aspect-ratio: 16 / 11; width: 100%;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(201,162,75,.22), transparent 60%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center; color: rgba(255,255,255,.5); position: relative; overflow: hidden;
}
.media-frame svg { width: 64px; height: 64px; opacity: .5; }
.media-frame span { position: absolute; bottom: 14px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Stats strip ---------- */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 720px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); color: var(--gold-300); line-height: 1; }
.stat span { font-size: .92rem; color: #bccbe3; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(36px, 6vw, 64px);
  background: linear-gradient(120deg, var(--navy-800), var(--navy-700)); color: #fff; text-align: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 80% 0%, rgba(201,162,75,.28), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .hero__actions { justify-content: center; margin-top: 1.6em; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 56px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item__icon { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-alt); color: var(--accent-strong); }
.info-item__icon svg { width: 22px; height: 22px; }
.info-item b { display: block; font-family: var(--font-display); font-size: 1.02rem; }
.info-item a, .info-item p { color: var(--muted); margin: 0; }
.info-item a:hover { color: var(--navy-800); }

.form { display: grid; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8em 1em; border: 1.5px solid var(--line); border-radius: 12px; font: inherit;
  background: #fcfcfd; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,162,75,.14); }
.field textarea { min-height: 130px; resize: vertical; }

/* Map */
.map-embed { border: 0; width: 100%; height: 100%; min-height: 320px; border-radius: var(--radius); filter: grayscale(.1); }

/* ---------- Breadcrumb / page hero ---------- */
.page-hero { position: relative; background: var(--navy-800); color: #fff; overflow: hidden; padding-block: clamp(48px, 8vw, 96px); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 340px at 85% -10%, rgba(201,162,75,.22), transparent 60%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: #c9d6ea; max-width: 60ch; margin: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5em; font-size: .88rem; color: #a9bad6; margin-bottom: 1.2em; }
.breadcrumb a:hover { color: #fff; } .breadcrumb span { color: var(--gold-300); }

/* Prose */
.prose { max-width: 74ch; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 1.6em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose ul:not(.checklist) { margin: 1em 0; padding-left: 0; display: grid; gap: 10px; }
.prose ul:not(.checklist) li { position: relative; padding-left: 1.6em; color: var(--ink-700); }
.prose ul:not(.checklist) li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--gold); transform: rotate(45deg); }

/* ---------- Fleet / gallery ---------- */
.fleet-card { overflow: hidden; padding: 0; }
.fleet-card .media-frame, .fleet-card .media-photo { aspect-ratio: 4/3; border-radius: 0; box-shadow: none; background: #f2f4f8; }
.fleet-card__body { padding: 22px 24px; }
.fleet-card h3 { margin-bottom: .2em; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag { font-size: .8rem; font-weight: 600; padding: .3em .8em; border-radius: 999px; background: var(--bg-alt); color: var(--ink-700); border: 1px solid var(--line); }

/* Documents */
.doc-card { text-align: center; padding: 16px; }
.doc-card .media-frame { aspect-ratio: 3/4; }
.doc-card .media-photo { border-radius: 12px; }
.doc-card .fleet-card__body { padding: 16px 8px 6px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #b7c4da; padding-top: clamp(48px, 7vw, 84px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; letter-spacing: .04em; margin-bottom: 1.1em; }
.footer-brand .brand { color: #fff; margin-bottom: 1em; }
.footer-brand p { font-size: .95rem; max-width: 34ch; }
.footer-links a { display: block; padding: .35em 0; font-size: .95rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: var(--gold-300); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .95rem; }
.footer-contact svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--gold-300); margin-top: 3px; }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .2s, transform .2s; }
.social a:hover { background: var(--gold); color: #2a1e00; transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { margin-top: clamp(36px, 5vw, 60px); border-top: 1px solid rgba(255,255,255,.10); padding-block: 22px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .86rem; color: #8194b3; }
.footer-bottom a:hover { color: var(--gold-300); }

/* ---------- Floating actions ---------- */
.floaters { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.floaters a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform .2s; }
.floaters a:hover { transform: scale(1.06); }
.fab-wa { background: #25d366; } .fab-call { background: var(--navy-800); }
.floaters svg { width: 26px; height: 26px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* ---------- Logo images ---------- */
.brand { flex-shrink: 0; }
.brand__logo { height: 38px; width: auto; max-width: none; }
.footer-logo { height: 42px; width: auto; max-width: none; filter: brightness(0) invert(1); }
@media (max-width: 480px) { .brand__logo { height: 30px; } }

/* ---------- Real photo frame ---------- */
.media-photo { position: relative; width: 100%; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--bg-alt); }
.media-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-photo--contain { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.media-photo--contain img { object-fit: contain; padding: 10px; }

/* ---------- Hero slider ---------- */
.hero-slider { position: relative; overflow: hidden; background: var(--navy-900); height: clamp(340px, 44vw, 640px); }
.hero-slider__track { display: flex; height: 100%; will-change: transform; transition: transform .7s cubic-bezier(.45, .05, .2, 1); }
.hero-slide { position: relative; flex: 0 0 100%; min-width: 100%; height: 100%; display: block; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: 22% center; }
@media (max-width: 700px) { .hero-slide img { object-position: 30% center; } }
.hero-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: rgba(9,20,40,.4); color: #fff; backdrop-filter: blur(6px);
  display: grid; place-items: center; transition: background .25s, transform .25s;
}
.hero-slider__arrow:hover { background: var(--gold); color: #2a1e00; }
.hero-slider__arrow svg { width: 22px; height: 22px; }
.hero-slider__arrow--prev { left: clamp(12px, 3vw, 32px); }
.hero-slider__arrow--prev svg { transform: rotate(180deg); }
.hero-slider__arrow--next { right: clamp(12px, 3vw, 32px); }
@media (max-width: 560px) { .hero-slider__arrow { width: 42px; height: 42px; } }
.hero-slider__dots { position: absolute; left: 0; right: 0; bottom: 18px; z-index: 3; display: flex; justify-content: center; gap: 10px; }
.hero-slider__dot { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,.5); transition: width .3s, background .3s; cursor: pointer; }
.hero-slider__dot.is-active { width: 30px; background: var(--gold-500); }

/* ---------- Hero intro band ---------- */
.hero-intro { padding-block: clamp(38px, 6vw, 76px); background: #fff; }
.hero-intro__grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .hero-intro__grid { grid-template-columns: 1fr; } }
.hero-intro h1 { margin-bottom: .35em; }
.hero-intro .hero__actions { margin-top: 1.6em; }
.hero-intro__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 420px) { .hero-intro__stats { grid-template-columns: 1fr; } }
.hero-intro__stats .hero__stat { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-alt); }
.hero-intro__stats .hero__stat b { color: var(--navy-800); }
.hero-intro__stats .hero__stat span { color: var(--muted); }

/* ---------- References strip ---------- */
.refs-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(26px, 5vw, 70px); }
.ref-logo { display: grid; place-items: center; }
.ref-logo img { height: clamp(36px, 5vw, 52px); width: auto; filter: grayscale(1); opacity: .62; transition: filter .3s, opacity .3s, transform .3s; }
.ref-logo:hover img { filter: none; opacity: 1; transform: translateY(-2px); }

/* ---------- Utilities ---------- */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.gold-line { width: 68px; height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold)); border-radius: 3px; margin: 18px 0; }
.pill { display: inline-flex; align-items: center; gap: .5em; padding: .4em 1em; border-radius: 999px; background: rgba(201,162,75,.14); color: var(--accent-strong); font-weight: 700; font-size: .84rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: #2a1e00; padding: .6em 1em; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
