/* ==========================================================================
   SUIT MARINA — mobil landing page
   Referans mockup: 901 x 1746 px  ->  tasarım tuvali 450 x 873 CSS px
   Tüm ölçüler `--s` birimi ile referanstan bire bir türetilmiştir.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* 1 tasarım birimi = 450px tuvalde 1px, dar ekranlarda orantılı küçülür */
  --s: min(1px, 0.2222vw);

  --canvas: calc(450 * var(--s));
  --pad: calc(20 * var(--s));

  /* zemin */
  --bg: #070706;
  --bg-2: #0b0b0a;
  --bg-3: #11110f;

  /* altın */
  --gold: #d9ad4c;
  --gold-lt: #f3d37f;
  --gold-dk: #b98526;
  --gold-line: rgba(217, 173, 76, 0.55);

  /* metin */
  --white: #ffffff;
  --muted: #aaa69d;
  --muted-2: #8d897f;

  /* metalik altın yüzey (logo, ikon, tagline) */
  --gold-metal: linear-gradient(
      170deg,
      #f8e7b4 0%,
      #ecd082 22%,
      #d8ae51 46%,
      #c09334 62%,
      #f2dc9e 78%,
      #b98526 100%);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* alt sabit navigasyon içeriği kapatmasın */
  padding-bottom: calc(62 * var(--s) + env(safe-area-inset-bottom, 0px));
}

/* geniş ekranda mobil tuvali ortala, kenarlara hafif sıcak ışık ver */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 32% at -8% 88%, rgba(126, 95, 40, 0.18), transparent 72%),
    radial-gradient(ellipse 55% 32% at 108% 88%, rgba(126, 95, 40, 0.18), transparent 72%),
    var(--bg);
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }

p, h1, h2, ul { margin: 0; }
ul { padding: 0; list-style: none; }

button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; -webkit-tap-highlight-color: transparent; }

.ic { width: 100%; height: 100%; display: block; }

/* ikon sprite + altın degrade tanımı; görünmez ama paint-server olarak çalışır */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* harf aralığı verilen ortalı metinlerde sondaki boşluğu telafi eder */
.tr { display: inline-block; }

.app {
  width: 100%;
  max-width: var(--canvas);
  margin: 0 auto;
  position: relative;
}

/* --------------------------------------------------------------------------
   3. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: calc(430 * var(--s));
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 33%;
  filter: saturate(0.84) contrast(1.05) brightness(0.9);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 78% at 50% 34%, rgba(0, 0, 0, 0) 34%, rgba(4, 4, 4, 0.55) 100%),
    linear-gradient(
      180deg,
      rgba(6, 6, 6, 0.54) 0%,
      rgba(6, 6, 6, 0.37) 11%,
      rgba(6, 6, 6, 0.26) 26%,
      rgba(6, 6, 6, 0.18) 42%,
      rgba(6, 6, 6, 0.22) 58%,
      rgba(6, 6, 6, 0.34) 72%,
      rgba(7, 7, 6, 0.64) 84%,
      rgba(7, 7, 6, 0.9) 93%,
      var(--bg) 100%);
}

.hero__inner { position: relative; height: 100%; }

/* --- üst bar ------------------------------------------------------------- */
.hero__top {
  position: absolute;
  z-index: 3;
  top: calc(13 * var(--s));
  left: var(--pad);
  right: var(--pad);
  display: flex;
  align-items: center;
  height: calc(36 * var(--s));
}

.burger {
  width: calc(25 * var(--s));
  height: calc(18 * var(--s));
  margin-left: calc(3 * var(--s));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger span {
  display: block;
  height: calc(2 * var(--s));
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 calc(1 * var(--s)) calc(4 * var(--s)) rgba(0, 0, 0, 0.8);
}

.hero__call {
  width: calc(36 * var(--s));
  height: calc(36 * var(--s));
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-lt);
  background: rgba(12, 11, 9, 0.55);
  border: calc(1 * var(--s)) solid rgba(226, 190, 116, 0.72);
  backdrop-filter: blur(2px);
  box-shadow: 0 calc(3 * var(--s)) calc(12 * var(--s)) rgba(0, 0, 0, 0.5);
}
.hero__call .ic { width: calc(16 * var(--s)); height: calc(16 * var(--s)); fill: currentColor; }

