/* ============ ROOK YACHTING — PREMIUM THEME ============ */
:root {
  /* Sophisticated light — smoke / stone grey base (airy but luxe) */
  --black: #e7e8ea;        /* base surface (stone) */
  --black-2: #dee0e3;      /* deeper stone */
  --panel: #ffffff;        /* cards */
  --panel-2: #f3f4f6;      /* soft panel */
  --line: rgba(28, 36, 48, 0.12);
  --line-strong: rgba(28, 36, 48, 0.22);

  /* Steel-blue accent (subtle, premium) */
  --ocean: #55636f;
  --ocean-bright: #33414d;
  --ocean-dim: #55636f;
  --ocean-glow: rgba(85, 99, 111, 0.25);

  /* Metallic palette — graphite/steel for light surfaces */
  --silver: #3f4954;
  --silver-bright: #1b222a;
  --silver-dim: #6c757e;
  --silver-dark: #b4bac1;
  --chrome: linear-gradient(180deg, #3b4550 0%, #2a323b 50%, #3d4750 100%);       /* graphite button */
  --chrome-text: linear-gradient(180deg, #59636e 0%, #2b333c 45%, #5c6771 60%, #39424c 100%); /* brushed steel text on light */
  --chrome-text-light: linear-gradient(180deg, #ffffff 0%, #d2d6db 40%, #9aa0a7 60%, #eef1f3 100%); /* for dark media (hero/film) */

  --text: #232a32;
  --text-dim: #566069;
  --text-faint: #8a929c;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2: cubic-bezier(0.65, 0, 0.35, 1);

  /* ── TİPOGRAFİ ÖLÇEĞİ (10 Eyl 2026) ───────────────────────────────
     Önce ölçüldü: sitede 0,55rem ile 1,2rem arasında ON ALTI ayrı boyut
     vardı, en küçükleri 11,8px'e düşüyordu. Serbest değer yerine dört
     basamaklı ölçek; yeni metin bu dördünden birini kullanır.
     Kök 17px olduğu için rem değerleri %6,25 büyümüş sayılır. */
  --yazi-xs: .8125rem;   /* ~13,8px — rozet, etiket, dipnot, künye */
  --yazi-sm: .9375rem;   /* ~15,9px — liste, ikincil metin, düğme */
  --yazi-md: 1.0625rem;  /* ~18,1px — gövde metni */
  --yazi-lg: 1.1875rem;  /* ~20,2px — bölüm girişi (lead) */
}

/* ⛔ Kök 16 değil 17: bütün rem değerleri tek yerden büyüsün diye. Tek tek
   boyut artırmak ölçeği bozar; taban kayarsa oranlar korunur. */
html { font-size: 17px; }

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

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(120% 60% at 50% -5%, rgba(255,255,255,.6) 0%, transparent 55%),
    radial-gradient(90% 60% at 90% 30%, rgba(210,214,220,.5) 0%, transparent 55%),
    linear-gradient(180deg, #eceef0 0%, #e6e7ea 45%, #e1e3e6 100%);
  color: var(--text);
  font-family: var(--font-body);
  /* ⛔ 300 DEĞİL 400. Jost Light açık gri zeminde iyice inceliyor ve metni
     olduğundan küçük gösteriyor — "fontlar ufak" şikâyetinin yarısı boyut
     değil AĞIRLIK sorunuydu. */
  font-weight: 400;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

::selection { background: var(--silver); color: #fff; }

a { color: inherit; text-decoration: none; }
/* Jost ailesinde 700 yüklü değil; tarayıcı 'bold'u sentezliyordu. 600 gerçek kesim. */
b, strong { font-weight: 600; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--silver-dark); border-radius: 20px; }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-follow {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  pointer-events: none; z-index: 9999; mix-blend-mode: difference;
}
.cursor { width: 6px; height: 6px; background: #fff; transform: translate(-50%, -50%); }
.cursor-follow {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s;
}
.cursor-follow.hovering { width: 64px; height: 64px; background: rgba(255,255,255,0.08); border-color: transparent; }
@media (hover: none) { .cursor, .cursor-follow { display: none; } }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000; background: #0b0f15;
  display: grid; place-items: center; transition: opacity .8s var(--ease), visibility .8s;
}
.preloader__bar { background: rgba(255,255,255,.12) !important; }
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__logo { width: 130px; margin: 0 auto 26px; opacity: .95; animation: floatY 3s ease-in-out infinite; }
.preloader__bar { width: 200px; height: 1px; background: var(--line); margin: 0 auto; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--chrome); animation: load 1.8s var(--ease) forwards; }
.preloader__text { margin-top: 18px; font-size: var(--yazi-xs); letter-spacing: .5em; color: var(--text-faint); padding-left: .5em; }
@keyframes load { to { width: 100%; } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--chrome); z-index: 999; box-shadow: 0 0 12px rgba(215,218,222,.4);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 48px; transition: padding .5s var(--ease), background .5s, backdrop-filter .5s;
}
.nav.scrolled {
  padding: 14px 48px; background: rgba(240,241,243,.82);
  backdrop-filter: blur(18px); border-bottom: 1px solid var(--line);
}
.nav__brand img { height: 52px; transition: height .5s var(--ease); filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }
.nav.scrolled .nav__brand img { height: 40px; filter: drop-shadow(0 1px 3px rgba(0,0,0,.25)); }
.nav__links { display: flex; gap: 38px; }
/* Top (over dark hero) = light text */
.nav__links a {
  font-size: var(--yazi-sm); letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.96); position: relative; padding: 4px 0; transition: color .3s;
  text-shadow: 0 2px 12px rgba(3,37,49,.65);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
/* Scrolled (light bg) = dark text */
.nav.scrolled .nav__links a { color: var(--text-dim); }
.nav.scrolled .nav__links a:hover { color: var(--silver-bright); }
.nav__cta {
  display: flex; align-items: center; gap: 9px;
  font-size: var(--yazi-xs); letter-spacing: .14em; text-transform: uppercase;
  padding: 12px 22px; border: 1px solid rgba(255,255,255,.4); border-radius: 40px;
  color: #eef0f2; transition: all .4s var(--ease); background: rgba(255,255,255,.06);
}
.nav__cta:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.14); }
.nav.scrolled .nav__cta { border-color: var(--line-strong); color: var(--silver); background: transparent; }
.nav.scrolled .nav__cta:hover { border-color: var(--silver); color: var(--silver-bright); }
.nav__cta-dot { width: 7px; height: 7px; border-radius: 50%; background: #2fb56a; box-shadow: 0 0 8px #2fb56a; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { width: 26px; height: 1.5px; background: #fff; transition: .3s; }
.nav.scrolled .nav__burger span { background: var(--silver); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: var(--yazi-sm); letter-spacing: .16em; text-transform: uppercase;
  padding: 17px 38px; border-radius: 40px; transition: all .45s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn--primary { background: var(--chrome); color: #f3f5f7; font-weight: 500; }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover::before { transform: translateX(120%); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(30,40,55,.28); }
.btn--ghost { border: 1px solid var(--line-strong); color: var(--silver); }
.btn--ghost:hover { border-color: var(--silver); background: rgba(255,255,255,.04); transform: translateY(-2px); }
.btn--full { width: 100%; }
.btn--dark { background: #1a222b; color: #f2f0ec; }
.btn--dark:hover { background: #232d38; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(20,26,33,.25); }

/* ---------- Section basics ---------- */
.section-label {
  font-size: var(--yazi-xs); letter-spacing: .32em; text-transform: uppercase;
  color: var(--ocean); margin-bottom: 22px;
}
h2 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }
h2 em { font-style: italic; background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- Contrast sections (rhythm on light theme) ---------- */
.section--light {
  background: linear-gradient(180deg, #f5f6f8 0%, #eef0f2 100%);
  color: #232a32;
  position: relative;
  border-block: 1px solid rgba(28,36,48,.07);
}

/* Inline silver highlight for emphasis */
.hl { background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 500; }
.hl-i { font-style: italic; background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.underline-sweep { position: relative; white-space: nowrap; }
.underline-sweep::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 100%; background: linear-gradient(90deg, transparent, var(--silver), transparent); opacity: .6; }

/* ---------- HERO ---------- */
.hero { position: relative; height: 100svh; min-height: 680px; overflow: hidden; display: flex; align-items: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__photo {
  position: absolute; inset: -4%;
  background: url("../assets/yacht-4.jpg") center 48% / cover no-repeat;
  filter: saturate(1.06) brightness(1.04);
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,62,78,.26) 0%, rgba(11,77,91,.12) 38%, rgba(10,70,82,.22) 68%, rgba(7,43,56,.72) 100%),
    radial-gradient(90% 85% at 50% 42%, rgba(255,255,255,.04) 0%, transparent 58%, rgba(5,45,60,.2) 100%);
}
/* ⛔ Fotoğrafın parlak olduğu yer metnin tam arkası: beyaz tekne gövdesi
   başlık ve alt satırla çakışıyor, yazı kayboluyordu (mobilde ölçüldü).
   Perde YETMİYOR çünkü ortası bilerek açık. Metin bandına ayrı, yumuşak
   bir gölge koyuyoruz — fotoğrafın üstünü ve altını karartmadan. */
.hero__scrim {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: min(72%, 620px); z-index: 1; pointer-events: none;
  background: radial-gradient(75% 100% at 50% 50%, rgba(4,32,44,.62) 0%, rgba(4,32,44,.42) 45%, transparent 78%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 48px; text-align: center; }
.hero__eyebrow { font-size: var(--yazi-sm); letter-spacing: .42em; color: #fff; margin-bottom: 30px; padding-left: .42em; text-shadow: 0 2px 14px rgba(3,37,49,.78); }
.hero__title {
  font-family: var(--font-display); font-weight: 500; color: #f4f6f8;
  font-size: clamp(3rem, 9vw, 8rem); line-height: .96; letter-spacing: -.02em; margin-bottom: 34px;
  text-shadow: 0 8px 34px rgba(3,37,49,.38);
}
.reveal-line { display: block; overflow: hidden; }
.reveal-line > span { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.hero.in .reveal-line:nth-child(1) > span { transform: translateY(0); transition-delay: .1s; }
.hero.in .reveal-line:nth-child(2) > span { transform: translateY(0); transition-delay: .28s; }
.hero__title--accent { background: linear-gradient(180deg, #fffdf7 0%, #f8e7c5 52%, #ffffff 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-style: italic; font-weight: 600; }
.hero__sub { max-width: 620px; margin: 0 auto 44px; color: #fff; font-size: clamp(1rem, 1.5vw, 1.18rem); font-weight: 400; text-shadow: 0 2px 10px rgba(2,30,42,.9), 0 6px 24px rgba(2,30,42,.55); }
.hero__sub .hl { background: linear-gradient(180deg, #fffdf7, #f6dfb7); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .btn--ghost { border-color: rgba(255,255,255,.68); color: #fff; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); }
.hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.24); }
.hero__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 90px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: var(--yazi-xs); letter-spacing: .3em; color: rgba(255,255,255,.6);
}
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(180deg, rgba(255,255,255,.6), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: scrollDown 2s var(--ease) infinite; }
@keyframes scrollDown { to { top: 100%; } }
.hero__marquee { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.24); background: rgba(7,54,69,.35); backdrop-filter: blur(10px); overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 34px; white-space: nowrap; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span { font-size: var(--yazi-sm); letter-spacing: .28em; color: rgba(255,255,255,.62); text-transform: uppercase; }
/* Dekoratif ayraç (◆) — okunacak metin değil, ölçeğe dahil değil. */
.marquee__track i { color: rgba(255,255,255,.35); font-style: normal; font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Reveal util ---------- */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- EXPERIENCE ---------- */
.exp { padding: 160px 48px; max-width: 1280px; margin: 0 auto; }
.exp__intro { max-width: 760px; margin: 0 auto 100px; text-align: center; }
.exp__heading { font-size: clamp(2.4rem, 6vw, 5rem); margin-bottom: 30px; }
.exp__heading em { font-style: italic; background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.exp__lead { color: var(--text-dim); font-size: 1.2rem; }
.exp__banner { position: relative; margin: 0 0 90px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.exp__banner img { width: 100%; height: clamp(320px, 46vw, 620px); object-fit: cover; display: block; transition: transform 8s var(--ease); }
.exp__banner:hover img { transform: scale(1.05); }
.exp__banner figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 60px 40px 34px;
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 2.2rem); color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.65));
}
.exp__scenes { display: grid; gap: 0; }
.scene { display: grid; grid-template-columns: 160px 1fr; gap: 40px; padding: 54px 0; border-top: 1px solid var(--line); align-items: baseline; transition: background .5s; }
.scene:last-child { border-bottom: 1px solid var(--line); }
.scene:hover { background: linear-gradient(90deg, rgba(28,36,48,.03), transparent); }
.scene__num { font-family: var(--font-display); font-size: 3.2rem; color: #aab0b8; font-weight: 300; }
.scene:hover .scene__num { background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.scene__body h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: 14px; }
.scene__body p { color: var(--text-dim); max-width: 620px; font-size: 1.05rem; }
.exp__quote { margin-top: 110px; text-align: center; }
.exp__quote p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.3; color: var(--silver); }
.exp__quote span { background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---------- CINEMATIC FILM ---------- */
.film { position: relative; height: 100svh; min-height: 560px; overflow: hidden; background: #000; }
.film__stage { position: absolute; inset: 0; overflow: hidden; }
.film__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.film__slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.02); transition: opacity 1.6s var(--ease);
}
.film__slide.active { opacity: 1; animation: kenburns 8s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.16); } }
.film__stage::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 25%, transparent 55%, rgba(0,0,0,.85) 100%);
}
.film__bar { position: absolute; left: 0; right: 0; height: 8vh; background: #000; z-index: 3; transition: height .8s var(--ease); }
.film__bar--top { top: 0; }
.film__bar--bottom { bottom: 0; }
.film__grain {
  position: absolute; inset: 0; z-index: 2; opacity: .05; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.film__hud {
  position: absolute; top: calc(8vh + 26px); left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; padding: 0 48px;
}
.film__rec { display: flex; align-items: center; gap: 10px; font-size: var(--yazi-xs); letter-spacing: .28em; color: rgba(255,255,255,.75); }
.film__rec i { width: 9px; height: 9px; border-radius: 50%; background: #e0362f; box-shadow: 0 0 10px #e0362f; animation: pulse 1.6s infinite; }
.film__sound { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); display: grid; place-items: center; transition: all .3s; }
.film__sound:hover { border-color: #fff; color: #fff; }
.film__sound.muted .film__wave { opacity: .2; }
.film__caption { position: absolute; left: 0; right: 0; bottom: calc(8vh + 60px); z-index: 4; text-align: center; padding: 0 24px; }
.film__eyebrow { font-size: var(--yazi-xs); letter-spacing: .5em; color: rgba(255,255,255,.6); margin-bottom: 18px; padding-left: .5em; opacity: 0; animation: fadeUp .9s var(--ease) .2s forwards; }
.film__line {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1.02; color: #fff; letter-spacing: -.01em; max-width: 14ch; margin: 0 auto;
}
.film__line.swap { animation: filmSwap .9s var(--ease); }
@keyframes filmSwap { 0% { opacity: 0; transform: translateY(24px); filter: blur(6px); } 100% { opacity: 1; transform: none; filter: blur(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.film__dots { position: absolute; bottom: calc(8vh + 26px); left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.film__dot { width: 26px; height: 2px; background: rgba(255,255,255,.25); border-radius: 2px; overflow: hidden; position: relative; }
.film__dot.active::after { content: ""; position: absolute; inset: 0; background: #ffffff; transform: scaleX(0); transform-origin: left; animation: dotFill 5s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

@media (max-width: 768px) {
  .film__hud { padding: 0 22px; }
  .film__caption { bottom: calc(8vh + 44px); }
}

/* ---------- CHALLENGES & SOLUTIONS ---------- */
.solve { padding: 150px 48px; }
.solve__head { max-width: 780px; margin: 0 auto 70px; text-align: center; }
.solve__title { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 26px; }
.solve__lead { font-size: 1.14rem; line-height: 1.75; }
.solve__list { max-width: 980px; margin: 0 auto; }
.solve__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
  padding: 40px 0; border-top: 1px solid rgba(30,40,50,.14);
}
.solve__row:last-child { border-bottom: 1px solid rgba(30,40,50,.14); }
.solve__q { display: flex; gap: 18px; align-items: flex-start; }
.solve__q span {
  font-family: var(--font-display); font-size: 1.3rem; color: var(--ocean-dim);
  border: 1px solid rgba(47,115,135,.4); border-radius: 50%; width: 44px; height: 44px;
  display: grid; place-items: center; flex-shrink: 0;
}
.solve__q p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.55rem); color: #2b343d; line-height: 1.35; }
.solve__a { color: #4b555f; font-size: 1.05rem; line-height: 1.7; padding-top: 6px; }
.solve__a b { color: #1a222b; font-weight: 600; }
.solve__cta { text-align: center; margin-top: 70px; }
.solve__cta p { font-family: var(--font-display); font-size: 1.6rem; color: #2b343d; margin-bottom: 24px; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: #f4f5f7; padding: 70px 30px; text-align: center; transition: background .5s; }
.stat:hover { background: #ffffff; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 500; background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__plus { font-family: var(--font-display); font-size: 2rem; color: var(--silver-dim); vertical-align: super; }
.stat p { margin-top: 12px; font-size: var(--yazi-sm); letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); }

/* ---------- FLEET ---------- */
.fleet { padding: 160px 48px; max-width: 1360px; margin: 0 auto; }
.fleet__head { max-width: 640px; margin-bottom: 70px; }
.fleet__title { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 20px; }
.fleet__desc { color: var(--text-dim); font-size: 1.1rem; }
.fleet__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; align-items: start; }
.yacht {
  position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  background: var(--panel); transition: transform .6s var(--ease), border-color .6s, box-shadow .6s;
}
.yacht:hover { border-color: var(--line-strong); box-shadow: 0 16px 40px rgba(30,40,55,.10); }
.yacht__media { display: block; width: 100%; position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #dce9e9; cursor: zoom-in; text-align: left; }
.yacht__image { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.yacht:hover .yacht__image { transform: scale(1.035); }
.yacht__badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: var(--yazi-xs); font-weight: 400; letter-spacing: .04em; padding: 7px 12px; border-radius: 4px; background: rgba(255,255,255,.94); color: #223c45; }
.yacht__stabilizer { position: absolute; top: 14px; right: 14px; z-index: 2; font-size: var(--yazi-xs); font-weight: 500; padding: 7px 10px; border-radius: 4px; color: #fff; background: #27675f; }
.yacht__stabilizer span { margin-right: 3px; }
.yacht__gallery-label { position: absolute; bottom: 14px; right: 14px; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 5px; font-size: var(--yazi-sm); color: #fff; background: rgba(16,39,48,.8); backdrop-filter: blur(8px); }
.yacht__gallery-label > span { font-size: 1.15rem; line-height: 1; margin-left: 4px; }
.yacht__media:focus-visible { outline-offset: -4px !important; }
.yacht__body { padding: 26px; }
.yacht__brand { font-size: var(--yazi-xs); font-weight: 500; letter-spacing: .2em; color: #637d80; margin-bottom: 5px; }
.yacht__name { font-family: var(--font-display); font-size: clamp(1.7rem, 2.2vw, 2.05rem); font-weight: 500; line-height: 1.15; min-height: 1.2em; }
.yacht__specs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin: 20px 0; padding: 17px 0; border-block: 1px solid var(--line); }
.yacht__specs dt, .yacht__extra-specs dt { font-size: var(--yazi-sm); color: #67757e; margin-bottom: 3px; }
.yacht__specs dd { font-size: 1rem; font-weight: 500; color: #263c44; white-space: nowrap; }
.yacht__engine { min-height: 94px; }
.yacht__engine > span { display: block; font-size: var(--yazi-xs); color: #67757e; margin-bottom: 5px; }
.yacht__engine strong { display: block; font-size: var(--yazi-md); font-weight: 500; line-height: 1.4; color: #294851; }
.yacht__engine p { font-size: var(--yazi-sm); color: #53636b; margin-top: 5px; }
.yacht__engine p span { margin: 0 5px; color: #a3afb3; }
.yacht__intro { font-size: var(--yazi-md); line-height: 1.65; color: #566069; margin: 12px 0 20px; min-height: 8.5em; }
.yacht__details { border-top: 1px solid var(--line); }
.yacht__details summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; padding-block: 12px; list-style: none; cursor: pointer; font-size: var(--yazi-sm); font-weight: 500; color: #294851; }
.yacht__details summary::-webkit-details-marker { display: none; }
.yacht__details summary span { font-size: 1.4rem; font-weight: 300; transition: transform .2s; }
.yacht__details[open] summary span { transform: rotate(45deg); }
.yacht__detail-content { padding: 0 0 20px; }
.yacht__extra-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 8px 0 18px; }
.yacht__extra-specs dd { font-size: var(--yazi-sm); font-weight: 500; }
.yacht__detail-content ul { padding-left: 18px; font-size: var(--yazi-sm); color: #53636b; line-height: 1.8; }
.yacht__reference { margin-top: 16px; font-size: var(--yazi-sm); color: #66747b; line-height: 1.65; }
/* ⛔ Tek satırda üç öğe (fiyat + iki düğme) yazı büyüyünce sığmıyor:
   "Bilgi al" iki satıra düşüyor, "Talep üzerine" kırılıyor (390px'te ölçüldü).
   Izgaraya alındı — dar ekranda fiyat üstte, düğmeler altta yan yana. */
.yacht__foot {
  display: grid; grid-template-columns: auto 1fr 1fr; align-items: center;
  gap: 10px; padding-top: 18px; border-top: 1px solid var(--line);
}
.yacht__foot .yacht__link { white-space: nowrap; }
/* "Talep üzerine" iki satıra düşüyordu — fiyat sütunu kırılmasın. */
.yacht__price, .yacht__price small { white-space: nowrap; }
@media (max-width: 420px) {
  .yacht__foot { grid-template-columns: 1fr 1fr; }
  .yacht__price { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 8px; }
  .yacht__price small { display: inline; }
}
.yacht__price { font-size: var(--yazi-sm); color: #67757e; }
.yacht__price small { font-size: var(--yazi-md); font-weight: 500; color: #263c44; display: block; }
.yacht__link { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 44px; padding: 11px 18px; border: 1px solid #c6d4d6; border-radius: 4px; font-size: var(--yazi-sm); font-weight: 500; color: #294851; transition: color .2s, background .2s; }
.yacht__link:hover { background: #294851; color: #fff; }
.yacht :is(a, button, summary):focus-visible { outline: 2px solid #286c73; outline-offset: 3px; }
.fleet__note { max-width: 850px; margin-top: 30px; font-size: var(--yazi-sm); color: #687780; line-height: 1.7; }
@media (max-width: 768px) {
  .yacht__name, .yacht__engine, .yacht__intro { min-height: 0; }
  .yacht__name { font-size: 2rem; }
  .yacht__body { padding: 24px; }
  .yacht__intro { margin-top: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .yacht, .yacht__image { transition: none; }
}

/* ---------- LOCAL PHOTO GALLERY ---------- */
body.gallery-open { overflow: hidden; }
.yacht-gallery { position: fixed; inset: 0; margin: auto; width: min(1120px, calc(100% - 64px)); max-width: none; max-height: calc(100dvh - 48px); padding: 0; border: 1px solid #dce7e7; border-radius: 12px; background: #f8faf9; color: #294851; box-shadow: 0 30px 100px rgba(9,32,40,.2); overflow: auto; overscroll-behavior: contain; }
.yacht-gallery::backdrop { background: rgba(28,48,55,.58); backdrop-filter: blur(7px); }
.yacht-gallery__panel { padding: 24px; }
.yacht-gallery__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.yacht-gallery__eyebrow { color: #687e80; font-size: var(--yazi-xs); letter-spacing: .16em; margin-bottom: 5px; }
.yacht-gallery__header h2 { font: 500 clamp(1.55rem, 3vw, 2.2rem)/1.15 var(--font-display); }
.yacht-gallery__close, .yacht-gallery__arrow { display: grid; place-items: center; flex-shrink: 0; width: 46px; height: 46px; border: 1px solid #cad9d9; border-radius: 50%; background: #fff; color: #294851; cursor: pointer; transition: background .2s, color .2s; }
.yacht-gallery__close:hover, .yacht-gallery__arrow:hover { background: #294851; color: #fff; }
.yacht-gallery__stage { position: relative; display: grid; place-items: center; height: clamp(180px, 53dvh, 610px); border-radius: 7px; background: #eaf0ef; overflow: hidden; touch-action: pan-y pinch-zoom; }
.yacht-gallery__stage > img { width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.yacht-gallery__arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.94); font-size: 1.35rem; box-shadow: 0 2px 14px rgba(20,50,60,.12); }
.yacht-gallery__arrow--prev { left: 16px; }
.yacht-gallery__arrow--next { right: 16px; }
.yacht-gallery [hidden] { display: none; }
.yacht-gallery__error { padding: 30px 70px; max-width: 450px; text-align: center; font-size: var(--yazi-md); }
.yacht-gallery__caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; font-size: var(--yazi-md); }
.yacht-gallery__caption > span { font-size: var(--yazi-sm); letter-spacing: .12em; white-space: nowrap; font-variant-numeric: tabular-nums; color: #62787c; }
.yacht-gallery__thumbs { position: relative; display: flex; gap: 9px; overflow-x: auto; padding: 3px; scrollbar-width: thin; }
.yacht-gallery__thumb { flex: 0 0 100px; height: 64px; border-radius: 5px; border: 2px solid transparent; padding: 2px; overflow: hidden; opacity: .62; cursor: pointer; }
.yacht-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 2px; }
.yacht-gallery__thumb:hover { opacity: 1; }
.yacht-gallery__thumb[aria-current="true"] { border-color: #35736f; opacity: 1; }
.yacht-gallery__footer { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 6px 24px; padding-top: 15px; color: #6b7b7d; font-size: var(--yazi-xs); line-height: 1.6; }
.yacht-gallery button:focus-visible { outline: 2px solid #286c73; outline-offset: 2px; }
@media (max-width: 768px) {
  .yacht-gallery { width: calc(100% - 20px); max-height: calc(100dvh - 20px); border-radius: 9px; }
  .yacht-gallery__panel { padding: 15px; }
  .yacht-gallery__header { gap: 10px; margin-bottom: 16px; }
  .yacht-gallery__eyebrow { font-size: var(--yazi-xs); letter-spacing: .08em; }
  .yacht-gallery__stage { height: clamp(190px, 42dvh, 440px); }
  .yacht-gallery__arrow { width: 44px; height: 44px; }
  .yacht-gallery__arrow--prev { left: 8px; }
  .yacht-gallery__arrow--next { right: 8px; }
  .yacht-gallery__thumb { flex-basis: 76px; height: 54px; }
  .yacht-gallery__caption { font-size: var(--yazi-sm); }
}
@media (prefers-reduced-motion: reduce) {
  .yacht-gallery button { transition: none; }
}

/* ---------- SERVICES ---------- */
.services { padding: 140px 48px; max-width: 1360px; margin: 0 auto; }
.services__head { text-align: center; margin-bottom: 54px; }
.services__head h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); max-width: 760px; margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.svc {
  display: flex; flex-direction: column; min-width: 0;
  background: #ffffff; border: 1px solid #d9e2e3; border-radius: 9px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease); position: relative; overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30,55,62,.09); }
.svc__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #dce9e9; }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.035); }
.svc__number { position: absolute; top: 14px; left: 14px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.93); color: #294851; font-size: var(--yazi-sm); font-weight: 500; font-variant-numeric: tabular-nums; }
.svc__body { display: flex; flex: 1; flex-direction: column; padding: 26px 24px 28px; }
.svc h3 { min-height: 2.3em; margin-bottom: 15px; font-family: var(--font-display); font-size: 1.8rem; line-height: 1.15; font-weight: 500; color: #243e46; }
.svc__intro { color: #56636a; font-size: var(--yazi-md); line-height: 1.7; margin-bottom: 26px; }
.svc__scope { margin-top: auto; padding-top: 20px; border-top: 1px solid #e1e8e8; }
.svc__scope-label { margin-bottom: 15px; color: #4e6e73; font-size: var(--yazi-xs); line-height: 1.5; font-weight: 500; letter-spacing: .08em; }
.svc__scope ul { list-style: none; display: grid; gap: 12px; }
.svc__scope li { position: relative; padding-left: 15px; color: #3c515a; font-size: var(--yazi-sm); line-height: 1.55; }
.svc__scope li::before { content: ""; position: absolute; top: .65em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: #467e81; }
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc h3 { min-height: 0; }
  .svc__media { aspect-ratio: 16 / 9; }
}
@media (max-width: 768px) {
  .services { padding-top: 100px; padding-bottom: 100px; }
  .services__head { margin-bottom: 36px; }
  .services__grid { grid-template-columns: 1fr; gap: 28px; }
  .svc__body { padding: 25px 24px 28px; }
  .svc h3 { font-size: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .svc, .svc__media img { transition: none; }
  .svc:hover, .svc:hover .svc__media img { transform: none; }
}

/* ---------- TECH SERVICE ---------- */
.techservice { padding: 160px 48px; background: linear-gradient(180deg, var(--black), var(--black-2), var(--black)); }
.techservice__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: center; }
.techservice__text h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 24px; }
.techservice__lead { color: var(--text-dim); font-size: 1.12rem; margin-bottom: 40px; max-width: 520px; }
.techservice__list { list-style: none; margin-bottom: 44px; }
.techservice__list li { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: var(--text); display: flex; gap: 16px; transition: padding-left .4s, color .4s; }
.techservice__list li span { color: var(--silver-dim); }
.techservice__list li:hover { padding-left: 12px; color: var(--silver-bright); }
.techservice__visual { display: grid; place-items: center; }
/* ⛔ Halka DÖNÜYOR: dönen bir kutunun sınırlayıcı dikdörtgeni √2 kat büyür
   (320px → ~452px) ve dar ekranda belgeyi yatay kaydırılır hale getirir.
   Görünen şey bir daire, dönme onu değiştirmiyor → `overflow: clip` ile
   kutuyu 320'de tut. Genişlik de dar ekrana göre küçülüyor. */
.gauge { position: relative; width: min(320px, 74vw); aspect-ratio: 1; height: auto;
         display: grid; place-items: center; overflow: clip; }
.gauge__ring { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 180deg, var(--silver-bright), var(--silver-dark), var(--silver), var(--silver-dark), var(--silver-bright)); mask: radial-gradient(circle, transparent 60%, #000 61%, #000 66%, transparent 67%); animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.gauge__center { text-align: center; }
.gauge__val { display: block; font-family: var(--font-display); font-size: 3.6rem; font-weight: 500; background: var(--chrome-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.gauge__lbl { font-size: var(--yazi-xs); letter-spacing: .28em; color: var(--text-faint); }

/* ---------- CONTACT ---------- */
.contact { padding: 160px 48px; max-width: 1280px; margin: 0 auto; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.contact__left h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 24px; }
.contact__lead { color: var(--text-dim); font-size: 1.12rem; margin-bottom: 50px; max-width: 440px; }
.contact__info { display: grid; gap: 4px; }
.contact__item { display: flex; flex-direction: column; gap: 4px; padding: 22px 0; border-top: 1px solid var(--line); font-size: 1.2rem; color: var(--silver); transition: padding-left .4s, color .4s; }
a.contact__item:hover { padding-left: 10px; color: var(--silver-bright); }
.contact__item span { font-size: var(--yazi-xs); letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); }
.contact__form { background: var(--panel); border: 1px solid var(--line); border-radius: 6px; padding: 44px; display: grid; gap: 26px; align-content: start; }
.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line-strong);
  padding: 14px 0; color: var(--text); font-family: inherit; font-size: 1rem; transition: border-color .4s; resize: none;
}
.field select { color: var(--text); }
.field select option { background: var(--panel); color: var(--text); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--ocean); }
.field label {
  position: absolute; left: 0; top: 14px; color: var(--text-faint); font-size: 1rem;
  pointer-events: none; transition: all .3s var(--ease);
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: -12px; font-size: var(--yazi-xs); letter-spacing: .1em; color: var(--silver-dim); text-transform: uppercase;
}
.label--static { position: static; display: block; margin-bottom: -8px; order: -1; font-size: var(--yazi-xs); letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint); }
.field:has(select) { display: flex; flex-direction: column; gap: 8px; }
.contact__note { font-size: var(--yazi-sm); color: var(--silver-dim); min-height: 20px; }

/* ---------- FOOTER (dark anchor) ---------- */
.footer { background: linear-gradient(180deg, #10151c, #0b0f15); padding: 80px 48px 40px; color: #c3c9d0; }
.footer__top { text-align: center; margin-bottom: 60px; }
.footer__logo { height: 96px; margin: 0 auto 20px; opacity: .96; }
.footer__tag { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: #9aa2ab; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: var(--yazi-sm); color: #7b838d; letter-spacing: .06em; }
.footer__links { display: flex; gap: 28px; }
.footer__links a { color: #9aa2ab; }
.footer__links a:hover { color: #eef0f2; }

/* ---------- CHATBOT ---------- */
.chat-fab {
  position: fixed; bottom: 32px; right: 32px; z-index: 950;
  width: 64px; height: 64px; border-radius: 50%; background: var(--chrome); color: #f3f5f7;
  display: grid; place-items: center; box-shadow: 0 12px 40px rgba(30,40,55,.35); transition: transform .4s var(--ease);
}
.chat-fab:hover { transform: scale(1.08) rotate(-6deg); }
.chat-fab.hidden { transform: scale(0); pointer-events: none; }
.chat-fab.nudge { animation: fabNudge 1.4s var(--ease) 3; }
@keyframes fabNudge { 0%,100% { transform: translateY(0); } 30% { transform: translateY(-10px) scale(1.06); } 60% { transform: translateY(0) scale(1); } }
.chat-fab__pulse { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--silver); animation: fabPulse 2.4s var(--ease) infinite; }
@keyframes fabPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

.chat {
  position: fixed; bottom: 32px; right: 32px; z-index: 960;
  width: 400px; max-width: calc(100vw - 32px); height: 600px; max-height: calc(100dvh - 64px);
  background: var(--panel); border: 1px solid var(--line-strong); border-radius: 16px;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 30px 90px rgba(20,28,38,.28);
  transform: translateY(30px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.chat.open { transform: none; opacity: 1; pointer-events: auto; }
.chat__header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.chat__agent { display: flex; align-items: center; gap: 13px; }
.chat__avatar { position: relative; width: 44px; height: 44px; border-radius: 50%; background: #12181f; border: 1px solid var(--line-strong); display: grid; place-items: center; }
.chat__avatar img { width: 30px; }
.chat__online { position: absolute; bottom: 1px; right: 1px; width: 11px; height: 11px; border-radius: 50%; background: #55e08a; border: 2px solid var(--panel); box-shadow: 0 0 8px #55e08a; }
.chat__name { font-size: var(--yazi-md); color: var(--silver-bright); letter-spacing: .02em; }
.chat__status { font-size: var(--yazi-xs); color: var(--text-faint); }
.chat__close { width: 32px; height: 32px; border-radius: 50%; color: var(--text-dim); font-size: 1rem; transition: background .3s, color .3s; }
.chat__close:hover { background: rgba(28,36,48,.06); color: var(--silver-bright); }
.chat__body { flex: 1; overflow-y: auto; padding: 22px 20px; display: flex; flex-direction: column; gap: 14px; }
.chat__body::-webkit-scrollbar { width: 5px; }

.msg { max-width: 82%; padding: 13px 16px; font-size: var(--yazi-md); line-height: 1.55; border-radius: 16px; animation: msgIn .4s var(--ease); }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } }
.msg--bot { align-self: flex-start; background: var(--panel-2); border: 1px solid var(--line); border-bottom-left-radius: 4px; color: var(--text); }
.msg--user { align-self: flex-end; background: var(--chrome); color: #f3f5f7; border-bottom-right-radius: 4px; font-weight: 400; }
.msg b { color: var(--silver-bright); font-weight: 600; }
.msg--bot a { color: var(--ocean-bright); text-decoration: underline; }

.typing { align-self: flex-start; display: flex; gap: 5px; padding: 15px 18px; background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px; border-bottom-left-radius: 4px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--silver-dim); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-6px); opacity: 1; } }

.chat__quick { display: flex; gap: 8px; padding: 0 16px 12px; flex-wrap: wrap; }
.chip { font-size: var(--yazi-sm); padding: 9px 14px; border: 1px solid var(--line-strong); border-radius: 30px; color: var(--silver-dim); transition: all .3s; white-space: nowrap; }
.chip:hover { border-color: var(--silver); color: var(--silver-bright); background: rgba(28,36,48,.05); }

.chat__input { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); background: var(--panel-2); }
.chat__input input { flex: 1; background: #eef0f2; border: 1px solid var(--line); border-radius: 30px; padding: 12px 18px; color: var(--text); font-family: inherit; font-size: var(--yazi-md); }
.chat__input input:focus { outline: none; border-color: var(--line-strong); }
.chat__input button { width: 42px; height: 42px; border-radius: 50%; background: var(--chrome); color: #f3f5f7; display: grid; place-items: center; transition: transform .3s; flex-shrink: 0; }
.chat__input button:hover { transform: scale(1.08); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .techservice__inner, .contact__inner { grid-template-columns: 1fr; gap: 56px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 18px 22px; }
  .nav.scrolled { padding: 12px 22px; }
  .nav__links {
    position: fixed; inset: 0; background: rgba(6,7,9,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: 34px;
    /* ⛔ translateX(100%) KULLANMA: fixed öğe viewport genişliği kadar sağa taşıp
       documentElement.scrollWidth'i büyütüyor → tüm sayfada yatay kaydırma. Ölçüldü:
       375px ekranda scrollWidth 396. Görünürlükle gizle, konumla değil. */
    opacity: 0; visibility: hidden; transform: translateX(6%);
    transition: opacity .35s var(--ease), transform .45s var(--ease), visibility .45s;
    z-index: 890;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { font-size: 1.1rem; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; z-index: 900; }
  .nav__burger.open span:first-child { transform: rotate(45deg) translate(4px, 5px); }
  .nav__burger.open span:last-child { transform: rotate(-45deg) translate(4px, -5px); }
  .exp, .fleet, .services, .techservice, .contact, .solve { padding-left: 22px; padding-right: 22px; }
  .solve__row { grid-template-columns: 1fr; gap: 18px; padding: 32px 0; }
  .exp { padding-top: 100px; padding-bottom: 100px; }
  .scene { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .scene__num { font-size: 2.4rem; }
  .fleet__grid, .services__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 44px 20px; }
  .footer__bottom { flex-direction: column; gap: 20px; text-align: center; }
  .chat { bottom: 0; right: 0; width: 100vw; max-width: 100vw; height: 100dvh; max-height: 100dvh; border-radius: 0; }
  .chat-fab { bottom: 22px; right: 22px; }
  .hero__marquee { display: none; }
  /* Butonlar mobilde alt alta diziliyor, "KAYDIR" göstergesi tam üstlerine
     biniyordu — ölçüldü, ekran görüntüsünde çakışma net. Mobilde gizle. */
  .hero__scroll { display: none; }
  .hero__eyebrow { letter-spacing: .26em; padding-left: .26em; margin-bottom: 22px; }
  .hero__content { padding: 0 26px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .hero__actions .btn { width: 100%; }
  /* ⛔ background-clip:text ile text-shadow ÇALIŞMAZ (dolgu şeffaf).
     Açık zeminde vurgulu metin okunmuyordu → mobilde düz renk + gölge. */
  .hero__sub .hl, .hero__title--accent {
    background: none; -webkit-text-fill-color: #f7e3bd; color: #f7e3bd;
    text-shadow: 0 2px 10px rgba(2,28,40,.95), 0 6px 22px rgba(2,28,40,.7);
  }
}

/* ============================================================
   MOBİL ERİŞİLEBİLİRLİK — 10 Eyl 2026, ölçümle bulundu
   (scripts/mobil-denetim.mjs · iPhone SE / iPhone 15 / iPad mini)
   ============================================================ */

/* --- Dokunma hedefi ≥ 44px ---------------------------------
   ⛔ Öğeyi BÜYÜTME, görünmez ::after ile hedefi büyüt: tek piksel
   kayma olmaz, tasarım bozulmaz. Yan yana duranlarda çakışmasın
   diye yalnız eksik kalan eksende genişletiliyor. */
.nav__brand, .nav__links a, .footer__links a, .footer__credit a, .contact__item,
.nav__burger, .film__sound, .chat__close,
.yacht-gallery__close, .yacht-gallery__arrow, .chat__input button {
  position: relative;
}
.nav__brand::before, .nav__links a::before, .footer__links a::before, .footer__credit a::before, .contact__item::before,
.nav__burger::before, .film__sound::before, .chat__close::before,
.yacht-gallery__close::before, .chat__input button::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, 44px); height: max(100%, 44px);
  /* ::after zaten alt çizgi animasyonunda kullanılıyor → ::before */
}

/* Hamburger görsel olarak küçük kalsın ama 44×44 basılsın */
.nav__burger { padding: 10px 8px; }

@media (max-width: 768px) {
  /* --- 12px altı metin kalmasın (ölçüm: 10,24 – 11,84px) ------- */
  .section-label,
  .film__eyebrow,
  .preloader__text,
  .hero__scroll span,
  .film__rec,
  .gauge__lbl,
  .chat__status,
  .yacht-gallery__eyebrow,
  .contact__item span,
  .field label,
  .label--static { font-size: var(--yazi-xs); }

  /* Harf aralığı büyük olan etiketler 12px'te satır taşırmasın */
  .section-label { letter-spacing: .22em; }
  .film__eyebrow, .preloader__text { letter-spacing: .34em; }

  /* --- Mobil menü satırları gerçekten basılabilir olsun ------- */
  .nav__links a { min-height: 44px; display: flex; align-items: center; padding: 0 12px; }

  /* --- Footer bağlantıları arasında parmak payı --------------- */
  .footer__links { gap: 22px; flex-wrap: wrap; justify-content: center; }
  .footer__links a { min-height: 44px; display: inline-flex; align-items: center; }

  /* --- Sohbet: iOS araç çubuğu altında input kaybolmasın ------ */
  .chat { padding-bottom: env(safe-area-inset-bottom); }
  .chat__body { overscroll-behavior: contain; }

  /* --- Film HUD düğmesi ---------------------------------------- */
  .film__sound { width: 44px; height: 44px; }
}

/* --- Galeri okları: mobilde 44px ve kenardan içeride ---------- */
@media (max-width: 640px) {
  .yacht-gallery__arrow { width: 44px; height: 44px; }
  .yacht-gallery__arrow--prev { left: 8px; }
  .yacht-gallery__arrow--next { right: 8px; }
}

/* --- iOS kaydırma kilidi: body tek başına yetmez -------------- */
html.no-scroll, html.no-scroll body { overflow: hidden; height: 100%; }

/* ---------- Künye (ra.studio) ---------- */
.footer__credit {
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center; padding: 18px 24px 26px;
  font-size: var(--yazi-xs); letter-spacing: .1em; color: rgba(255,255,255,.42);
}
.footer__credit a { color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.25); padding-bottom: 1px; }
.footer__credit a:hover { color: #fff; border-color: #fff; }

@media (max-width: 768px) {
  /* Yüzen sohbet düğmesi footer bağlantılarının üstüne biniyordu (ölçüldü:
     390px ekranda "İletişim" bağlantısı FAB'ın altında kalıyor). */
  .footer { padding-bottom: 84px; }
}

/* ============================================================
   MELİS — sohbet içi yat kartları ve durum mesajları
   ============================================================ */
.msg-yachts { display: grid; gap: 8px; margin: 4px 0 10px; }
.yc {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 8px; min-height: 76px; text-align: left;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.yc:hover { border-color: var(--line-strong); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(20,30,40,.08); }
.yc__img {
  flex: 0 0 84px; height: 60px; border-radius: 6px;
  background-size: cover; background-position: center; background-color: #dfe3e6;
}
.yc__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.yc__brand { font-size: var(--yazi-xs); letter-spacing: .16em; text-transform: uppercase; color: var(--text-faint); }
.yc__name { font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; line-height: 1.15; }
.yc__meta { font-size: var(--yazi-xs); color: var(--text-dim); }

.msg--hata { border-left: 2px solid #b4544a; padding-left: 12px; }
.msg--not { font-size: var(--yazi-xs); color: #2f6544; }

.contact__note { min-height: 20px; font-size: var(--yazi-sm); margin-top: 10px; }
.contact__note--iyi { color: #2f6544; }
.contact__note--hata { color: #b4544a; }

/* Broşür bağlantısı — "Bilgi al" ile aynı satırda, ikincil ağırlıkta. */
.yacht__link--pdf { color: var(--text-dim); }
.yacht__link--pdf:hover { color: var(--silver-bright); }
