/* =================================================================
   Piyano Pansiyonları — style.css
   Premium hospitality theme · Fraunces (display) + Inter (body)
   Kurumsal palet: piyanoloft referansından birebir alınmıştır.
   ================================================================= */

:root {
    /* Kurumsal renkler */
    --orange:        #e97a26;
    --orange-light:  #fcb74b;
    --orange-dark:   #d46a1a;
    --orange-soft:   #fef0e3;
    --dark:          #040b11;
    --dark-2:        #2c3c4a;
    --bg-light:      #f7fafd;
    --bg-warm:       #fdf8f2;
    --line:          #edf0f4;
    --text:          #1d262e;
    --text-muted:    #717c87;
    --white:         #ffffff;

    /* Tipografi */
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Fraunces", Georgia, "Times New Roman", serif;

    /* Ölçüler */
    --container: 1240px;
    --radius:    18px;
    --radius-lg: 28px;
    --shadow-sm: 0 4px 18px rgba(15, 28, 40, .06);
    --shadow-md: 0 18px 50px rgba(15, 28, 40, .10);
    --shadow-lg: 0 30px 80px rgba(15, 28, 40, .16);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.header-container { width: 100%; max-width: 1540px; margin-inline: auto; padding-inline: 40px; }
@media (max-width: 760px) { .header-container { padding-inline: 24px; } }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section--light { background: var(--bg-light); }
.section--warm  { background: var(--bg-warm); }
.section--dark  { background: var(--dark); color: #e7edf2; }
.section--tight { padding-bottom: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; color: var(--dark); letter-spacing: -.01em; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }

.eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--font-body);
    font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow--center::after { content: ""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); }
.section-title em { font-style: italic; color: var(--orange); }
.section-sub { margin-top: 18px; color: var(--text-muted); font-size: 1.05rem; }
.section--dark .section-sub { color: #aab6c1; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; border-radius: 100px;
    font-weight: 600; font-size: .96rem; white-space: nowrap;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
    will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(233, 122, 38, .35); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(233, 122, 38, .45); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-3px); }
.btn--outline { border: 1.5px solid var(--line); color: var(--dark); background: var(--white); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-3px); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--header-h);
    display: flex; align-items: center;
    transition: background .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); height: 72px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 40px; width: auto; object-fit: contain; transition: filter .4s, height .4s; }
/* Logo siyah; koyu/şeffaf header üzerinde beyaza çevrilir */
.site-header:not(.scrolled) .brand-logo { filter: brightness(0) invert(1); }
.site-header.scrolled .brand-logo { height: 34px; }

.main-nav { display: flex; align-items: center; gap: 38px; flex: 1; }
.nav-list { display: flex; align-items: center; gap: 32px; margin-inline: auto; }
.nav-link {
    position: relative; font-weight: 500; font-size: .97rem; color: rgba(255,255,255,.92);
    padding: 6px 0; transition: color .3s; white-space: nowrap;
}
.nav-link::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--orange); transition: width .35s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--white); }
.nav-link:hover::after, .nav-link.is-active::after { width: 100%; }
.site-header.scrolled .nav-link { color: var(--dark-2); }
.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.is-active { color: var(--orange); }

/* Header Phone Dropdown */
.header-phone-dropdown {
    position: relative;
    display: inline-block;
}
.phone-drop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--orange);
    color: #fff;
    font-weight: 600;
    font-size: .85rem;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    transition: background .3s, transform .2s;
}
.phone-drop-btn:hover {
    background: var(--orange-dark);
}
.phone-drop-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.phone-drop-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 170px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--line);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
}
.header-phone-dropdown.open .phone-drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.phone-drop-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: 8px;
    text-align: center;
    transition: background 0.2s, color 0.2s;
}
.phone-drop-menu a:hover {
    background: var(--orange-soft);
    color: var(--orange-dark);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(4,11,17,.5); opacity: 0; visibility: hidden; transition: .35s; z-index: 98; }

/* =================================================================
   HERO (slider)
   ================================================================= */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute; inset: 0; opacity: 0; transform: scale(1.08);
    transition: opacity 1.4s var(--ease), transform 7s linear;
    background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,11,17,.55) 0%, rgba(4,11,17,.35) 40%, rgba(4,11,17,.78) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 760px; padding-top: calc(var(--header-h) + 30px); flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.04; }