/* --- logo bloğu ---------------------------------------------------------- */
.brandblock {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  text-align: center;
}

/* Logo referans mockup'tan alfa kanallı olarak çıkarıldı (assets/logo.png):
   font taklidi yerine orijinal "Suit MARİNA" yazısının kendisi kullanılır. */
.brandblock__logo {
  width: calc(224 * var(--s));
  margin: calc(28.5 * var(--s)) auto 0;
  font-size: 0;
}
.brandblock__logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 calc(4 * var(--s)) calc(15 * var(--s)) rgba(0, 0, 0, 0.6));
}

.brandblock__city {
  margin-top: calc(21.4 * var(--s));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(19 * var(--s));
  font-size: calc(10 * var(--s));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.66em;
  color: #efe7d6;
  text-shadow: 0 calc(2 * var(--s)) calc(8 * var(--s)) rgba(0, 0, 0, 0.7);
}
.brandblock__city span { display: inline-block; margin-right: -0.66em; }
.brandblock__city .rule {
  width: calc(60 * var(--s));
  height: calc(1 * var(--s));
  background: linear-gradient(90deg, rgba(226, 197, 132, 0.2) 0%, rgba(226, 197, 132, 0.9) 100%);
}
.brandblock__city .rule:last-child { transform: scaleX(-1); }

.brandblock__claim {
  margin-top: calc(16.5 * var(--s));
  font-size: calc(11.4 * var(--s));
  font-weight: 500;
  line-height: 1.31;
  letter-spacing: 0.38em;
  color: #e8e6e1;
  text-shadow: 0 calc(2 * var(--s)) calc(9 * var(--s)) rgba(0, 0, 0, 0.75);
}
.brandblock__claim .tr { margin-right: -0.38em; }

