/* ===== DESIGN TOKENS ===== */
:root {
  --bg:          #0c0c0c;
  --bg-2:        #101010;
  --bg-card:     #161616;
  --border:      #242424;
  --border-gold: rgba(201,168,76,.28);
  --gold:        #c9a84c;
  --gold-dark:   #8b7536;
  --gold-light:  #e8d5a3;
  --gold-bg:     rgba(201,168,76,.07);
  --text:        #f0ece4;
  --text-muted:  #7a7a7a;
  --text-faint:  #444;
  --radius:      10px;
  --radius-btn:  12px;
  --radius-lg:   16px;
  --shadow:      0 8px 32px rgba(0,0,0,.6);
  --shadow-gold: 0 0 40px rgba(201,168,76,.08);
  --t:           .22s ease;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Inter', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===== SKIP LINK ===== */
.skip {
  position: absolute; left: -9999px; top: 1rem;
  padding: .5rem 1.2rem; background: var(--gold); color: #0c0c0c;
  font-weight: 700; border-radius: var(--radius); z-index: 999;
}
.skip:focus { left: 1rem; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2 { font-family: var(--serif); line-height: 1.1; color: #fff; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.9rem); font-weight: 600; }
h3 { font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.35; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .75rem 1.5rem; border-radius: var(--radius-btn);
  font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  transition: all var(--t); cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
.btn-primary  { background: var(--gold); color: #0c0c0c; border-color: var(--gold); }
.btn-primary:hover  { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }
.btn-ghost    { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover    { border-color: var(--gold); color: var(--gold); }
.btn-wa       { background: #25D366; color: #fff; border-color: #25D366; }
.btn-wa:hover       { background: #1ebe5e; border-color: #1ebe5e; }
.btn-lg  { padding: .9rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HEADER — YÜZEN ADA ===== */
.site-header {
  position: fixed; top: 1rem; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 0 1rem; pointer-events: none;
  transition: top .3s ease;
}
.nav-island {
  position: relative; pointer-events: auto;
  width: 100%; max-width: 1140px;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .55rem .6rem .55rem 1.4rem;
  border-radius: 100px;
  background: rgba(18,16,14,.45);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(201,168,76,.16);
  box-shadow:
    0 8px 32px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, max-width .3s ease, padding .3s ease;
}
.site-header.scrolled { top: .6rem; }
.site-header.scrolled .nav-island {
  max-width: 1000px;
  background: rgba(14,12,10,.82);
  border-color: rgba(201,168,76,.22);
  box-shadow: 0 10px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
}
.brand {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.brand small {
  display: block; font-size: .64rem; letter-spacing: .12em;
  color: var(--gold); font-family: var(--sans); font-weight: 600;
  text-transform: uppercase;
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,168,76,.22), rgba(201,168,76,.06));
  border: 1px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.brand-mark svg { width: 22px; height: 22px; }
.nav-links { display: flex; align-items: center; gap: .15rem; margin: 0 auto; }
.nav-links a {
  position: relative; padding: .45rem .95rem;
  color: rgba(240,236,228,.62); font-size: .87rem; font-weight: 500;
  border-radius: 100px; transition: color var(--t), background var(--t);
}
.nav-links a::after {
  content: ''; position: absolute; left: 50%; bottom: .2rem;
  width: 0; height: 1px; background: var(--gold);
  transform: translateX(-50%); transition: width var(--t);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 40%; }
.nav-cta { display: flex; align-items: center; gap: .55rem; flex-shrink: 0; }
.nav-tel {
  display: flex; align-items: center; gap: .55rem;
  height: 42px; padding: 0 1.1rem 0 .95rem; border-radius: 100px;
  color: var(--gold); font-size: .88rem; font-weight: 600;
  background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.28);
  transition: background var(--t), border-color var(--t), color var(--t);
}
.nav-tel:hover { background: var(--gold); border-color: var(--gold); color: #0c0c0c; }
.nav-tel svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-toggle { display: none; color: var(--gold); padding: .4rem; border-radius: 50%; }
.nav-toggle svg { width: 24px; height: 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden; background: #0a0908;
}
/* Tam ekran arka plan görseli */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% 50%, rgba(201,168,76,.08) 0%, transparent 65%),
    linear-gradient(135deg, #14110c 0%, #0a0a0a 100%);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  animation: kenBurns 18s cubic-bezier(.25,.46,.45,.94) forwards;
  transform-origin: center center; will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero-bg.no-photo .hero-img { display: none; }
/* Sol koyu perde → sağa doğru yumuşak açılır */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right,
      #090807 0%,
      rgba(9,8,7,.97) 26%,
      rgba(9,8,7,.78) 44%,
      rgba(9,8,7,.4)  62%,
      rgba(9,8,7,.12) 78%,
      transparent 92%),
    linear-gradient(to bottom,
      rgba(9,8,7,.35) 0%, transparent 22%,
      transparent 58%, rgba(9,8,7,.55) 100%);
}
/* İçerik */
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center;
  padding: 6rem 1.5rem 5rem clamp(1.5rem, 6vw, 6rem);
}
.hero-inner { max-width: 560px; }

/* --- İçerik öğeleri --- */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem 1rem; border-radius: 100px; margin-bottom: 1.6rem;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.35);
  font-size: .68rem; font-weight: 700;
  color: var(--gold-light); letter-spacing: .13em; text-transform: uppercase;
}
.hero-badge svg { flex-shrink: 0; color: var(--gold); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.4vw, 4.2rem);
  font-weight: 600; line-height: 1.06; color: #fff; margin-bottom: 1.3rem;
}
.hero-h1 em {
  display: inline-block; font-style: italic;
  line-height: 1.25; padding-bottom: .14em; margin-top: -.14em;
  background: linear-gradient(120deg, #c9a84c 0%, #f0d98a 45%, #c9a84c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 24px rgba(201,168,76,.3));
}
.hero-lead {
  font-size: 1.02rem; line-height: 1.75;
  color: rgba(240,236,228,.6); margin-bottom: 2.25rem; max-width: 460px;
}
.hero-actions { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.hero-wa-btn {
  font-size: 1rem; padding: .9rem 1.8rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.2);
}
.hero-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
}
.hero-stats {
  display: flex; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,.14);
}
.hs {
  display: flex; flex-direction: column; gap: .25rem;
  padding: 0 clamp(.75rem, 1.4vw, 1.15rem);
  border-left: 1px solid rgba(201,168,76,.16);
}
.hs:first-child { border-left: none; padding-left: 0; }
.hs-n {
  font-family: var(--sans); font-size: 1.15rem; font-weight: 800;
  color: var(--gold); line-height: 1; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums; white-space: nowrap;
}
.hs-l {
  font-size: .58rem; color: rgba(240,236,228,.4);
  text-transform: uppercase; letter-spacing: .08em; white-space: nowrap;
}
/* Şehir marquee */
.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  overflow: hidden; padding: .85rem 0;
  border-top: 1px solid rgba(201,168,76,.1);
  background: linear-gradient(to top, rgba(8,8,8,.7), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.mq-track {
  display: flex; width: max-content;
  animation: marquee 45s linear infinite;
}
.mq-group {
  display: flex; align-items: center; gap: 2rem;
  padding-right: 2rem; white-space: nowrap;
}
.mq-group span {
  font-size: .78rem; letter-spacing: .18em; font-weight: 600;
  color: rgba(240,236,228,.42); text-transform: uppercase;
}
.mq-group .mq-dot { color: var(--gold); font-size: .5rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}
.ha { opacity: 0; }
.ha.in { animation: heroUp .75s cubic-bezier(.22,.68,0,1.2) forwards; }
.ha1.in { animation-delay: .08s; }
.ha2.in { animation-delay: .22s; }
.ha3.in { animation-delay: .42s; }
.ha4.in { animation-delay: .62s; }
.ha5.in { animation-delay: .78s; }
@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}

/* ===== BOOKING SECTION ===== */
.booking-section { background: var(--bg-2); }
.booking-wrap { display: flex; justify-content: center; margin-top: 3rem; }
.booking-wrap .booking-card { max-width: 800px; width: 100%; border-top: 3px solid var(--gold); }
.bk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; }

/* ===== BOOKING CARD ===== */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow), var(--shadow-gold);
}
.booking-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.booking-head h2 { font-size: 1.2rem; }
.booking-head .tag {
  background: rgba(37,211,102,.08); border: 1px solid rgba(37,211,102,.25);
  color: #25D366; padding: .25rem .75rem; border-radius: 100px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap;
}
.field { margin-bottom: 1rem; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--text-muted); margin-bottom: .38rem;
  text-transform: uppercase; letter-spacing: .08em;
}
.req { color: var(--gold); }
.control {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .65rem .9rem; color: var(--text); font-size: .9rem;
  transition: border-color var(--t), box-shadow var(--t); appearance: none;
}
.control:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.control::placeholder { color: var(--text-faint); }
.control.invalid { border-color: #d63031; }
select.control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center;
  padding-right: 2.4rem;
}
select.control option { background: #1a1a1a; }
select.control optgroup { background: #1a1a1a; color: var(--text-muted); font-size: .8rem; }
input[type="date"].control,
input[type="time"].control { color-scheme: dark; }
.error { font-size: .75rem; color: #d63031; margin-top: .25rem; display: none; }
.error.show { display: block; }
.booking-actions { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.5rem; }
.booking-note {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .75rem; color: var(--text-faint); margin-top: .75rem;
}
.booking-note svg { width: 13px; height: 13px; color: #25D366; }

/* ===== GOLD LINE ===== */
.gold-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: .9rem 0 1.4rem;
}
.gold-line.center {
  margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 72px;
}

/* ===== SECTION HEAD ===== */
section { padding: 5rem 0; }
.section-head { max-width: 580px; }
.section-head.center { margin: 0 auto; text-align: center; }
.eyebrow {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: .16em; margin-bottom: .5rem;
}
.eyebrow::before { content: ''; width: 18px; height: 1px; background: var(--gold); }
.section-head.center .eyebrow::before { display: none; }
.section-head p { color: var(--text-muted); line-height: 1.7; margin-top: .4rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.svc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.4rem;
  transition: all var(--t); position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity var(--t);
}
.svc-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.svc-card:hover::before { opacity: 1; }
.svc-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--gold-bg); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 1.1rem;
}
.svc-icon svg { width: 24px; height: 24px; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ===== STEPS ===== */
.steps-section { background: var(--bg-2); }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem; position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 27px; left: calc(100% / 6); right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold) 30%, var(--border-gold) 70%, transparent);
}
.step { text-align: center; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border-gold);
  color: var(--gold); font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem; position: relative; z-index: 1;
  transition: background var(--t), box-shadow var(--t);
}
.step:hover .step-num { background: var(--gold-bg); box-shadow: 0 0 20px rgba(201,168,76,.15); }
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; max-width: 240px; margin: 0 auto; }

