/* ============================================================
   ARYA THERMAL HOTEL — Afyon Gazlıgöl
   Design: Ivory + Deep Ink + Champagne + Turkuaz · Cormorant Garamond / Jost
   (Nowness / Blue Alanya Beach tasarım sistemi temel alınmıştır)
   ============================================================ */

:root {
  --ivory: #F7F3EB;
  --ivory-2: #EFE8DA;
  --ivory-3: #E7DECB;
  --ink: #0D2233;
  --ink-2: #14303F;
  --ink-3: #1C3D4F;
  --turq: #1799AB;
  --turq-soft: #DCEFF1;
  --champ: #C6A15B;
  --champ-2: #E3C98F;
  --champ-3: #A98443;
  --text: #22323E;
  --muted: #66757F;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22,1,.36,1);
  --shadow-lg: 0 30px 60px -20px rgba(13,34,51,.25);
  --shadow-md: 0 18px 40px -18px rgba(13,34,51,.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--champ); color: var(--white); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%,-50%);
}
.cursor-dot { width: 6px; height: 6px; background: var(--champ); transition: opacity .3s; }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(198,161,91,.55);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .3s, background .3s;
}
.cursor-ring.is-active { width: 64px; height: 64px; background: rgba(198,161,91,.08); border-color: var(--champ); }
@media (hover: none), (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink); color: rgba(255,255,255,.75);
  font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  position: relative; z-index: 60;
}
.topbar-in {
  max-width: 1380px; margin: 0 auto; padding: 9px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar a:hover { color: var(--champ-2); }
.topbar-contact { display: flex; gap: 22px; align-items: center; }
.topbar-social { display: flex; gap: 14px; align-items: center; }
.topbar-social svg { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 720px) { .topbar-contact span.tb-mail { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,243,235,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,34,51,.08);
  transition: box-shadow .3s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(13,34,51,.25); }
.nav-in {
  max-width: 1380px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 62px; width: auto; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  color: var(--ink); position: relative; padding: 6px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--champ); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.is-active { color: var(--champ-3); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--white);
  padding: 13px 26px; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--ink); transition: all .35s var(--ease); flex-shrink: 0;
}
.nav-cta:hover { background: var(--champ); border-color: var(--champ); color: var(--ink); }
.nav-burger { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; z-index: 80; }
.nav-burger span {
  display: block; width: 26px; height: 1.6px; background: var(--ink); margin: 6px auto;
  transition: transform .35s var(--ease), opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

/* Off-canvas */
.mobile-menu {
  position: fixed; inset: 0; z-index: 70; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; padding: 90px 40px 40px;
  clip-path: circle(0% at calc(100% - 60px) 60px);
  transition: clip-path .7s var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 60px) 60px); visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(26px, 5.5vw, 40px); color: var(--ivory);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(18px); transition: opacity .5s, transform .5s;
}
.mobile-menu.is-open a { opacity: 1; transform: none; }
.mobile-menu a:hover { color: var(--champ-2); }
.mobile-menu .mm-contact { margin-top: 28px; color: rgba(255,255,255,.6); font-size: 14px; letter-spacing: .08em; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: clamp(600px, 92vh, 950px);
  display: flex; align-items: flex-end; overflow: hidden; color: var(--white);
  background: var(--ink);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.8s ease;
  background-size: cover; background-position: center;
}
.hero-slide.is-active { opacity: 1; animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.13); } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,34,51,.42) 0%, rgba(13,34,51,.08) 42%, rgba(13,34,51,.78) 100%);
}
.hero .hero-scrim { display: none; }
.hero-in {
  position: relative; z-index: 2; max-width: 1380px; margin: 0 auto; width: 100%;
  padding: 140px 28px 110px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,.45); padding: 8px 18px;
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  backdrop-filter: blur(6px); background: rgba(13,34,51,.25); margin-bottom: 26px;
}
.hero-chip i { width: 6px; height: 6px; border-radius: 50%; background: var(--champ-2); }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(42px, 6.2vw, 92px); line-height: 1.06; letter-spacing: .01em;
  max-width: 17ch; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--champ-2); }