.hero h1 em { font-style: italic; color: var(--orange-light); }
.hero-lead { margin-top: 24px; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.88); max-width: 560px; }
.hero-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta { position: relative; z-index: 2; width: 100%; padding-bottom: 80px; }
.hero-meta-inner { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; border-top: 1px solid rgba(255,255,255,.18); padding-top: 26px; }
.hero-stat .num { font-family: var(--font-display); font-size: 2rem; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: 4px; }
.hero-dots { display: flex; gap: 10px; margin-left: auto; }
.hero-dot { width: 36px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3); transition: background .3s; }
.hero-dot.active { background: var(--orange); }

/* =================================================================
   AMENITY STRIP
   ================================================================= */
.amenities { position: relative; z-index: 5; }
.amenity-bar {
    margin-top: -56px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md); padding: 14px;
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.amenity {
    display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
    padding: 26px 14px; border-radius: var(--radius); transition: background .3s, transform .3s var(--ease);
}
.amenity:hover { background: var(--orange-soft); transform: translateY(-4px); }
.amenity-ico { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; background: var(--orange-soft); color: var(--orange); }
.amenity:hover .amenity-ico { background: var(--orange); color: #fff; }
.amenity-ico svg { width: 26px; height: 26px; }
.amenity span { font-weight: 600; font-size: .95rem; color: var(--dark); }

/* =================================================================
   ABOUT / SPLIT
   ================================================================= */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4/5; }
.split-media .media-badge {
    position: absolute; bottom: -26px; right: -18px;
    background: var(--orange); color: #fff; padding: 22px 26px; border-radius: var(--radius);
    box-shadow: var(--shadow-lg); text-align: center;
}
.media-badge .num { font-family: var(--font-display); font-size: 2.2rem; line-height: 1; }
.media-badge .lbl { font-size: .8rem; opacity: .9; margin-top: 4px; }


.lead-list { margin-top: 30px; display: grid; gap: 18px; }
.lead-item { display: flex; gap: 16px; }
.lead-item .check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; }
.lead-item h4 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; }
.lead-item p { color: var(--text-muted); font-size: .95rem; }
.about-actions { margin-top: 36px; }

/* =================================================================
   ROOM CARDS
   ================================================================= */
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.room-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.room-media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room-card:hover .room-media img { transform: scale(1.07); }
.room-rating {
    position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.95); color: var(--dark); font-weight: 600; font-size: .85rem;
    padding: 7px 13px; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.room-rating svg { width: 14px; height: 14px; color: var(--orange-light); }
.room-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.room-body h3 { font-size: 1.45rem; }
.room-body p { color: var(--text-muted); margin-top: 12px; font-size: .96rem; }
.room-feats { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.room-feat { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; color: var(--dark-2); background: var(--bg-light); padding: 7px 13px; border-radius: 100px; }
.room-feat svg { width: 15px; height: 15px; color: var(--orange); }
.room-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 20px; margin-top: auto; }
.room-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--orange); font-size: .95rem; transition: gap .3s; }
.room-link svg { width: 16px; height: 16px; flex: none; }
.lead-item .check svg { width: 16px; height: 16px; }
.contact-card .ico svg { width: 24px; height: 24px; }
.room-feat svg, .eyebrow svg { flex: none; }
.room-link:hover { gap: 13px; }

