/* ─── TOKENS ─── */
:root {
  --cream:      #FAF3EE;
  --cream-2:    #F2E8DF;
  --rose:       #C9828B;
  --rose-l:     #EEC5C9;
  --rose-d:     #9E5A63;
  --dark:       #2C1A1A;
  --mid:        #7A5050;
  --white:      #FFFFFF;
  --nav-h:      72px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.4, 0, 1, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; cursor: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-img {
  height: 110px; width: auto; display: block;
  margin: 0 auto 1.5rem;
  border-radius: 14px;
  background: #fff;
  padding: 8px 16px;
  opacity: 0; animation: fi .4s .3s forwards;
}
@keyframes fi { to { opacity: 1; } }
.loader-bar { width: 180px; height: 2px; background: rgba(255,255,255,.12); border-radius: 2px; margin: 0 auto; overflow: hidden; }
.loader-fill { height: 100%; background: var(--rose); animation: bar 1.7s var(--ease) forwards; }
@keyframes bar { to { width: 100%; } }

/* ─── CURSOR — sadece gerçek mouse'ta ─── */
#cursor, #cursor-ring { display: none; }
body { cursor: auto; }
@media (hover: hover) and (pointer: fine) {
  #cursor, #cursor-ring {
    display: block; position: fixed; border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
  }
  #cursor { width: 10px; height: 10px; background: var(--rose); transition: width .25s, height .25s, background .25s; }
  #cursor-ring { width: 38px; height: 38px; border: 1.5px solid var(--rose); opacity: .6; transition: left .1s var(--ease), top .1s var(--ease), width .3s, height .3s; }
  body { cursor: none; }
  body:has(a:hover, button:hover) #cursor { width: 14px; height: 14px; }
  body:has(a:hover, button:hover) #cursor-ring { width: 54px; height: 54px; opacity: .35; }
}

/* ─── SCROLL PROGRESS ─── */
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 9997; background: linear-gradient(90deg, var(--rose-l), var(--rose)); }

/* ─── NAV ─── */
#nav {
  position: fixed; inset: 0 0 auto;
  height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  transition: background .4s, box-shadow .4s;
}
#nav.scrolled { background: rgba(250,243,238,.94); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(0,0,0,.07); }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 62px; width: auto; display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  transition: transform .3s;
}
.nav-logo:hover .nav-logo-img { transform: translateY(-1px); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .85rem; letter-spacing: .04em; color: rgba(255,255,255,.82); transition: color .3s; }
#nav.scrolled .nav-links a { color: var(--mid); }
.nav-links a:hover { color: var(--rose); }
.nav-cta {
  padding: .45rem 1.2rem; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.5); color: white !important;
  transition: background .3s, border-color .3s !important;
}
#nav.scrolled .nav-cta { border-color: var(--rose); color: var(--rose) !important; }
.nav-cta:hover { background: var(--rose); border-color: var(--rose); color: white !important; }
.lang-btn {
  background: none; border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.82); font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 500; letter-spacing: .1em;
  padding: .28rem .7rem; border-radius: 100px;
  cursor: pointer; transition: color .3s, border-color .3s;
  flex-shrink: 0;
}
#nav.scrolled .lang-btn { color: var(--mid); border-color: rgba(122,80,80,.35); }
.lang-btn:hover { color: var(--rose); border-color: var(--rose); }
@media (hover: hover) and (pointer: fine) { .lang-btn { cursor: none; } }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; padding: 4px; }
.burger span { display: block; width: 24px; height: 1.5px; background: white; border-radius: 2px; transition: background .3s, transform .3s; }
#nav.scrolled .burger span { background: var(--dark); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mob-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.mob-menu.open { opacity: 1; visibility: visible; }
.mob-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; color: white; font-size: 1.5rem; cursor: none; }
.mob-menu ul { text-align: center; }
.mob-menu li { margin: 1.25rem 0; }
.mob-menu a { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: white; transition: color .3s; }
.mob-menu a:hover { color: var(--rose-l); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, #4a2020 0%, var(--dark) 70%);
  overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .45;
  animation: drift 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 520px; height: 520px; background: var(--rose-d); top: -10%; left: -10%; animation-delay: 0s; }