.hero-sub { max-width: 60ch; font-size: 17.5px; font-weight: 300; color: rgba(255,255,255,.85); margin-bottom: 38px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.hero-strip {
  position: relative; z-index: 3; border-top: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); background: rgba(13,34,51,.35);
}
.hero-strip-in {
  max-width: 1380px; margin: 0 auto; padding: 18px 28px;
  display: flex; gap: 40px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.hero-strip-in b { color: var(--champ-2); font-weight: 500; }

/* Page hero (inner pages) */
.page-hero {
  position: relative; min-height: clamp(380px, 56vh, 620px);
  display: flex; align-items: flex-end; overflow: hidden; color: var(--white); background: var(--ink);
}
.page-hero .hero-in { padding: 120px 28px 70px; }
.page-hero h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(38px, 5vw, 72px); line-height: 1.05; }
.page-hero .crumbs {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.75);
  margin-bottom: 16px; display: flex; gap: 12px; align-items: center;
}
.page-hero .crumbs a:hover { color: var(--champ-2); }
.page-hero .crumbs i { width: 22px; height: 1px; background: var(--champ-2); display: inline-block; }
.page-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 34px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 400;
  border: 1px solid transparent; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn-gold { background: var(--champ); color: var(--ink); border-color: var(--champ); }
.btn-gold:hover { background: var(--champ-2); border-color: var(--champ-2); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: var(--white); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-ink { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-ink:hover { background: var(--champ); border-color: var(--champ); color: var(--ink); }
.btn-line { border-color: rgba(13,34,51,.3); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section-tight { padding: clamp(50px, 6vw, 80px) 0; }
.wrap { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 980px; margin: 0 auto; padding: 0 28px; }

.kicker {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase; color: var(--champ-3);
  margin-bottom: 18px; font-weight: 400;
}
.kicker::before { content: ""; width: 36px; height: 1px; background: var(--champ); }
.kicker.k-center::after { content: ""; width: 36px; height: 1px; background: var(--champ); }
h2.title {
  font-family: var(--serif); font-weight: 500; color: var(--ink);
  font-size: clamp(32px, 4.2vw, 58px); line-height: 1.12; letter-spacing: .005em;
  max-width: 24ch;
}
h2.title em { font-style: italic; color: var(--champ-3); }
.title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }
.lead { font-size: 18px; color: var(--muted); max-width: 62ch; }
.t-center { text-align: center; }
.t-center h2.title, .t-center .lead { margin-left: auto; margin-right: auto; }

.on-dark { color: var(--ivory); }
.on-dark h2.title { color: var(--ivory); }
.on-dark .lead { color: rgba(247,243,235,.7); }
.on-dark .kicker { color: var(--champ-2); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal-img { overflow: hidden; }
.reveal-img img, .reveal-img .ph { transform: scale(1.12); transition: transform 1.4s var(--ease); }
.reveal-img.is-in img, .reveal-img.is-in .ph { transform: scale(1); }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-img img { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-slide.is-active { animation: none; }
}

/* ---------- Intro (home) ---------- */
.intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.intro-media { position: relative; }
.intro-media .im-main { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; box-shadow: var(--shadow-lg); }
.intro-media .im-float {
  position: absolute; right: -8%; bottom: -12%; width: 52%; aspect-ratio: 4/3; object-fit: cover;
  border: 8px solid var(--ivory); box-shadow: var(--shadow-md);
}
.intro-media .im-badge {
  position: absolute; left: -20px; top: -20px; z-index: 2;
  background: var(--champ); color: var(--ink); width: 122px; height: 122px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 14px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; text-align: center; line-height: 1.35;
  animation: slow-spin-none 1s;
}
.intro-media .im-badge b { font-family: var(--serif); font-size: 26px; font-weight: 600; letter-spacing: 0; margin-bottom: 2px; }
.intro-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 44px; border-top: 1px solid rgba(13,34,51,.12); padding-top: 30px; }
.intro-facts .fact b { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--ink); font-weight: 600; display: block; line-height: 1.1; }
.intro-facts .fact b i { font-style: normal; color: var(--champ-3); }
.intro-facts .fact > span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 960px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-media { margin-bottom: 30px; }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--ivory-2); border-block: 1px solid rgba(13,34,51,.07); overflow: hidden; padding: 22px 0; }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.4vw, 30px); color: var(--ink);
  display: flex; align-items: center; gap: 60px; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--champ); font-size: .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Room cards ---------- */
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.room-card { position: relative; background: var(--white); box-shadow: var(--shadow-md); display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s; }
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-card .rc-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.room-card .rc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.room-card:hover .rc-media img { transform: scale(1.08); }
.room-card .rc-size {
  position: absolute; top: 16px; left: 16px; background: rgba(13,34,51,.72); color: var(--champ-2);
  backdrop-filter: blur(6px); padding: 7px 14px; font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
}
.room-card .rc-body { padding: 30px 30px 34px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.room-card h3 { font-family: var(--serif); font-size: 29px; font-weight: 500; color: var(--ink); }
.room-card p { font-size: 15px; color: var(--muted); }
.room-card .rc-meta { display: flex; gap: 20px; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); border-top: 1px solid rgba(13,34,51,.1); padding-top: 16px; margin-top: auto; }
.room-card .rc-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 4px;
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--champ-3); font-weight: 400;
}
.room-card .rc-link svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.6; transition: transform .35s var(--ease); }
.room-card:hover .rc-link svg { transform: translateX(6px); }
@media (max-width: 1020px) { .rooms-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ---------- Feature band (dark, weddings) ---------- */
.band { position: relative; overflow: hidden; background: var(--ink); }
.band-bg { position: absolute; inset: -12% 0; background-size: cover; background-position: center; will-change: transform; }
.band-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,34,51,.9) 0%, rgba(13,34,51,.55) 55%, rgba(13,34,51,.25) 100%); }
.band-in { position: relative; z-index: 2; padding: clamp(90px, 12vw, 170px) 0; max-width: 640px; }
.band-in .btn { margin-top: 34px; }