/* =================================================================
   SERVICES
   ================================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 38px 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    position: relative; overflow: hidden;
}
.svc-card::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ico { width: 60px; height: 60px; border-radius: 16px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; margin-bottom: 24px; transition: background .4s, color .4s; }
.svc-card:hover .svc-ico { background: var(--orange); color: #fff; }
.svc-ico svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.3rem; }
.svc-card p { color: var(--text-muted); margin-top: 12px; font-size: .96rem; }

/* Big feature (split with image) services */
.svc-feature { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 28px; }
.svc-feature-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: #fff; }
.svc-feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc-feature-card:hover img { transform: scale(1.06); }
.svc-feature-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,11,17,.85)); }
.svc-feature-text { position: relative; z-index: 2; padding: 36px; }
.svc-feature-text h3 { color: #fff; font-size: 1.6rem; }
.svc-feature-text p { color: rgba(255,255,255,.85); margin-top: 10px; }

/* =================================================================
   REVIEWS
   ================================================================= */
.reviews-track-wrap { overflow: hidden; }
.reviews-track { display: flex; gap: 26px; transition: transform .6s var(--ease); }
.review-card {
    flex: 0 0 calc((100% - 52px) / 3); background: var(--white); border-radius: var(--radius-lg);
    padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    display: flex; flex-direction: column;
}
.section--dark .review-card { background: #0b1620; border-color: rgba(255,255,255,.06); }
.review-stars { display: flex; gap: 3px; color: var(--orange-light); margin-bottom: 18px; }
.review-stars svg { width: 18px; height: 18px; }
.review-text { font-size: 1.02rem; line-height: 1.7; flex: 1; }
.section--dark .review-text { color: #cdd6df; }
.review-author { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.review-author .name { font-weight: 600; color: var(--dark); }
.section--dark .review-author .name { color: #fff; }
.review-author .meta { font-size: .85rem; color: var(--text-muted); }
.reviews-nav { display: flex; gap: 12px; justify-content: center; margin-top: 44px; }
.rev-btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--dark); transition: .3s var(--ease); }
.section--dark .rev-btn { border-color: rgba(255,255,255,.2); color: #fff; }
.rev-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.rev-btn svg { width: 20px; height: 20px; }
.rev-btn.prev svg, .lb-prev svg { transform: rotate(180deg); }

/* =================================================================
   PROMO / CTA with video
   ================================================================= */
.promo { position: relative; overflow: hidden; }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.promo-video { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; background: #000; }
.promo-video video, .promo-video img { width: 100%; height: 100%; object-fit: cover; }
.cta-band { background: var(--dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 76px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 420px; height: 420px; background: radial-gradient(circle, rgba(233,122,38,.45), transparent 70%); }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); position: relative; }
.cta-band p { color: rgba(255,255,255,.8); margin: 18px auto 36px; max-width: 540px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* =================================================================
   PAGE HERO (inner pages)
   ================================================================= */
.page-hero { position: relative; padding: calc(var(--header-h) + 70px) 0 80px; color: #fff; text-align: center; overflow: hidden; background-size: cover; background-position: center; background-color: var(--dark); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,11,17,.55), rgba(4,11,17,.82)); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero h1 em { font-style: italic; color: var(--orange-light); }
.breadcrumb { display: flex; gap: 10px; justify-content: center; margin-top: 18px; font-size: .92rem; color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb span { color: var(--orange-light); }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 18px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,11,17,.5)); opacity: 0; transition: opacity .4s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-ico { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--orange); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: .4s var(--ease); z-index: 2; }
.gallery-item:hover .zoom-ico { opacity: 1; transform: scale(1); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(4,11,17,.94); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: .35s; padding: 30px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lb-close, .lb-prev, .lb-next { position: absolute; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; transition: background .3s; backdrop-filter: blur(6px); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--orange); }
.lb-close { top: 28px; right: 28px; }
.lb-prev { left: 28px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 28px; top: 50%; transform: translateY(-50%); }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
.contact-cards { display: grid; gap: 20px; }
.contact-card { display: flex; gap: 18px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease); }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ico { flex: none; width: 54px; height: 54px; border-radius: 14px; background: var(--orange-soft); color: var(--orange); display: grid; place-items: center; }
.contact-card h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: .96rem; }
.contact-card a:hover { color: var(--orange); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 460px; height: 100%; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }

/* =================================================================
   BLOG
   ================================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .45s var(--ease), box-shadow .45s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.blog-card:hover .blog-media img { transform: scale(1.07); }
.blog-date { position: absolute; bottom: 14px; left: 14px; background: var(--orange); color: #fff; font-size: .8rem; font-weight: 600; padding: 7px 13px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.blog-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-body h3 { font-size: 1.3rem; line-height: 1.25; }
.blog-body h3 a { transition: color .3s; }
.blog-body h3 a:hover { color: var(--orange); }
.blog-body p { color: var(--text-muted); margin: 12px 0 20px; font-size: .96rem; flex: 1; }

/* Blog detay */
.blog-detail-wrap { display: grid; grid-template-columns: 1fr 320px; gap: clamp(34px, 5vw, 60px); align-items: start; }
.blog-detail-meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--text-muted); font-size: .9rem; margin-bottom: 22px; }
.blog-detail-meta span { display: inline-flex; align-items: center; gap: 8px; }
.blog-detail-meta svg { width: 17px; height: 17px; color: var(--orange); }
.blog-detail-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-bottom: 30px; aspect-ratio: 16/9; object-fit: cover; }
.blog-content { color: var(--text); font-size: 1.05rem; line-height: 1.8; }
.blog-content h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 30px 0 12px; }
.blog-content p { margin-bottom: 18px; }
.blog-content ul, .blog-content ol { margin: 0 0 18px 22px; }
.blog-content li { margin-bottom: 8px; }
.blog-aside { position: sticky; top: 100px; background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px; }
.aside-list { margin-top: 6px; display: grid; gap: 18px; }
.aside-list a { display: flex; gap: 14px; align-items: center; }
.aside-list img { width: 72px; height: 64px; border-radius: 12px; object-fit: cover; flex: none; }
.aside-title { display: block; font-weight: 600; font-size: .95rem; color: var(--dark); line-height: 1.3; transition: color .3s; }
.aside-list a:hover .aside-title { color: var(--orange); }
.aside-date { display: block; font-size: .82rem; color: var(--text-muted); margin-top: 4px; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--dark); color: #aeb9c4; position: relative; overflow: hidden; padding-top: clamp(64px, 8vw, 100px); }
.footer-glow { position: absolute; top: -120px; left: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(233,122,38,.22), transparent 70%); pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; position: relative; padding-bottom: 56px; }
.brand--footer .brand-logo { filter: brightness(0) invert(1); height: 38px; }
.footer-tag { margin-top: 18px; font-size: .95rem; line-height: 1.7; max-width: 320px; }
.footer-title { font-family: var(--font-body); color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 22px; }
.footer-links li, .footer-contact li { margin-bottom: 13px; }
.footer-links a { font-size: .95rem; transition: color .3s, padding .3s; }
.footer-links a:hover { color: var(--orange-light); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; font-size: .94rem; line-height: 1.55; }
.footer-contact svg { flex: none; color: var(--orange); margin-top: 3px; }
.footer-contact a:hover { color: var(--orange-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; font-size: .88rem; }
.footer-bottom p { text-align: center; }

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; right: 24px; bottom: 24px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.4); transition: transform .35s var(--ease); animation: fabPulse 2.6s infinite; }
.whatsapp-fab:hover { transform: scale(1.1); }
@keyframes fabPulse { 0%,100% { box-shadow: 0 12px 30px rgba(37,211,102,.4); } 50% { box-shadow: 0 12px 40px rgba(37,211,102,.7); } }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(44px) scale(.985); filter: blur(5px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* Yönlü girişler: split ve promo bölümleri yanlardan süzülür.
   Not: yalnızca iki sütunlu düzende; tek sütuna düşen dar ekranlarda
   yatay kayma sayfayı taşırdığı için aşağıdaki media query ile kapatılır. */
.split-media.reveal, .promo-video.reveal { transform: translateX(-52px) scale(.985); }
.split-text.reveal, .promo-grid > .reveal:not(.promo-video) { transform: translateX(52px) scale(.985); }
@media (max-width: 1024px) {
    .split-media.reveal, .promo-video.reveal,
    .split-text.reveal, .promo-grid > .reveal:not(.promo-video) { transform: translateY(44px) scale(.985); }
}
.split-media.reveal.in, .promo-video.reveal.in,
.split-text.reveal.in, .promo-grid > .reveal.in:not(.promo-video) { transform: none; }

/* Başlık blokları: eyebrow → başlık → alt metin sırayla gelir */
.section-head.reveal { transform: none; filter: none; }
.section-head.reveal .eyebrow,
.section-head.reveal .section-title,
.section-head.reveal .section-sub { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.section-head.reveal.in .eyebrow { opacity: 1; transform: none; }
.section-head.reveal.in .section-title { opacity: 1; transform: none; transition-delay: .12s; }
.section-head.reveal.in .section-sub { opacity: 1; transform: none; transition-delay: .24s; }

/* Kademeli çocuk girişleri: olanaklar, galeri ve yorumlar dalga halinde */
.amenity-bar.reveal, .gallery-grid.reveal, .reviews-track-wrap.reveal { filter: none; transform: none; }
.amenity-bar.reveal .amenity,
.gallery-grid.reveal .gallery-item,
.reviews-track-wrap.reveal .review-card { opacity: 0; transform: translateY(26px) scale(.97); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.amenity-bar.reveal.in .amenity,
.gallery-grid.reveal.in .gallery-item,
.reviews-track-wrap.reveal.in .review-card { opacity: 1; transform: none; }
.amenity-bar.reveal.in .amenity:nth-child(4n+2),
.gallery-grid.reveal.in .gallery-item:nth-child(4n+2),
.reviews-track-wrap.reveal.in .review-card:nth-child(4n+2) { transition-delay: .09s; }
.amenity-bar.reveal.in .amenity:nth-child(4n+3),
.gallery-grid.reveal.in .gallery-item:nth-child(4n+3),
.reviews-track-wrap.reveal.in .review-card:nth-child(4n+3) { transition-delay: .18s; }
.amenity-bar.reveal.in .amenity:nth-child(4n+4),
.gallery-grid.reveal.in .gallery-item:nth-child(4n+4),
.reviews-track-wrap.reveal.in .review-card:nth-child(4n+4) { transition-delay: .27s; }

/* Reveal sonrası hover kaldırma efektleri çalışmaya devam etsin */
.room-card.reveal.in:hover, .why-card.reveal.in:hover { transform: translateY(-8px); }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal .eyebrow, .reveal .section-title, .reveal .section-sub,
    .reveal .amenity, .reveal .gallery-item, .reveal .review-card { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
    html { scroll-behavior: auto; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
    .rooms-grid, .svc-grid, .svc-feature, .promo-grid, .split, .contact-grid, .gallery-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; }
    .blog-detail-wrap { grid-template-columns: 1fr; }
    .blog-aside { position: static; }
    .split.reverse .split-media { order: 0; }
    .split-media img { aspect-ratio: 16/10; }
    .contact-grid { grid-template-columns: 1fr; }
    .review-card { flex-basis: calc((100% - 26px) / 2); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
/* Tablet ve altı: yatay menü yerine hamburger çekmece */
@media (max-width: 920px) {
    :root { --header-h: 72px; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed; top: 0; right: 0; height: 100dvh; width: min(82vw, 340px);
        background: var(--white); flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 30px; padding: 40px; transform: translateX(105%); transition: transform .4s var(--ease); z-index: 99; box-shadow: var(--shadow-lg);
    }
    .main-nav.open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 22px; margin-inline: 0; }
    .nav-link { color: var(--dark-2); font-size: 1.15rem; }
    .main-nav .nav-link:hover, .main-nav .nav-link.is-active { color: var(--orange); }
    .header-phone-dropdown {
        width: 100%;
    }
    .phone-drop-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }
    .phone-drop-menu {
        position: static;
        width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border-color: var(--line);
        background: var(--bg-light);
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }
    .header-phone-dropdown.open .phone-drop-menu {
        display: block;
    }
    .nav-backdrop.show { opacity: 1; visibility: visible; }
    body.nav-open { overflow: hidden; }
}

@media (max-width: 760px) {
    .rooms-grid, .svc-grid, .svc-feature, .gallery-grid, .footer-grid, .promo-grid, .blog-grid { grid-template-columns: 1fr; }
    .promo-grid { gap: 32px; }
    .amenity-bar { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
    .review-card { flex-basis: 100%; }
    .gallery-grid { grid-auto-rows: 220px; }
    .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
    .hero-meta { display: none; }
    .split-media .media-badge { right: 16px; }
    .hero-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- WHY US ---------- */
.section--whyus { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--orange-light); }
.why-icon { width: 72px; height: 72px; background: var(--orange-soft); color: var(--orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; }
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--dark-2); }
.why-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ / SSS ---------- */
.faq-section { padding: 80px 0; background: var(--bg-warm); }
.faq-section .section-header { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.3s var(--ease), border-color 0.3s; }
.faq-item:hover { box-shadow: var(--shadow-md); border-color: var(--orange-light); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 24px 28px; font-size: 1.15rem; font-family: var(--font-display); color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-item.active .faq-question { color: var(--orange-dark); }
.faq-icon { font-size: 1.5rem; color: var(--orange); transition: transform 0.4s var(--ease); display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--orange-soft); }
.faq-item.active .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.4s var(--ease), opacity 0.3s ease; padding: 0 28px; color: var(--text-muted); opacity: 0; }
.faq-item.active .faq-answer { padding: 0 28px 24px 28px; max-height: 500px; opacity: 1; }
/* =================================================================
   BAŞVURU FORMU (iletişim)
   ================================================================= */
.contact-form { max-width: 760px; margin-inline: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 8px; }
.field label span { color: var(--text-muted); font-weight: 500; }
.field input, .field textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius); font: inherit; color: inherit; background: var(--bg-light); transition: border-color .3s, box-shadow .3s, background .3s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px var(--orange-soft); background: var(--white); }
.field textarea { resize: vertical; min-height: 130px; }
.btn--block { width: 100%; justify-content: center; }
.hp-field { position: absolute; left: -9999px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* =================================================================
   İNTERAKTİF EFEKTLER
   ================================================================= */
/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--orange), var(--orange-light)); z-index: 200; pointer-events: none; }