.hero-orb-2 { width: 380px; height: 380px; background: #8a3a3a; bottom: 5%; right: -5%; animation-delay: -3s; }
.hero-orb-3 { width: 260px; height: 260px; background: var(--rose); top: 40%; left: 55%; animation-delay: -5s; opacity: .25; }
@keyframes drift { to { transform: translate(30px, 20px) scale(1.08); } }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white;
  padding: 0 1.5rem; max-width: 800px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--rose-l); }
.hero-sub { font-size: clamp(.9rem, 2vw, 1.05rem); color: rgba(255,255,255,.72); line-height: 1.75; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
}
.hero-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,.45), transparent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .7; transform: scaleY(1.15); } }

/* ─── FADE-UP (hero specific) ─── */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp .9s var(--ease) both; animation-delay: var(--d, 0s); }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ─── EYEBROW ─── */
.eyebrow { display: block; font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--rose); margin-bottom: .75rem; }
.eyebrow.light { color: var(--rose-l); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border-radius: 100px;
  font-size: .875rem; font-weight: 500; letter-spacing: .04em;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
  cursor: none; position: relative;
}
.btn-rose { background: var(--rose); color: white; }
.btn-rose:hover { background: var(--rose-d); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,130,139,.4); }
.btn-outline { border: 1.5px solid rgba(255,255,255,.5); color: white; }
.btn-outline:hover { border-color: white; transform: translateY(-2px); }
.btn-white { background: white; color: var(--dark); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ─── SECTION HEAD ─── */
.section-head { margin-bottom: 3.5rem; }
.section-head h2, h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400; line-height: 1.2;
}
h2 em { font-style: italic; color: var(--rose); }
h2.light { color: white; }
h2.light em { color: var(--rose-l); }

/* ─── ABOUT ─── */
#about { background: white; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-card {
  position: relative;
  background: var(--cream-2);
  border-radius: 8px; padding: 3rem 2.5rem;
  border: 1px solid var(--rose-l);
  min-height: 340px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-img-wrap {
  position: absolute; inset: 0;
  border-radius: 8px; overflow: hidden;
  z-index: 0;
}
.about-img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center 25%;
}
.about-overlay {
  position: absolute; inset: 0; border-radius: 8px;
  background: rgba(250,243,238,.80);
  z-index: 1;
}
.about-card-inner { position: relative; z-index: 2; }
.about-badge { z-index: 2; }
.about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  line-height: 1.7; color: var(--mid);
  margin-bottom: 1rem;
}
.about-name { font-size: .8rem; letter-spacing: .1em; color: var(--rose); }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--rose); color: white;
  padding: 1.25rem 1.5rem; border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(201,130,139,.45);
}
.about-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; line-height: 1; }
.about-badge span { font-size: .72rem; opacity: .85; line-height: 1.5; }
.about-deco {
  position: absolute; top: -1rem; left: -1rem;
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--rose-l); opacity: .25;
  z-index: -1;
}
.about-text p { color: var(--mid); line-height: 1.8; margin-bottom: 1rem; }
.about-text strong { color: var(--dark); }
.about-text h2 { margin-bottom: 1.5rem; }
.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0 2rem; }
.tags span { padding: .3rem .9rem; border-radius: 100px; border: 1px solid var(--rose-l); color: var(--rose-d); font-size: .78rem; }

/* ─── STATS ─── */
#stats { background: var(--cream-2); padding: 4rem 0; }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat { flex: 1; text-align: center; padding: 2rem 1rem; }
.stat-sep { width: 1px; height: 60px; background: var(--rose-l); flex-shrink: 0; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--rose); font-weight: 600; line-height: 1;
  margin-bottom: .5rem;
}
.stat p { font-size: .85rem; color: var(--mid); letter-spacing: .05em; }
.stat-star { font-size: clamp(2rem, 4vw, 3rem); color: var(--rose); }