/* --- hero kampanya rozeti (telefonu tetikler) ----------------------------- */
.promo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(97.5 * var(--s));
  width: fit-content;
  max-width: calc(410 * var(--s));
  margin: 0 auto;
  height: calc(28 * var(--s));
  padding: 0 calc(6 * var(--s)) 0 calc(12 * var(--s));
  display: flex;
  align-items: center;
  gap: calc(7 * var(--s));
  border-radius: calc(14 * var(--s));
  background: rgba(10, 9, 7, 0.62);
  border: calc(1 * var(--s)) solid rgba(226, 190, 116, 0.55);
  backdrop-filter: blur(6px);
  box-shadow: 0 calc(6 * var(--s)) calc(18 * var(--s)) rgba(0, 0, 0, 0.5);
}
.promo__dot {
  width: calc(6 * var(--s));
  height: calc(6 * var(--s));
  border-radius: 50%;
  background: var(--gold-lt);
  box-shadow: 0 0 0 0 rgba(243, 211, 127, 0.6);
  animation: promo-pulse 2.2s ease-out infinite;
}
@keyframes promo-pulse {
  0% { box-shadow: 0 0 0 0 rgba(243, 211, 127, 0.55); }
  70%, 100% { box-shadow: 0 0 0 calc(7 * var(--s)) rgba(243, 211, 127, 0); }
}
.promo__text {
  flex: 0 1 auto;
  min-width: 0;
  font-size: calc(9.2 * var(--s));
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ded8cb;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.promo__time {
  flex: none;
  font-size: calc(10.4 * var(--s));
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-lt);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  white-space: nowrap;
}
.promo__go {
  height: calc(19 * var(--s));
  padding: 0 calc(10 * var(--s));
  border-radius: calc(10 * var(--s));
  display: grid;
  place-items: center;
  font-size: calc(8.6 * var(--s));
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #2c1f08;
  background: linear-gradient(96deg, #f0d692, #d6ab4b);
}

/* --------------------------------------------------------------------------
   4. REZERVASYON CTA
   -------------------------------------------------------------------------- */
.cta {
  position: absolute;
  overflow: hidden;
  left: var(--pad);
  right: var(--pad);
  bottom: calc(14 * var(--s));
  height: calc(70.5 * var(--s));
  display: flex;
  align-items: center;
  padding: 0 calc(24 * var(--s)) 0 calc(30.5 * var(--s));
  border-radius: calc(19 * var(--s));
  color: #35260c;
  background:
    linear-gradient(
      92deg,
      #e6c87d 0%,
      #e3c376 16%,
      #e0bf72 34%,
      #d1af5f 52%,
      #be9748 74%,
      #ac8639 88%,
      #9c762a 100%);
  border: calc(1 * var(--s)) solid rgba(255, 238, 190, 0.5);
  box-shadow:
    inset 0 calc(1.5 * var(--s)) 0 rgba(255, 247, 219, 0.6),
    inset 0 calc(-2 * var(--s)) calc(6 * var(--s)) rgba(120, 84, 20, 0.28),
    0 calc(10 * var(--s)) calc(26 * var(--s)) rgba(0, 0, 0, 0.55),
    0 calc(2 * var(--s)) calc(6 * var(--s)) rgba(0, 0, 0, 0.45);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 38%, rgba(255, 252, 238, 0.5) 49%, transparent 60%);
  transform: translateX(-130%);
  animation: cta-sweep 6s cubic-bezier(0.4, 0, 0.2, 1) 1.4s infinite;
}
@keyframes cta-sweep {
  0%, 72% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}

.cta__icon {
  width: calc(36 * var(--s));
  height: calc(36 * var(--s));
  flex: none;
  color: #2f2109;
}
.cta__icon .ic { stroke: currentColor; }

.cta__text {
  margin-left: calc(24 * var(--s));
  display: flex;
  flex-direction: column;
  gap: calc(5.3 * var(--s));
  flex: 1 1 auto;
  min-width: 0;
}
.cta__title {
  font-size: calc(15 * var(--s));
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.005em;
  color: #2a1c05;
}
.cta__sub {
  font-size: calc(11.1 * var(--s));
  font-weight: 500;
  line-height: 1;
  color: #3f2d0e;
}

.cta__arrow {
  width: calc(25 * var(--s));
  height: calc(25 * var(--s));
  flex: none;
  color: #33240a;
}
.cta__arrow .ic { stroke: currentColor; }

/* --------------------------------------------------------------------------
   5. HIZLI ERİŞİM KARTLARI
   -------------------------------------------------------------------------- */
.main { padding: calc(2 * var(--s)) var(--pad) 0; }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(9 * var(--s));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(7.6 * var(--s)) calc(8 * var(--s)) calc(9.8 * var(--s));
  border-radius: calc(10 * var(--s));
  border: calc(1 * var(--s)) solid transparent;
  /* içte kart zemini, dışta dikeyde parlayan altın kenarlık */
  background-image:
    linear-gradient(180deg, #191510 0%, #14110b 42%, #0a0a09 100%),
    linear-gradient(
      180deg,
      rgba(217, 173, 76, 0.1) 0%,
      rgba(233, 199, 133, 0.78) 42%,
      rgba(233, 199, 133, 0.62) 62%,
      rgba(217, 173, 76, 0.18) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 calc(6 * var(--s)) calc(18 * var(--s)) rgba(0, 0, 0, 0.55);
}

.card__icon {
  width: calc(44 * var(--s));
  height: calc(44 * var(--s));
  display: grid;
  place-items: center;
  margin-bottom: calc(10.7 * var(--s));
}
.card__icon .ic {
  width: 100%;
  height: 100%;
  fill: url(#goldGrad);
  filter: drop-shadow(0 calc(2 * var(--s)) calc(7 * var(--s)) rgba(217, 173, 76, 0.28));
}

.card__title {
  font-size: calc(11.5 * var(--s));
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.card__sub {
  margin-top: calc(7.7 * var(--s));
  font-size: calc(9.1 * var(--s));
  font-weight: 400;
  line-height: 1.25;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   5b. AYRICALIKLI FIRSATLAR — telefonu tetikleyen kampanya butonları
   -------------------------------------------------------------------------- */
.offers { margin-top: calc(17 * var(--s)); }

.offers__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(13 * var(--s));
  margin-bottom: calc(11 * var(--s));
  font-size: calc(9.4 * var(--s));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #b9b2a4;
}
.offers__head span { display: inline-block; margin-right: -0.3em; }
.offers__head .rule {
  flex: 1 1 auto;
  max-width: calc(70 * var(--s));
  height: calc(1 * var(--s));
  background: linear-gradient(90deg, rgba(217, 173, 76, 0.05) 0%, rgba(217, 173, 76, 0.7) 100%);
}
.offers__head .rule:last-child { transform: scaleX(-1); }

.offer {
  position: relative;
  display: flex;
  align-items: center;
  gap: calc(11 * var(--s));
  height: calc(62 * var(--s));
  padding: 0 calc(11 * var(--s));
  border-radius: calc(14 * var(--s));
  overflow: hidden;
}
.offer + .offer { margin-top: calc(9 * var(--s)); }

.offer__badge {
  width: calc(42 * var(--s));
  height: calc(42 * var(--s));
  flex: none;
  border-radius: calc(12 * var(--s));
  display: grid;
  place-items: center;
  font-size: calc(14 * var(--s));
  font-weight: 800;
  letter-spacing: -0.01em;
}
.offer__badge .ic { width: calc(21 * var(--s)); height: calc(21 * var(--s)); }

.offer__text { flex: 1 1 auto; min-width: 0; }
.offer__title {
  display: block;
  font-size: calc(11.8 * var(--s));
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.offer__sub {
  display: block;
  margin-top: calc(4 * var(--s));
  font-size: calc(9.2 * var(--s));
  line-height: 1.2;
}

.offer__btn {
  flex: none;
  height: calc(30 * var(--s));
  padding: 0 calc(12 * var(--s));
  border-radius: calc(15 * var(--s));
  display: flex;
  align-items: center;
  gap: calc(6 * var(--s));
  font-size: calc(9.8 * var(--s));
  font-weight: 700;
  letter-spacing: 0.12em;
}
.offer__btn .ic { width: calc(11 * var(--s)); height: calc(11 * var(--s)); fill: currentColor; }

/* altın kampanya — birincil */
.offer--gold {
  color: #2a1c05;
  background: linear-gradient(96deg, #e9cd86 0%, #ddb96b 45%, #c9a04b 78%, #b88f3c 100%);
  border: calc(1 * var(--s)) solid rgba(255, 238, 190, 0.5);
  box-shadow:
    inset 0 calc(1.5 * var(--s)) 0 rgba(255, 247, 219, 0.55),
    0 calc(8 * var(--s)) calc(22 * var(--s)) rgba(0, 0, 0, 0.5);
}
.offer--gold .offer__badge { background: rgba(38, 26, 6, 0.9); color: var(--gold-lt); }
.offer--gold .offer__sub { color: #4a3610; }
.offer--gold .offer__btn { background: #241906; color: var(--gold-lt); }

/* ücretsiz seans — ikincil */
.offer--dark {
  border: calc(1 * var(--s)) solid transparent;
  background-image:
    linear-gradient(180deg, #191510 0%, #14110b 42%, #0a0a09 100%),
    linear-gradient(180deg, rgba(217, 173, 76, 0.14) 0%, rgba(233, 199, 133, 0.72) 45%, rgba(217, 173, 76, 0.2) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 calc(6 * var(--s)) calc(18 * var(--s)) rgba(0, 0, 0, 0.55);
}
.offer--dark .offer__badge {
  background: linear-gradient(150deg, rgba(243, 211, 127, 0.18), rgba(185, 133, 38, 0.12));
  border: calc(1 * var(--s)) solid rgba(217, 173, 76, 0.32);
  color: var(--gold-lt);
}
.offer--dark .offer__badge .ic { fill: url(#goldGrad); }
.offer--dark .offer__title { color: #fff; }
.offer--dark .offer__sub { color: var(--muted); }
.offer--dark .offer__btn {
  color: #2c1f08;
  background: linear-gradient(96deg, #e6c87d, #d1a54a);
  box-shadow: inset 0 calc(1 * var(--s)) 0 rgba(255, 247, 219, 0.5);
}

/* --------------------------------------------------------------------------
   6. TANITIM VİDEOSU BANNERI
   -------------------------------------------------------------------------- */
.video {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: calc(16.5 * var(--s));
  height: calc(86 * var(--s));
  padding: 0 calc(19 * var(--s)) 0 calc(26.5 * var(--s));
  border-radius: calc(16 * var(--s));
  border: calc(1 * var(--s)) solid rgba(217, 173, 76, 0.34);
  overflow: hidden;
  box-shadow: 0 calc(8 * var(--s)) calc(22 * var(--s)) rgba(0, 0, 0, 0.55);
}

.video__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: 50% 60%;
}

.video__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 6, 6, 0.97) 0%,
    rgba(6, 6, 6, 0.95) 34%,
    rgba(6, 6, 6, 0.82) 52%,
    rgba(6, 6, 6, 0.66) 74%,
    rgba(6, 6, 6, 0.7) 100%);
}

.video__play {
  position: relative;
  width: calc(42.5 * var(--s));
  height: calc(42.5 * var(--s));
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2c1f08;
  background: linear-gradient(150deg, #f6e2a6 0%, #e2c06a 40%, #c99f3f 72%, #b28425 100%);
  box-shadow:
    0 0 0 calc(3 * var(--s)) rgba(217, 173, 76, 0.16),
    0 0 0 calc(6 * var(--s)) rgba(217, 173, 76, 0.09),
    0 0 calc(26 * var(--s)) calc(6 * var(--s)) rgba(217, 173, 76, 0.34);
}
.video__play .ic {
  width: calc(17 * var(--s));
  height: calc(17 * var(--s));
  fill: currentColor;
  margin-left: calc(2 * var(--s));
}

.video__text {
  position: relative;
  margin-left: calc(23 * var(--s));
  flex: 1 1 auto;
  min-width: 0;
}
.video__title {
  display: block;
  font-size: calc(12.9 * var(--s));
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.1em;
  color: #fff;
}
.video__sub {
  display: block;
  margin-top: calc(5 * var(--s));
  font-size: calc(10.4 * var(--s));
  font-weight: 400;
  line-height: 1;
  color: #cfcac0;
}

.video__arrow {
  position: relative;
  width: calc(18 * var(--s));
  height: calc(18 * var(--s));
  flex: none;
  color: var(--gold-lt);
}
.video__arrow .ic { stroke: currentColor; }

/* --------------------------------------------------------------------------
   7. FOOTER BRAND
   -------------------------------------------------------------------------- */
.brandfoot {
  padding-top: calc(28 * var(--s));
  padding-bottom: calc(20 * var(--s));
  text-align: center;
}

.brandfoot__name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(17 * var(--s));
  font-size: calc(11.4 * var(--s));
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.375em;
  color: #dcd7cc;
}
.brandfoot__name span { display: inline-block; margin-right: -0.375em; }
.brandfoot__name .rule {
  width: calc(65 * var(--s));
  height: calc(1.5 * var(--s));
  background: linear-gradient(90deg, rgba(217, 173, 76, 0.16) 0%, rgba(217, 173, 76, 0.8) 100%);
}
.brandfoot__name .rule:last-child { transform: scaleX(-1); }


/* --------------------------------------------------------------------------
   8. ALT SABİT NAVİGASYON
   -------------------------------------------------------------------------- */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(11, 11, 10, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(217, 173, 76, 0.16);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.tabbar__inner {
  max-width: var(--canvas);
  margin: 0 auto;
  height: calc(62 * var(--s));
  padding: 0 calc(14 * var(--s));
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: calc(10 * var(--s));
}

.tab {
  height: calc(42 * var(--s));
  border-radius: calc(12 * var(--s));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(7 * var(--s));
  font-size: calc(10 * var(--s));
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #cdc8bd;
}
.tab .ic { width: calc(15 * var(--s)); height: calc(15 * var(--s)); fill: currentColor; }

.tab--main {
  color: #2c1f08;
  background: linear-gradient(96deg, #e6c87d 0%, #d9ad4c 58%, #bd9139 100%);
  box-shadow:
    inset 0 calc(1 * var(--s)) 0 rgba(255, 247, 219, 0.55),
    0 calc(4 * var(--s)) calc(14 * var(--s)) rgba(217, 173, 76, 0.22);
}

/* --------------------------------------------------------------------------
   9. DRAWER MENÜ
   -------------------------------------------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 60; }
.drawer[hidden] { display: none; }

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.drawer__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(78vw, calc(300 * var(--s)));
  padding: calc(26 * var(--s)) calc(24 * var(--s));
  background: linear-gradient(180deg, #141210 0%, #0a0a09 100%);
  border-right: 1px solid rgba(217, 173, 76, 0.3);
  transform: translateX(-101%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer.is-open .drawer__panel { transform: none; }

.drawer__close {
  align-self: flex-end;
  width: calc(30 * var(--s));
  height: calc(30 * var(--s));
  color: var(--muted);
}

.drawer__brand {
  margin: calc(6 * var(--s)) 0 calc(26 * var(--s));
  font-size: calc(15 * var(--s));
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-lt);
}
.drawer__brand span {
  font-family: "Great Vibes", cursive;
  font-size: calc(30 * var(--s));
  letter-spacing: 0;
  margin-right: calc(6 * var(--s));
}

.drawer__list { display: flex; flex-direction: column; gap: calc(4 * var(--s)); }
.drawer__list a {
  display: block;
  padding: calc(13 * var(--s)) 0;
  font-size: calc(12.5 * var(--s));
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #e6e2da;
  border-bottom: 1px solid rgba(217, 173, 76, 0.14);
}

.drawer__cta {
  margin-top: calc(18 * var(--s));
  flex: none;
  height: calc(46 * var(--s));
  border-radius: calc(14 * var(--s));
  display: grid;
  place-items: center;
  font-size: calc(12 * var(--s));
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2c1f08;
  background: linear-gradient(96deg, #e6c87d, #d1a54a);
}

/* --------------------------------------------------------------------------
   10. ETKİLEŞİM / ERİŞİLEBİLİRLİK
   -------------------------------------------------------------------------- */
.card,
.cta,
.video,
.offer,
.promo,
.tab,
.hero__call { transition: transform 0.16s ease, filter 0.16s ease; }

.card:active,
.cta:active,
.video:active,
.offer:active,
.promo:active,
.tab:active,
.hero__call:active { transform: scale(0.977); }

:focus-visible { outline: calc(2 * var(--s)) solid rgba(243, 211, 127, 0.85); outline-offset: calc(2 * var(--s)); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* --------------------------------------------------------------------------
   11. HİZMET LANDING PAGE BİLEŞENLERİ
   Mevcut tasarım dilinin (koyu zemin + ince altın kenar + 10–16px radius)
   doğal devamı olacak şekilde kurgulanmıştır.
   -------------------------------------------------------------------------- */

/* --- hero: hizmet sayfasındaki H1 ve destek cümlesi ---------------------- */
.brandblock__h1 {
  margin-top: calc(15 * var(--s));
  font-size: calc(14 * var(--s));
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.18em;
  color: #f4f1ea;
  text-shadow: 0 calc(2 * var(--s)) calc(10 * var(--s)) rgba(0, 0, 0, 0.8);
}
.brandblock__h1 .tr { margin-right: -0.18em; }

.brandblock__lead {
  margin: calc(9 * var(--s)) auto 0;
  max-width: calc(330 * var(--s));
  font-size: calc(10.6 * var(--s));
  font-weight: 400;
  line-height: 1.5;
  color: #d6d1c6;
  text-shadow: 0 calc(2 * var(--s)) calc(9 * var(--s)) rgba(0, 0, 0, 0.85);
}

/* --- ortak altın buton --------------------------------------------------- */
.btn-gold,
.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 * var(--s));
  width: 100%;
  height: calc(44 * var(--s));
  border-radius: calc(14 * var(--s));
  font-size: calc(11 * var(--s));
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  transition: transform 0.16s ease;
}
.btn-gold .ic,
.btn-line .ic { width: calc(14 * var(--s)); height: calc(14 * var(--s)); flex: none; fill: currentColor; }
.btn-gold:active,
.btn-line:active { transform: scale(0.977); }

.btn-gold {
  color: #2a1c05;
  background: linear-gradient(96deg, #e9cd86 0%, #ddb96b 45%, #c9a04b 78%, #b88f3c 100%);
  border: calc(1 * var(--s)) solid rgba(255, 238, 190, 0.5);
  box-shadow:
    inset 0 calc(1.5 * var(--s)) 0 rgba(255, 247, 219, 0.55),
    0 calc(7 * var(--s)) calc(20 * var(--s)) rgba(0, 0, 0, 0.5);
}
.btn-line {
  color: var(--gold-lt);
  background: linear-gradient(180deg, #191510 0%, #0d0c09 100%);
  border: calc(1 * var(--s)) solid rgba(217, 173, 76, 0.5);
}
.btn-gold--sm { height: calc(42 * var(--s)); font-size: calc(10.4 * var(--s)); }

/* --- kısa bilgi alanı ---------------------------------------------------- */
.intro {
  margin-top: calc(17 * var(--s));
  padding: calc(18 * var(--s)) calc(15 * var(--s)) calc(17 * var(--s));
  border-radius: calc(14 * var(--s));
  border: calc(1 * var(--s)) solid transparent;
  background-image:
    linear-gradient(180deg, #191510 0%, #14110b 45%, #0a0a09 100%),
    linear-gradient(180deg, rgba(217, 173, 76, 0.12) 0%, rgba(233, 199, 133, 0.7) 45%, rgba(217, 173, 76, 0.18) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 calc(6 * var(--s)) calc(20 * var(--s)) rgba(0, 0, 0, 0.55);
  text-align: center;
}
.intro__h {
  font-size: calc(14.5 * var(--s));
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.03em;
  color: #fff;
}
.intro__p {
  margin-top: calc(9 * var(--s));
  font-size: calc(10.5 * var(--s));
  line-height: 1.62;
  color: var(--muted);
}
.intro__list {
  margin: calc(14 * var(--s)) 0 0;
  display: flex;
  flex-direction: column;
  gap: calc(7 * var(--s));
  text-align: left;
}
.intro__list li {
  display: flex;
  align-items: center;
  gap: calc(9 * var(--s));
  font-size: calc(10.4 * var(--s));
  font-weight: 500;
  color: #ded8cb;
}
.intro__list .ic {
  width: calc(13 * var(--s));
  height: calc(13 * var(--s));
  flex: none;
  fill: url(#goldGrad);
}
.intro .btn-gold { margin-top: calc(15 * var(--s)); }

/* --- hizmetler accordion ------------------------------------------------- */
.acc { margin-top: calc(18 * var(--s)); scroll-margin-top: calc(14 * var(--s)); }

.acc__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(13 * var(--s));
  margin-bottom: calc(12 * var(--s));
  font-size: calc(9.4 * var(--s));
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
  color: #b9b2a4;
}
.acc__head span { display: inline-block; margin-right: -0.3em; }
.acc__head .rule {
  flex: 1 1 auto;
  max-width: calc(70 * var(--s));
  height: calc(1 * var(--s));
  background: linear-gradient(90deg, rgba(217, 173, 76, 0.05) 0%, rgba(217, 173, 76, 0.7) 100%);
}
.acc__head .rule:last-child { transform: scaleX(-1); }

.acc__item {
  border-radius: calc(12 * var(--s));
  border: calc(1 * var(--s)) solid transparent;
  background-image:
    linear-gradient(180deg, #171410 0%, #100e0a 55%, #0a0a09 100%),
    linear-gradient(180deg, rgba(217, 173, 76, 0.12) 0%, rgba(233, 199, 133, 0.6) 48%, rgba(217, 173, 76, 0.16) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  overflow: hidden;
}
.acc__item + .acc__item { margin-top: calc(8 * var(--s)); }
.acc__item.is-open {
  background-image:
    linear-gradient(180deg, #1d1811 0%, #14110b 55%, #0b0a09 100%),
    linear-gradient(180deg, rgba(233, 199, 133, 0.45) 0%, rgba(233, 199, 133, 0.8) 48%, rgba(217, 173, 76, 0.3) 100%);
}

.acc__h { margin: 0; font-size: inherit; font-weight: inherit; }

.acc__btn {
  width: 100%;
  min-height: calc(50 * var(--s));
  padding: calc(9 * var(--s)) calc(12 * var(--s));
  display: flex;
  align-items: center;
  gap: calc(10 * var(--s));
  text-align: left;
}
.acc__ico {
  width: calc(28 * var(--s));
  height: calc(28 * var(--s));
  flex: none;
  border-radius: calc(9 * var(--s));
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, rgba(243, 211, 127, 0.16), rgba(185, 133, 38, 0.1));
  border: calc(1 * var(--s)) solid rgba(217, 173, 76, 0.3);
}
.acc__ico .ic { width: calc(15 * var(--s)); height: calc(15 * var(--s)); fill: url(#goldGrad); }

.acc__name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: calc(11.6 * var(--s));
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
}

.acc__sign {
  position: relative;
  width: calc(17 * var(--s));
  height: calc(17 * var(--s));
  flex: none;
}
.acc__sign::before,
.acc__sign::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(12 * var(--s));
  height: calc(1.6 * var(--s));
  border-radius: 2px;
  background: var(--gold-lt);
  transform: translate(-50%, -50%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.2s ease;
}
.acc__sign::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc__item.is-open .acc__sign::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.acc__panel {
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.acc__panel[hidden] { display: block; height: 0; visibility: hidden; }

.acc__body { padding: 0 calc(14 * var(--s)) calc(14 * var(--s)) calc(50 * var(--s)); }
.acc__body p {
  font-size: calc(10.3 * var(--s));
  line-height: 1.62;
  color: var(--muted);
}
.acc__link {
  margin-top: calc(11 * var(--s));
  display: inline-flex;
  align-items: center;
  gap: calc(7 * var(--s));
  font-size: calc(9.8 * var(--s));
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-lt);
}
.acc__link .ic { width: calc(13 * var(--s)); height: calc(13 * var(--s)); stroke: currentColor; }

/* --- kapanış CTA --------------------------------------------------------- */
.closing { margin-top: calc(18 * var(--s)); text-align: center; }
.closing__t {
  font-size: calc(11 * var(--s));
  line-height: 1.5;
  color: #ded8cb;
}
.closing__row {
  margin-top: calc(12 * var(--s));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(9 * var(--s));
}

/* --- footer iletişim bilgileri ------------------------------------------- */
.brandfoot__info {
  margin-top: calc(18 * var(--s));
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--s));
  font-style: normal;
  font-size: calc(9.8 * var(--s));
  line-height: 1.45;
  color: var(--muted);
}
.brandfoot__info a,
.brandfoot__info span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(8 * var(--s));
  padding: 0 calc(6 * var(--s));
}
.brandfoot__info .ic {
  width: calc(12 * var(--s));
  height: calc(12 * var(--s));
  flex: none;
  fill: url(#goldGrad);
  stroke: none;
}
.brandfoot__info a:active { color: var(--gold-lt); }

.brandfoot__legal {
  margin-top: calc(14 * var(--s));
  font-size: calc(8.8 * var(--s));
  letter-spacing: 0.04em;
  color: #6f6b62;
}

@media (prefers-reduced-motion: reduce) {
  .acc__panel { transition: none; }
}
