/*
Theme Name: AkınSuites Istanbul
Theme URI: https://akinsuites.com
Author: 360 Soft Marketing
Author URI: https://360-soft.com
Description: Luxury boutique suite hotel theme for AkınSuites Istanbul — Kadıköy
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: akinsuites
Tags: hotel, luxury, bilingual, apartments
*/

/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
  --cream:       #F4EFE6;
  --ivory:       #FAF7F2;
  --charcoal:    #1A1A1A;
  --stone:       #6B6360;
  --gold:        #B89A6A;
  --gold-light:  #D4B88A;
  --warm-white:  #FFFDF9;
  --border:      #E2D9CC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft:  0 4px 32px rgba(26,26,26,0.08);
  --shadow-card:  0 2px 16px rgba(26,26,26,0.06);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  text-align: right;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =====================================================
   TYPOGRAPHY
===================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.display-xl  { font-size: clamp(3rem, 7vw, 6.5rem); line-height: 1.0; }
.display-lg  { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.display-md  { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.display-sm  { font-size: clamp(1.4rem, 2.2vw, 2rem); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =====================================================
   LAYOUT UTILITIES
===================================================== */
.container   { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 80px); }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.section     { padding: clamp(60px, 8vw, 120px) 0; }
.grid-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: var(--cream);
  color: var(--charcoal);
}

html[dir="rtl"] .btn,
html[dir="rtl"] .suite-meta-item,
html[dir="rtl"] .contact-detail,
html[dir="rtl"] .footer-contact-item,
html[dir="rtl"] .location-point,
html[dir="rtl"] .suite-features-full li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .header-inner,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .lang-switcher,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .social-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-indicators {
  right: auto;
  left: clamp(20px, 6vw, 100px);
}

html[dir="rtl"] .suite-badge {
  left: auto;
  right: 16px;
}

html[dir="rtl"] .faq-question,
html[dir="rtl"] .contact-detail,
html[dir="rtl"] .footer-contact-item,
html[dir="rtl"] .location-point,
html[dir="rtl"] .suite-features-full li,
html[dir="rtl"] .suite-meta-item {
  text-align: right;
}

html[dir="rtl"] .faq-question svg,
html[dir="rtl"] .location-point-icon,
html[dir="rtl"] .contact-detail-icon,
html[dir="rtl"] .footer-contact-item svg {
  flex-shrink: 0;
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 28px;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
  text-align: right;
}

/* =====================================================
   HEADER / NAVIGATION
===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}
.site-header.transparent { background: transparent; }
.site-header.scrolled {
  background: var(--warm-white);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 clamp(20px, 5vw, 60px);
}
.site-logo {
  display: inline-flex;
  align-items: center;
}
.site-logo img {
  height: 44px;
  width: auto;
  max-width: min(220px, 32vw);
  object-fit: contain;
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  transition: color var(--transition);
}
.site-header.scrolled .site-logo .logo-text { color: var(--charcoal); }

.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a:hover { color: #fff; }
.site-header.scrolled .main-nav a { color: var(--stone); }
.site-header.scrolled .main-nav a:hover { color: var(--charcoal); }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 0.4rem;
}
.lang-switcher a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: var(--transition);
}
.lang-switcher a.active,
.lang-switcher a:hover { 
  color: #fff; 
  border-color: rgba(255,255,255,0.6); 
}
.site-header.scrolled .lang-switcher a { 
  color: var(--stone); 
  border-color: var(--border); 
}
.site-header.scrolled .lang-switcher a.active,
.site-header.scrolled .lang-switcher a:hover { 
  color: var(--charcoal); 
  border-color: var(--charcoal); 
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--charcoal); }

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.75) 0%,
    rgba(10,8,6,0.25) 50%,
    rgba(10,8,6,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 8vw, 100px) clamp(20px, 6vw, 100px);
  padding-bottom: clamp(60px, 10vw, 120px);
  max-width: 800px;
}
.hero-content .eyebrow {
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-indicators {
  position: absolute;
  bottom: 40px; right: clamp(20px, 6vw, 100px);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background var(--transition);
}
.hero-dot.active { background: var(--gold-light); width: 48px; }

/* =====================================================
   ABOUT STRIP
===================================================== */
.about-strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(48px, 6vw, 80px) 0;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.about-strip h2 { margin-bottom: 1.2rem; }
.about-strip p { color: rgba(244,239,230,0.75); line-height: 1.85; }
.about-strip .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--gold-light);
  line-height: 1;
}
.stat-item span {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.5);
  margin-top: 0.3rem;
  display: block;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.about-img-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-img-grid img:first-child {
  grid-row: span 2;
}