/* ─── SERVICES ─── */
#services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: white; border-radius: 8px; padding: 2.5rem 2rem;
  border: 1px solid rgba(201,130,139,.12);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--rose-l), var(--rose));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(44,26,26,.08); border-color: var(--rose-l); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { font-size: 2rem; margin-bottom: 1.25rem; }
.svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; margin-bottom: .75rem; }
.svc-card p { font-size: .9rem; color: var(--mid); line-height: 1.7; }
.svc-line { display: none; }

/* ─── GALLERY ─── */
#gallery { background: white; padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px 260px;
  grid-template-areas:
    "a a b c"
    "a a d e"
    "f g g h";
  gap: 8px;
  margin-top: 2rem;
}
.gal-item {
  border-radius: 6px; overflow: hidden;
  transition: transform .4s var(--ease);
}
.gal-item:nth-child(1) { grid-area: a; }
.gal-item:nth-child(2) { grid-area: b; }
.gal-item:nth-child(3) { grid-area: c; }
.gal-item:nth-child(4) { grid-area: d; }
.gal-item:nth-child(5) { grid-area: e; }
.gal-item:nth-child(6) { grid-area: f; }
.gal-item:nth-child(7) { grid-area: g; }
.gal-item:nth-child(8) { grid-area: h; }
.gal-item:hover { transform: scale(.98); }
.gal-inner {
  width: 100%; height: 100%;
  overflow: hidden; background: var(--cream-2);
}
.gal-inner img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.gal-item:hover .gal-inner img { transform: scale(1.06); }

/* ─── FAQ ─── */
#faq { background: var(--cream-2); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--rose-l); }
.faq-item:first-child { border-top: 1px solid var(--rose-l); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 500;
  color: var(--dark); cursor: pointer;
  list-style: none; gap: 1rem;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 1.6rem; font-weight: 300;
  color: var(--rose); flex-shrink: 0;
  transition: transform .3s var(--ease);
  line-height: 1;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 2rem 1.4rem 0;
  font-size: .95rem; color: var(--mid); line-height: 1.8;
  animation: faqIn .25s ease;
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (hover: hover) and (pointer: fine) { .faq-q { cursor: none; } }

/* ─── SCROLL TOP ─── */
.scroll-top {
  position: fixed; bottom: 6.25rem; right: 2rem; z-index: 200;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream); color: var(--rose);
  border: 1.5px solid var(--rose-l);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(44,26,26,.1);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s, visibility .3s, transform .3s var(--ease), background .25s;
  cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); background: var(--rose); color: white; border-color: var(--rose); }
@media (hover: hover) and (pointer: fine) { .scroll-top { cursor: none; } }
@media (max-width: 768px) { .scroll-top { bottom: 5.5rem; right: 1.25rem; } }

/* ─── REVIEWS ─── */
#reviews { background: var(--cream-2); }
.rev-swiper {
  padding-bottom: 4rem !important;
}
.rev-card {
  background: white; border-radius: 8px; padding: 2.5rem;
  border: 1px solid rgba(201,130,139,.1);
}
.rev-stars { color: var(--rose); letter-spacing: .1em; margin-bottom: 1rem; }
.rev-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  line-height: 1.75; color: var(--mid); margin-bottom: 1.5rem;
}
.rev-card p::before { content: '\201C'; }
.rev-card p::after  { content: '\201D'; }
.rev-card span { font-size: .78rem; letter-spacing: .1em; color: var(--rose); text-transform: uppercase; }
.rev-swiper .swiper-pagination { bottom: 0 !important; }
.rev-swiper .swiper-pagination-bullet { background: var(--rose); opacity: .3; }
.rev-swiper .swiper-pagination-bullet-active { opacity: 1; }