/* ---------- Split section (spa preview / generic) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 4/4.8; object-fit: cover; box-shadow: var(--shadow-lg); }
.split-media .sm-tag {
  position: absolute; bottom: 28px; left: 28px; right: 28px; padding: 18px 24px;
  background: rgba(247,243,235,.92); backdrop-filter: blur(8px); color: var(--ink);
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; display: flex; justify-content: space-between; gap: 10px;
}
.split-media .sm-tag b { color: var(--champ-3); font-weight: 500; }
.split .checklist { margin: 26px 0 8px; display: grid; gap: 13px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--text); }
.checklist li::before {
  content: "✦"; color: var(--champ); font-size: 13px; margin-top: 5px; flex-shrink: 0;
}
@media (max-width: 960px) { .split { grid-template-columns: 1fr; } }

/* ---------- Dining cards ---------- */
.dining-list { display: grid; gap: clamp(50px, 7vw, 90px); }
.dining-item { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.dining-item:nth-child(even) .d-media { order: 2; }
.d-media { position: relative; overflow: hidden; }
.d-media img { width: 100%; aspect-ratio: 16/10.5; object-fit: cover; box-shadow: var(--shadow-md); transition: transform 1.2s var(--ease); }
.dining-item:hover .d-media img { transform: scale(1.05); }
.d-media .d-num {
  position: absolute; top: -6px; left: 18px; font-family: var(--serif); font-style: italic;
  font-size: clamp(70px, 8vw, 110px); color: var(--champ); opacity: .9; line-height: 1; z-index: 2;
  text-shadow: 0 4px 30px rgba(13,34,51,.3);
}
.d-body h3 { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 500; color: var(--ink); margin-bottom: 16px; }
.d-body p { color: var(--muted); margin-bottom: 14px; }
.d-hours {
  margin-top: 20px; border: 1px solid rgba(198,161,91,.4); background: rgba(198,161,91,.06);
  padding: 18px 22px; display: grid; gap: 8px;
}
.d-hours div { display: flex; justify-content: space-between; gap: 18px; font-size: 14px; }
.d-hours div span:first-child { letter-spacing: .1em; text-transform: uppercase; font-size: 12.5px; color: var(--ink-3); }
.d-hours div span:last-child { font-weight: 400; color: var(--champ-3); }
@media (max-width: 900px) {
  .dining-item { grid-template-columns: 1fr; }
  .dining-item:nth-child(even) .d-media { order: 0; }
}

/* ---------- Room detail ---------- */
.room-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(13,34,51,.1); border: 1px solid rgba(13,34,51,.1); margin: -60px auto 0; position: relative; z-index: 5; max-width: 920px; box-shadow: var(--shadow-lg); }
.room-stats .rs { background: var(--ivory); padding: 28px 16px; text-align: center; }
.room-stats .rs b { font-family: var(--serif); display: block; font-size: clamp(26px, 3vw, 38px); color: var(--ink); font-weight: 600; line-height: 1.15; }
.room-stats .rs span { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 720px) { .room-stats { grid-template-columns: repeat(2, 1fr); margin-top: -40px; } }

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.features-grid li {
  display: flex; align-items: center; gap: 12px; background: var(--white);
  border: 1px solid rgba(13,34,51,.08); padding: 15px 18px; font-size: 14.5px; color: var(--ink-3);
  transition: border-color .3s, transform .3s;
}
.features-grid li:hover { border-color: var(--champ); transform: translateY(-2px); }
.features-grid li svg { width: 16px; height: 16px; stroke: var(--champ-3); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* Gallery grid (room + galeri page) */
.g-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.g-grid .g-item { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: var(--ivory-3); }
.g-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; }
.g-grid .g-item:hover img { transform: scale(1.07); }
.g-grid .g-item::after {
  content: "+"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 40px; font-weight: 200; color: var(--white); background: rgba(13,34,51,.35);
  opacity: 0; transition: opacity .4s;
}
.g-grid .g-item:hover::after { opacity: 1; }
.g-grid .g-wide { grid-column: span 2; }
.g-grid .g-tall { grid-row: span 2; aspect-ratio: auto; }
@media (max-width: 900px) { .g-grid { grid-template-columns: repeat(2, 1fr); } }