/* ===== TRUST / FEATURES ===== */
.trust-grid { max-width: 920px; margin: 0 auto; }
.trust-grid > div { text-align: center; }
.trust-grid .eyebrow { justify-content: center; }
.trust-grid .eyebrow::before { display: none; }
.trust-grid .gold-line {
  margin-left: auto; margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.feature-list {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 2.75rem; margin-top: 2rem; text-align: left;
}
.feature { display: flex; gap: 1.1rem; }
.fi {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--gold-bg); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.fi svg { width: 18px; height: 18px; }
.feature h3 { font-size: .92rem; margin-bottom: .2rem; }
.feature p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-2); }
.faq-list { max-width: 700px; margin: 3rem auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: .6rem; overflow: hidden; transition: border-color var(--t);
}
.faq-item:has(.faq-q[aria-expanded="true"]) { border-color: var(--border-gold); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem; color: var(--text); font-size: .9rem; font-weight: 500;
  text-align: left; gap: 1rem; background: var(--bg-card); transition: color var(--t);
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--gold); }
.chev { width: 17px; height: 17px; flex-shrink: 0; transition: transform .28s ease; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease; background: var(--bg);
}
.faq-a.open { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; padding: 0 1.2rem; color: var(--text-muted); font-size: .87rem; line-height: 1.7; }
.faq-a.open .faq-a-inner { padding: .9rem 1.2rem; }

