/*
 * Söyleyiciler Apart
 * Tasarım & Geliştirme: Proomist (proomist.com)
 * Yapım Yılı: 2026
 */

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a3a5c;
  --color-primary-light: #2a5a8c;
  --color-primary-dark: #2a2129;
  --color-accent: #d4a03c;
  --color-accent-hover: #b8882e;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f6f8;
  --color-text: #2a2129;
  --color-text-light: #666666;
  --color-border: #e0e0e0;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --header-height: 70px;
  --container-pad: 20px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== Utilities ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}

.top-bar-contact a:hover {
  color: var(--color-accent);
}

.top-bar-social {
  display: flex;
  gap: 12px;
}

.top-bar-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.top-bar-social a:hover {
  color: var(--color-accent);
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1002;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 35px;
  width: auto;
}

.nav {
  display: flex;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1003;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile Drawer ===== */
.nav-drawer {
  display: none;
}

.nav-mobile-contact {
  display: none;
}

.nav-backdrop {
  display: none;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(15, 25, 45, 0.88) 0%,
      rgba(20, 35, 60, 0.72) 35%,
      rgba(26, 58, 92, 0.4) 65%,
      rgba(60, 35, 90, 0.28) 100%),
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  max-width: 760px;
}

.hero-content {
  color: var(--color-white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 32px;
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 300;
  font-family: 'Outfit', serif;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(212, 160, 60, 0.2);
  border: 1px solid rgba(212, 160, 60, 0.5);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

.hero-stat-num {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-white);
}

.hero-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.15);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 160, 60, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ===== Section base ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-desc {
  text-align: center;
  color: var(--color-text-light);
  max-width: 720px;
  margin: 24px auto 0;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--color-white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(26, 58, 92, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Rooms Grid ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.room-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.room-img {
  height: 220px;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-img img {
  transform: scale(1.05);
}

.room-body {
  padding: 24px;
}

.room-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.room-body p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== Gallery Grid ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.gallery-item button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.4rem;
}

/* ===== Contact Row ===== */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.contact-row--addresses {
  margin-top: 16px;
}

.contact-row > li {
  flex: 1 1 240px;
  min-width: 0;
  display: flex;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 20px 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(26, 58, 92, 0.06);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.contact-item:hover .contact-item-icon {
  background: var(--color-primary);
  color: var(--color-white);
}

.contact-item-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.contact-item-body > span,
.contact-item address {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.4;
  word-break: break-word;
}

.contact-item--wa:hover {
  border-color: #25d366;
}

.contact-item--wa:hover .contact-item-icon {
  background: #25d366;
  color: var(--color-white);
}

/* ===== Footer ===== */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}

/* CTA Banner */
.footer-cta {
  background: var(--color-accent);
  color: var(--color-primary);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--container-pad);
  flex-wrap: wrap;
}

.footer-cta-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 4px;
  font-weight: 600;
}

.footer-cta-title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.footer-cta-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Main Footer */
.footer-main {
  padding: 56px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo img {
  height: 30px;
  width: auto;
}

.footer-tagline {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-list svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-accent);
}

.footer-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
  word-break: break-word;
}

.footer-list a:hover {
  color: var(--color-accent);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-hours li > span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.footer-hours li > span:last-child {
  color: var(--color-white);
  font-weight: 500;
}

/* Bottom Bar */
.footer-bottom {
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 32px;
  padding: 26px var(--container-pad);
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.proomist-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  transition: opacity var(--transition);
  position: relative;
}

.proomist-link::before,
.proomist-link::after {
  position: absolute;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.proomist-link::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 12px);
  transform: translate(-50%, 6px);
  background: #ffffff;
  color: var(--color-primary-dark);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.proomist-link::after {
  content: '';
  bottom: calc(100% + 6px);
  transform: translate(-50%, 6px);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
}

.proomist-link:hover::before,
.proomist-link:hover::after,
.proomist-link:focus-visible::before,
.proomist-link:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.proomist-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
  transition: color 0.4s ease;
}

.proomist-mark svg {
  width: 18px;
  height: 18px;
  display: block;
}

.proomist-name {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.4s ease;
}

.proomist-link:hover .proomist-mark,
.proomist-link:hover .proomist-name {
  color: var(--color-accent);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-light);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ====================================
   RESPONSIVE BREAKPOINTS
   ==================================== */

/* Large desktop: 1100px and below */
@media (max-width: 1100px) {
  .footer-grid {
    gap: 32px;
  }
}

/* Tablet landscape: 992px and below */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 580px;
  }

  .hero-inner {
    padding: 90px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Tablet portrait & mobile: 767px and below */
@media (max-width: 767px) {
  :root {
    --header-height: 60px;
  }

  .top-bar {
    display: none;
  }

  .whatsapp-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
    position: relative;
  }

  .nav {
    display: none;
  }

  .nav-drawer {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(280px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    flex-direction: column;
    padding: 80px 24px 32px;
    gap: 4px;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.35s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-drawer.open {
    right: 0;
  }

  .nav-drawer .nav-link {
    display: block;
    font-size: 1rem;
    padding: 12px 16px;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 999;
  }

  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
  }

  .nav-mobile-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-text-light);
    padding: 8px 16px;
    transition: color var(--transition);
    word-break: break-word;
  }

  .nav-mobile-contact a:hover {
    color: var(--color-primary);
  }

  .hero {
    min-height: 540px;
  }

  .hero-inner {
    padding: 72px 0;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(15, 25, 45, 0.78) 0%,
        rgba(20, 35, 60, 0.7) 50%,
        rgba(40, 30, 70, 0.55) 100%);
  }

  .hero-stats {
    gap: 16px 22px;
    padding-top: 24px;
  }

  .section {
    padding: 56px 0;
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .contact-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-row > li {
    flex-basis: auto;
  }

  /* Footer mobile */
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 24px var(--container-pad);
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    padding: 40px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 22px var(--container-pad);
  }

  .proomist-link {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
  }
}

/* Small mobile: 480px and below */
@media (max-width: 480px) {
  :root {
    --container-pad: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 500px;
  }

  .hero-inner {
    padding: 60px 0;
  }

  .hero-eyebrow {
    margin-bottom: 22px;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .hero-eyebrow-line {
    width: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 12px 18px;
  }

  .hero-stat-divider {
    display: none;
  }

  .lightbox-prev {
    left: 8px;
    width: 40px;
    height: 40px;
  }

  .lightbox-next {
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .room-img {
    height: 180px;
  }

  .footer-cta-inner {
    padding: 22px var(--container-pad);
  }

  .footer-cta-title {
    font-size: 1rem;
  }
}

/* Extra small (320px target) */
@media (max-width: 360px) {
  :root {
    --container-pad: 14px;
  }

  .logo img {
    height: 35px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .contact-item {
    padding: 16px 18px;
    gap: 12px;
  }

  .contact-item-icon {
    width: 40px;
    height: 40px;
  }

  .footer-cta-btn {
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .nav-drawer {
    width: 88vw;
    padding: 72px 20px 24px;
  }
}