/* Gallery filters */
.g-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.g-filters button {
  border: 1px solid rgba(13,34,51,.18); background: transparent; color: var(--ink-3);
  padding: 11px 22px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  transition: all .3s;
}
.g-filters button:hover { border-color: var(--champ); color: var(--champ-3); }
.g-filters button.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(10,22,32,.96);
  display: flex; align-items: center; justify-content: center; padding: 60px 20px;
  opacity: 0; visibility: hidden; transition: opacity .4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 82vh; object-fit: contain; box-shadow: 0 40px 80px rgba(0,0,0,.5); }
.lb-btn {
  position: absolute; background: none; border: 1px solid rgba(255,255,255,.3); color: var(--white);
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: all .3s; border-radius: 50%;
}
.lb-btn:hover { background: var(--champ); border-color: var(--champ); color: var(--ink); }
.lb-close { top: 26px; right: 26px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .2em; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid rgba(13,34,51,.09); transition: border-color .3s, box-shadow .3s; }
.faq-item.is-open { border-color: rgba(198,161,91,.6); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 26px; font-family: var(--serif); font-size: 19.5px; color: var(--ink); font-weight: 500;
}
.faq-q i {
  flex-shrink: 0; width: 34px; height: 34px; border: 1px solid rgba(13,34,51,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-style: normal; font-size: 18px; font-weight: 300;
  transition: all .4s var(--ease);
}
.faq-item.is-open .faq-q i { background: var(--champ); border-color: var(--champ); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- Certificates ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.cert-card {
  display: flex; align-items: center; gap: 18px; background: var(--white);
  border: 1px solid rgba(13,34,51,.09); padding: 22px 24px;
  transition: all .35s var(--ease);
}
.cert-card:hover { border-color: var(--champ); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-card .cc-ico {
  flex-shrink: 0; width: 46px; height: 46px; border: 1px solid rgba(198,161,91,.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.cert-card .cc-ico svg { width: 19px; height: 19px; stroke: var(--champ-3); fill: none; stroke-width: 1.6; }
.cert-card b { font-weight: 400; font-size: 14.5px; color: var(--ink); display: block; line-height: 1.45; }
.cert-card span { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 70px); }
.contact-cards { display: grid; gap: 14px; align-content: start; }
.contact-card {
  display: flex; gap: 20px; align-items: flex-start; background: var(--white);
  border: 1px solid rgba(13,34,51,.09); padding: 26px 28px; transition: all .35s var(--ease);
}
.contact-card:hover { border-color: var(--champ); box-shadow: var(--shadow-md); }
.contact-card .ico {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: var(--turq-soft);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 20px; height: 20px; stroke: var(--turq); fill: none; stroke-width: 1.6; }
.contact-card h3 { font-family: var(--serif); font-size: 21px; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.contact-card p { font-size: 15px; color: var(--muted); }
.contact-card a:hover { color: var(--champ-3); }
.map-shell { position: relative; min-height: 420px; box-shadow: var(--shadow-lg); }
.map-shell iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.85); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 340px at 85% 20%, rgba(23,153,171,.22), transparent 65%),
              radial-gradient(600px 300px at 10% 90%, rgba(198,161,91,.16), transparent 60%);
}
.cta-in { position: relative; z-index: 2; text-align: center; padding: clamp(80px, 10vw, 130px) 28px; max-width: 820px; margin: 0 auto; }
.cta-in h2 { font-family: var(--serif); font-weight: 500; color: var(--ivory); font-size: clamp(32px, 4.4vw, 60px); line-height: 1.12; margin-bottom: 18px; }
.cta-in h2 em { font-style: italic; color: var(--champ-2); }
.cta-in p { color: rgba(247,243,235,.72); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,243,235,.7); position: relative; }
.footer-top {
  max-width: 1380px; margin: 0 auto; padding: clamp(60px, 8vw, 90px) 28px 50px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 46px;
}
.footer-top h4 { font-size: 12.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--champ-2); margin-bottom: 20px; font-weight: 500; }
.footer-top ul { display: grid; gap: 10px; }
.footer-top a { font-size: 14.5px; transition: color .3s, padding-left .3s; }
.footer-top a:hover { color: var(--champ-2); padding-left: 4px; }
.f-brand img { height: 92px; margin-bottom: 18px; }
.f-brand p { font-size: 14px; max-width: 34ch; line-height: 1.8; }
.f-contact li { font-size: 14.5px; display: flex; gap: 10px; align-items: flex-start; }
.f-contact li b { color: var(--champ-2); font-weight: 400; min-width: 16px; }
.f-social { display: flex; gap: 12px; margin-top: 22px; }
.f-social a {
  width: 40px; height: 40px; border: 1px solid rgba(247,243,235,.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.f-social a:hover { background: var(--champ); border-color: var(--champ); }
.f-social a:hover svg { fill: var(--ink); }
.f-social svg { width: 15px; height: 15px; fill: rgba(247,243,235,.8); transition: fill .3s; }
.footer-bar { border-top: 1px solid rgba(247,243,235,.12); }
.footer-bar-in {
  max-width: 1380px; margin: 0 auto; padding: 22px 28px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; letter-spacing: .06em;
}
@media (max-width: 1020px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Floats ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
/* Telefon float — WhatsApp'ın hemen üstünde */
.tel-float {
  position: fixed; right: 24px; bottom: 92px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(13,34,51,.4); transition: transform .3s var(--ease);
}
.tel-float:hover { transform: scale(1.1); }
.tel-float svg { width: 26px; height: 26px; fill: #fff; }
@media (max-width: 600px) {
  .tel-float { right: 16px; bottom: 84px; width: 52px; height: 52px; }
  .tel-float svg { width: 23px; height: 23px; }
}
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5); animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse { 0% { transform: scale(.85); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }

.demo-note {
  position: fixed; left: 18px; bottom: 18px; z-index: 90;
  background: rgba(13,34,51,.88); color: rgba(247,243,235,.85); backdrop-filter: blur(8px);
  font-size: 11px; letter-spacing: .05em; padding: 9px 14px; border-radius: 30px;
  display: flex; gap: 10px; align-items: center; max-width: 320px;
}
.demo-note button { background: none; border: 0; color: var(--champ-2); font-size: 14px; line-height: 1; }
@media (max-width: 640px) { .demo-note { max-width: 240px; font-size: 10px; } }

/* ---------- Policy strip / misc ---------- */
.policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.policy-links a { font-size: 12.5px; }

.divider-wave { display: block; width: 100%; height: 60px; color: var(--ivory-2); }

/* Back-to-top */
.to-top {
  position: fixed; right: 28px; bottom: 96px; z-index: 89;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(13,34,51,.2);
  background: rgba(247,243,235,.9); backdrop-filter: blur(6px); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.to-top.is-show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--ink); color: var(--white); }

/* ===== Brand logo sizing ===== */
.brand img{height:60px;width:60px;object-fit:contain;border-radius:50%;background:var(--ivory);padding:3px;}
.f-brand img{height:80px;width:80px;object-fit:contain;border-radius:50%;background:var(--ivory);padding:4px;margin-bottom:18px;}