/* ===== FOOTER ===== */
.footer { background: #070707; border-top: 1px solid var(--border); padding: 4rem 0 1.75rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand {
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: #fff; margin-bottom: 1rem;
}
.footer h4 {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-faint); font-weight: 700; margin-bottom: 1rem;
}
.footer-list { display: flex; flex-direction: column; gap: .6rem; }
.footer-list a {
  display: flex; align-items: center; gap: .55rem;
  color: var(--text-muted); font-size: .87rem; transition: color var(--t);
}
.footer-list a:hover { color: var(--gold); }
.footer-list svg { width: 13px; height: 13px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--text-faint);
}
.footer-bottom a { color: var(--gold); transition: opacity var(--t); }
.footer-bottom a:hover { opacity: .7; }
.socials { display: flex; gap: .6rem; }
.socials a {
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--t);
}
.socials a:hover { border-color: var(--border-gold); color: var(--gold); }
.socials svg { width: 15px; height: 15px; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.88); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg-card); border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg); padding: 2.25rem; max-width: 420px; width: 100%;
  box-shadow: var(--shadow-gold); text-align: center;
  transform: scale(.96) translateY(8px); transition: transform .28s ease;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(37,211,102,.08); border: 2px solid rgba(37,211,102,.25);
  display: flex; align-items: center; justify-content: center;
  color: #25D366; margin: 0 auto 1.1rem;
}
.modal-icon svg { width: 28px; height: 28px; }
.modal h3 { font-size: 1.45rem; font-family: var(--serif); margin-bottom: .6rem; }
.modal p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; margin-bottom: 1.1rem; }
.modal-summary {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem 1rem; margin-bottom: 1.4rem;
  font-size: .82rem; color: var(--text-muted); text-align: left; line-height: 1.85;
}
.modal-actions { display: flex; flex-direction: column; gap: .65rem; }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.anim { opacity: 0; transform: translateY(18px); animation: fadeUp .6s ease forwards; }
.a1 { animation-delay: .08s; }
.a2 { animation-delay: .22s; }
.a3 { animation-delay: .38s; }
.a4 { animation-delay: .54s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .bk-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  /* Mobilde perde daha koyu (görsel tam ekran, metin okunur kalsın) */
  .hero-scrim {
    background:
      linear-gradient(to right, rgba(9,8,7,.92) 0%, rgba(9,8,7,.7) 55%, rgba(9,8,7,.45) 100%),
      linear-gradient(to bottom, rgba(9,8,7,.3) 0%, transparent 35%, rgba(9,8,7,.55) 100%);
  }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + .6rem); left: 0; right: 0;
    margin: 0; padding: .6rem;
    background: rgba(16,14,12,.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 18px; gap: .1rem;
    box-shadow: 0 16px 44px rgba(0,0,0,.5);
  }
  .nav-links.open a {
    padding: .85rem 1rem; color: var(--text);
    border-radius: 12px; display: block;
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open a:hover { color: var(--gold); background: var(--gold-bg); }
  .nav-island { gap: 1rem; }
  .nav-tel-num { display: none; }
  .nav-tel { width: 42px; padding: 0; justify-content: center; }
  .hero { height: auto; min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: 6.5rem 1.5rem 4rem; align-items: flex-start; }
  .hero-inner { max-width: 100%; }
  .hero-h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem 1.25rem; }
  .hs { padding: 0; border-left: none; }
  .hs-n { font-size: 1.2rem; }
  .bk-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .feature-list { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .brand small { display: none; }
  .field.row { grid-template-columns: 1fr; }
  .booking-card { padding: 1.5rem; }
  .hero-marquee { padding: .7rem 0; }
  .mq-group span { font-size: .68rem; }
}