/* Yukarı dön butonu */
.back-to-top { position: fixed; left: 24px; bottom: 24px; z-index: 90; width: 48px; height: 48px; border-radius: 50%; background: var(--dark); color: #fff; border: 0; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s, background .3s; box-shadow: var(--shadow-lg); }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); }

/* Olanak barı hover */
.amenity { transition: transform .3s var(--ease); }
.amenity:hover { transform: translateY(-4px); }
.amenity-ico { transition: background .3s, color .3s, transform .3s var(--ease); }
.amenity:hover .amenity-ico { background: var(--orange); color: #fff; transform: scale(1.1) rotate(-6deg); }

/* Hero parallax */
.hero-slides { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
    .scroll-progress { display: none; }
    .amenity, .amenity-ico { transition: none; }
}

/* =================================================================
   TİPOGRAFİ DÜZELTMELERİ
   ================================================================= */
/* Başlıklarda dengesiz satır atlamayı engelle (ör. tek kelime alta sarkması) */
h1, h2, h3 { text-wrap: balance; }
.section-sub { text-wrap: pretty; }

/* Başlık altı rozet (İletişim: Kız & Erkek) */
.title-pill { display: inline-block; margin-top: 14px; background: var(--orange-soft); color: var(--orange-dark); font-family: var(--font-body); font-size: .88rem; font-weight: 600; letter-spacing: .03em; padding: 8px 18px; border-radius: 100px; white-space: nowrap; }

/* Dar ekranda üniversite/ulaşım mesafe etiketleri taşmasın */
@media (max-width: 480px) {
    .contact-card li { flex-wrap: wrap; }
    .contact-card li span { white-space: normal !important; }
}

/* =================================================================
   RESPONSIVE DÜZELTMELERİ
   ================================================================= */
/* Odalar sayfasındaki düz olanak barı (eskiden inline style ile 4 sütuna
   sabitlenmişti; media query'leri ezip mobilde taşmaya yol açıyordu) */
.amenity-bar--flat { margin-top: 0; box-shadow: var(--shadow-sm); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) { .amenity-bar--flat { grid-template-columns: repeat(2, 1fr); } }

/* Yatay taşmaya karşı güvenlik ağı */
html { overflow-x: hidden; }

/* Mobilde dokunma hedefleri (min ~44px) */
@media (max-width: 760px) {
    .room-link, .footer-links a, .footer-contact a, .breadcrumb a { padding-block: 10px; }
    .room-link { padding-block: 8px; }
    .nav-toggle { min-width: 44px; min-height: 44px; }
    .hero-dot { width: 12px; height: 12px; }
    .gallery-filter { padding: 12px 20px; }
}

/* Yüzen butonlar: mobilde sayfa içeriğiyle (ör. form gönder butonu) çakışmasın */
@media (max-width: 760px) {
    .whatsapp-fab { width: 50px; height: 50px; right: 14px; bottom: 14px; }
    /* Dar ekranda iki yüzen buton içeriği (ör. form gönder butonunu) kapatıyor;
       WhatsApp erişimi öncelikli olduğu için yukarı-dön yalnızca masaüstünde. */
    .back-to-top { display: none; }
    .contact-form { padding-bottom: 34px; }
    #basvuru { padding-bottom: 88px; }
}