/* =====================================================
   SUITES SECTION
===================================================== */
.suites-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.suites-header .eyebrow { margin-bottom: 0.8rem; }
.suites-header h2 { margin-bottom: 1rem; }
.suites-header p { color: var(--stone); max-width: 540px; margin: 0 auto; }

.suite-card {
  background: var(--ivory);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.suite-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.suite-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.suite-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.suite-card:hover .suite-card-img img { transform: scale(1.05); }
.suite-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--charcoal);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
}
.suite-card-body { padding: 1.8rem 2rem; }
.suite-card-body .eyebrow { margin-bottom: 0.5rem; }
.suite-card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.suite-card-body p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.suite-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  margin-bottom: 1.8rem;
}
.suite-features li {
  font-size: 0.78rem;
  color: var(--stone);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.suite-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.suite-size {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.3rem;
}

/* =====================================================
   AMENITIES
===================================================== */
.amenities { background: var(--cream); }
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.amenity-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.amenity-item:hover { background: var(--ivory); }
.amenity-icon {
  width: 40px; height: 40px;
  margin-bottom: 1rem;
  color: var(--gold);
}
.amenity-item h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.amenity-item p {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
}

/* =====================================================
   LOCATION SECTION
===================================================== */
.location-section { background: var(--charcoal); color: var(--cream); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.location-content {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-content .eyebrow { margin-bottom: 1rem; }
.location-content h2 { color: var(--cream); margin-bottom: 1.5rem; }
.location-content p { color: rgba(244,239,230,0.7); line-height: 1.85; margin-bottom: 2rem; }
.location-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.location-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.location-point:last-child { border-bottom: none; }
.location-point-icon {
  width: 36px; height: 36px;
  background: rgba(184,154,106,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-point-icon svg { width: 16px; height: 16px; color: var(--gold-light); }
.location-point-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.location-point-text span {
  font-size: 0.8rem;
  color: rgba(244,239,230,0.5);
}
.location-map {
  position: relative;
  min-height: 500px;
}
.location-map iframe {
  width: 100%; height: 100%;
  min-height: 500px;
  border: none;
  filter: grayscale(25%) sepia(10%);
}

/* =====================================================
   TESTIMONIALS / FAQ STRIP
===================================================== */
.faq-strip { background: var(--ivory); }
.faq-strip .section-header { margin-bottom: 3rem; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-question svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 1.4rem;
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section { background: var(--warm-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--stone); margin-bottom: 2.5rem; line-height: 1.85; }
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-detail strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.3rem;
}
.contact-detail a, .contact-detail span {
  font-size: 0.95rem;
  color: var(--charcoal);
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(244,239,230,0.5);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 260px;
}
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.social-links svg { width: 15px; height: 15px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(244,239,230,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  align-items: flex-start;
}
.footer-contact-item svg {
  width: 14px; height: 14px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.footer-contact-item span {
  font-size: 0.82rem;
  color: rgba(244,239,230,0.55);
  line-height: 1.5;
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(244,239,230,0.3);
}
.footer-bottom a { color: var(--gold); }

/* =====================================================
   FLOATING WHATSAPP
===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* =====================================================
   SUITE DETAIL PAGE
===================================================== */
.suite-hero {
  height: 75vh;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.suite-hero img { width: 100%; height: 100%; object-fit: cover; }
.suite-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.55));
}
.suite-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: clamp(30px, 5vw, 64px);
  color: #fff;
}
.suite-hero-content .eyebrow { color: var(--gold-light); margin-bottom: 0.8rem; }
.suite-hero-content h1 { color: #fff; margin-bottom: 0.8rem; }
.suite-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.suite-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.suite-meta-item svg { width: 16px; height: 16px; color: var(--gold-light); }

.suite-detail-body { padding: clamp(40px, 6vw, 80px) 0; }
.suite-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.suite-description {
  font-size: 1.02rem;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 3rem;
}
.suite-features-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  margin-bottom: 3rem;
}
.suite-features-full li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--charcoal);
}
.suite-features-full li svg {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.suite-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 3rem;
}
.suite-gallery img {
  width: 100%; height: 180px;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity var(--transition);
}
.suite-gallery img:hover { opacity: 0.85; }
.suite-gallery img:first-child {
  grid-column: span 2;
  height: 240px;
}

.booking-card {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 2rem;
  position: sticky;
  top: 100px;
}
.booking-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.booking-card-size {
  font-size: 0.78rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: 0.8rem; }
.booking-note {
  font-size: 0.75rem;
  color: var(--stone);
  text-align: center;
  line-height: 1.6;
}
.booking-note a { color: var(--gold); }

/* =====================================================
   PAGE HERO (inner pages)
===================================================== */
.page-hero {
  background: var(--charcoal);
  padding: 140px 0 60px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 0.8rem; }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(244,239,230,0.6); margin-top: 0.8rem; font-size: 1rem; }

/* =====================================================
   MOBILE
===================================================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .suite-detail-layout { grid-template-columns: 1fr; }
  .booking-card { position: static; }
}

@media (max-width: 768px) {
  .site-header,
  .site-header.transparent,
  .site-header.scrolled {
    background: var(--warm-white);
    box-shadow: 0 1px 0 var(--border);
  }
  .header-inner {
    height: 68px;
    padding: 0 16px;
  }
  .site-logo {
    flex: 0 1 auto;
    min-width: 0;
  }
  .site-logo img {
    height: 44px;
    max-width: 220px;
  }
  .site-logo .logo-text {
    font-size: 1.3rem;
    color: var(--charcoal);
  }
  .header-actions {
    gap: 0.45rem;
    flex-shrink: 0;
  }
  .header-actions > .btn {
    display: none;
  }
  .header-actions .btn {
    padding: 0.58rem 0.82rem !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.1em;
    background: var(--warm-white);
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
  }
  .lang-switcher { gap: 0.25rem; }
  .lang-switcher a {
    padding: 0.18rem 0.4rem;
    font-size: 0.62rem;
    color: var(--charcoal);
    border-color: var(--border);
  }
  .lang-switcher a.active,
  .lang-switcher a:hover {
    color: var(--charcoal);
    border-color: var(--charcoal);
  }
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--charcoal); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 999; }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--cream); font-size: 1.1rem; }
  .nav-toggle {
    display: flex;
    z-index: 1001;
    flex-shrink: 0;
    min-width: 32px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: #f1efea;
  }
  .nav-toggle span { background: var(--charcoal); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .about-strip-inner { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-img-grid { grid-template-rows: 200px 200px; }
  .suite-gallery { grid-template-columns: 1fr 1fr; }
  .suite-gallery img:first-child { grid-column: span 2; }
  .suite-features-full { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .suite-gallery { grid-template-columns: 1fr; }
  .suite-gallery img:first-child { grid-column: span 1; }

  html[dir="rtl"] .header-inner {
    flex-direction: row-reverse;
  }
}

@media (max-width: 480px) {
  .hero-content { padding: 30px 20px 80px; }
  .hero-actions { flex-direction: column; }
  .amenity-grid { grid-template-columns: 1fr; }
}