/* Okları kartların altına, pagination hizasına taşı */
.rev-swiper .swiper-button-prev,
.rev-swiper .swiper-button-next {
  color: var(--rose);
  top: auto;
  bottom: 0;
  transform: translateY(0);
  width: 32px; height: 32px;
  margin-top: 0;
}
.rev-swiper .swiper-button-prev { left: 0; }
.rev-swiper .swiper-button-next { right: 0; }
.rev-swiper .swiper-button-prev::after,
.rev-swiper .swiper-button-next::after { font-size: .85rem; font-weight: 700; }

/* ─── BOOKING ─── */
#booking { position: relative; padding: 8rem 0; }
.booking-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #4a2020 100%);
}
.booking-inner { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.booking-inner h2 { margin-bottom: 1rem; }
.booking-sub { color: rgba(255,255,255,.6); margin-bottom: 2.5rem; line-height: 1.7; }
.booking-info { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.binfo { display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.45); font-size: .85rem; }

/* ─── FOOTER ─── */
#footer { background: var(--dark); color: rgba(255,255,255,.6); padding: 4.5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-logo-img {
  height: 64px; width: auto; display: block;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
}
.footer-grid > div p, .footer-grid > div a:not(.footer-ig):not(.footer-wa) { font-size: .875rem; line-height: 1.8; }
.footer-grid h4 { color: white; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-grid ul li { margin-bottom: .5rem; }
.footer-grid ul a { font-size: .875rem; transition: color .3s; }
.footer-grid ul a:hover { color: var(--rose-l); }
.footer-hours { font-size: .8rem; color: rgba(255,255,255,.35); margin: .25rem 0 .5rem; }
.footer-ig, .footer-wa { display: inline-flex; align-items: center; gap: .4rem; margin-top: .75rem; font-size: .85rem; color: var(--rose-l); transition: color .3s; }
.footer-ig:hover, .footer-wa:hover { color: white; }
.footer-wa { display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; text-align: center; font-size: .78rem; opacity: .35; }

/* ─── WhatsApp FAB ─── */
.wa-fab {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.55); }

/* ─── REVEAL ─── */
.reveal-up   { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-right{ opacity: 0; transform: translateX(36px);  transition: opacity .8s var(--ease), transform .8s var(--ease); }
.in-view { opacity: 1 !important; transform: none !important; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-card { max-width: 520px; }
  .about-badge { bottom: -1rem; right: -1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 4rem 0; }

  /* About — badge ve deco overflow'u engelle */
  #about { overflow: hidden; }
  .about-visual { padding-bottom: 2rem; }
  .about-card { max-width: 100%; }
  .about-badge { bottom: -1rem; right: 1.5rem; position: absolute; }
  .about-deco { display: none; }

  /* Stats */
  .stats-row { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat { flex: 0 0 50%; padding: 1.5rem .5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 2rem 1.5rem; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    grid-template-areas: none;
  }
  .gal-item { grid-area: unset !important; aspect-ratio: 1; }
  .gal-inner { min-height: 160px; }

  /* Reviews — mobilde okları gizle, swipe yeterli */
  .rev-swiper .swiper-button-prev,
  .rev-swiper .swiper-button-next { display: none; }

  /* Booking */
  .booking-info { flex-direction: column; align-items: center; gap: .75rem; }
  #booking { padding: 5rem 0; }
  .booking-inner h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { font-size: .72rem; padding: 1.25rem 4.5rem 0 1rem; text-align: left; }

  /* Nav */
  #nav { padding: 0 1.25rem; }

  /* Touch targets — min 44px */
  .burger { padding: 10px; }
  .mob-close { padding: 10px; top: 1rem; right: 1.25rem; }
  .wa-fab { bottom: 1.25rem; right: 1.25rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .hero-sub { font-size: .875rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .container { padding: 0 1.25rem; }
  .section-head { margin-bottom: 2.5rem; }
  .rev-card { padding: 1.75rem 1.25rem; }
  .rev-card p { font-size: 1.05rem; }
  .tags { gap: .4rem; }
  .tags span { font-size: .73rem; padding: .28rem .75rem; }
  .stat-num { font-size: clamp(2.2rem, 8vw, 3rem); }
}
