/* ============================================
   ICONIA ZAMALEK RESIDENCES
   Static HTML Site - Optimized for SEO & Speed
   ============================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f8f7f5;
  --color-card: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-accent: #8b6f4e;
  --color-accent-hover: #7a6143;
  --color-border: #e5e2dd;
  --color-overlay: rgba(0, 0, 0, 0.45);
  --color-overlay-hover: rgba(0, 0, 0, 0.55);
  --color-white: #ffffff;
  --color-white-90: rgba(255, 255, 255, 0.9);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-50: rgba(255, 255, 255, 0.5);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  --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-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --transition: 0.3s ease;
  --transition-slow: 0.7s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-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 {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

/* --- Utilities --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--wide {
  max-width: var(--container-wide);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }

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

/* --- Animations --- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(8px) translateX(-50%); }
}

@keyframes kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}

.animate-fade-in-delay-1 { animation-delay: 0.2s; }
.animate-fade-in-delay-2 { animation-delay: 0.4s; }
.animate-fade-in-delay-3 { animation-delay: 0.6s; }
.animate-fade-in-delay-4 { animation-delay: 0.8s; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  gap: 8px;
}

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

.btn--white {
  background: var(--color-white);
  color: var(--color-accent);
}
.btn--white:hover {
  background: var(--color-white-90);
}

.btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}
.btn--outline:hover {
  background: var(--color-bg-alt);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--full {
  width: 100%;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition);
}

.nav__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

.nav__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  max-width: var(--container-wide);
  margin: 0 auto;
}

/* Subpage nav - solid background */
.nav--solid .nav__gradient {
  display: none;
}

.nav--solid .nav__inner {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.nav--solid .nav__link,
.nav--solid .nav__brand-name {
  color: var(--color-text) !important;
}


.nav--solid .nav__link:hover {
  color: var(--color-accent) !important;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
  text-decoration: none;
}

@media (max-width: 600px) {
  .nav__brand-name {
    font-size: 18px;
  }
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--color-white-80);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}

.nav--solid .nav__menu-btn {
  background: var(--color-bg-alt);
}

.nav__menu-btn:hover {
  background: var(--color-accent);
}

.nav__menu-btn svg {
  width: 20px;
  height: 20px;
  color: var(--color-white);
}

.nav--solid .nav__menu-btn svg {
  color: var(--color-text);
}

.nav__menu-btn:hover svg {
  color: var(--color-white);
}

.nav__book-btn {
  display: none;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  z-index: 99;
  animation: slideDown 0.3s ease forwards;
}

.mobile-menu.is-closing {
  animation: slideUp 0.3s ease forwards;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__inner {
  padding: 16px 24px;
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

.mobile-menu .btn {
  margin-top: 16px;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
  .nav__menu-btn {
    display: none;
  }
  .nav__book-btn {
    display: inline-flex;
  }
}

/* ===========================
   HERO SECTION (Homepage)
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 20s ease infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.35), rgba(0,0,0,0.15));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin-top: 60px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.6), 0 0 15px rgba(0,0,0,0.4);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-white-90);
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
  line-height: 1.5;
}

.hero__buttons {
  display: none;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  animation: bounce 2s infinite;
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-white-50);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-dot {
  width: 4px;
  height: 12px;
  background: var(--color-white-50);
  border-radius: 2px;
}

/* Slideshow Navigation */
.hero__slide-nav {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero__slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-white-50);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.hero__slide-dot.is-active {
  background: var(--color-white);
  width: 24px;
  border-radius: 4px;
}

/* Slideshow Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.hero__arrow:hover {
  background: rgba(255,255,255,0.85);
}

.hero__arrow svg {
  width: 24px;
  height: 24px;
  color: var(--color-text);
}

.hero__arrow--left { left: 16px; }
.hero__arrow--right { right: 16px; }

@media (min-width: 768px) {
  .hero__title {
    font-size: 64px;
  }
  .hero__subtitle {
    font-size: 24px;
  }
  .hero__buttons {
    display: flex;
  }
  .hero__content {
    margin-top: 0;
  }
}

/* ===========================
   BOOKING WIDGET
   =========================== */
.booking-widget {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  padding: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.booking-widget__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.booking-widget__field {
  background: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}

.booking-widget__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-widget__input {
  width: 100%;
  border: none;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-text);
  background: transparent;
  outline: none;
}

.booking-widget__input::placeholder {
  color: var(--color-text-muted);
}

.booking-widget__btn {
  grid-column: span 2;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.booking-widget__btn:hover {
  background: var(--color-accent-hover);
}

@media (min-width: 768px) {
  .booking-widget {
    max-width: 800px;
  }
  .booking-widget__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .booking-widget__btn {
    grid-column: span 1;
  }
}

/* ===========================
   SECTION STYLES
   =========================== */
.section {
  padding: 80px 0;
}

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

.section--muted {
  background: #f5f3f0;
}

.section__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section__title--lg {
  font-size: 36px;
}

.section__subtitle {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
  .section__title {
    font-size: 48px;
  }
  .section__title--lg {
    font-size: 56px;
  }
}

/* ===========================
   PAGE HERO (Subpages)
   =========================== */
.page-hero {
  padding: 120px 24px 40px;
  background: linear-gradient(to bottom, rgba(139,111,78,0.06), transparent);
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .page-hero {
    padding: 140px 40px 60px;
  }
  .page-hero__title {
    font-size: 64px;
  }
  .page-hero__subtitle {
    font-size: 32px;
  }
}

/* ===========================
   FEATURES GRID (Homepage)
   =========================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.features-grid__item {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: block;
}

.features-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.features-grid__item:hover img {
  transform: scale(1.05);
}

.features-grid__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  transition: background var(--transition);
}

.features-grid__item:hover .features-grid__overlay {
  background: var(--color-overlay-hover);
}

.features-grid__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  color: var(--color-white);
}

.features-grid__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.features-grid__desc {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 420px;
  opacity: 0.9;
}

.features-grid__powered {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 13px;
  color: var(--color-white-80);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid__item {
    height: 650px;
  }
  .features-grid__title {
    font-size: 36px;
  }
  .features-grid__desc {
    font-size: 16px;
  }
}

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.card__text {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card__detail {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.card__accent {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
}

/* Card grid layouts */
.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--2 {
  grid-template-columns: 1fr;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===========================
   SUITE CARDS (Suites page)
   =========================== */
.suite-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.suite-card:hover {
  box-shadow: var(--shadow-lg);
}

.suite-card__image {
  height: 280px;
  overflow: hidden;
}

.suite-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.suite-card__body {
  padding: 28px;
}

.suite-card__type {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.suite-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.suite-card__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.suite-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.suite-card__amenity {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.suite-card__amenity svg {
  width: 16px;
  height: 16px;
}

.suite-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.suite-card__price {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-text-muted);
}

.suite-card__price strong {
  font-size: 20px;
  color: var(--color-text);
}

/* ===========================
   CATEGORY SECTION (Nearby)
   =========================== */
.category {
  margin-bottom: 48px;
}

.category__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.category__icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.category__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
}

/* ===========================
   ACCORDION (FAQ)
   =========================== */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion__item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.accordion__trigger:hover {
  color: var(--color-accent);
}

.accordion__trigger svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

.accordion__item.is-open .accordion__trigger svg {
  transform: rotate(180deg);
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion__item.is-open .accordion__content {
  max-height: 500px;
}

.accordion__body {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTENT SECTIONS
   =========================== */
.content-block {
  margin-bottom: 48px;
}

.content-block__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.content-block__text {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-block__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Image with text layout */
.split {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
}

.split__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 15px;
}

.checklist__dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
  padding: 80px 24px;
  text-align: center;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .cta {
    padding: 100px 24px;
  }
  .cta__title {
    font-size: 48px;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 60px 0;
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.footer__brand-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.footer__managed {
  font-size: 12px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 16px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer__social svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
}

.footer__social:hover {
  background: var(--color-accent);
}

.footer__social:hover svg {
  color: var(--color-white);
}

.footer__heading {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 14px;
}

.footer__link {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--color-text);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ===========================
   IMAGE PLACEHOLDER
   =========================== */
.img-placeholder {
  background: linear-gradient(135deg, rgba(139,111,78,0.15), rgba(139,111,78,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 14px;
  font-style: italic;
  border-radius: var(--radius-lg);
}

/* ===========================
   AMENITIES GRID (About page)
   =========================== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.amenity-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.amenity-item span {
  font-size: 14px;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===========================
   KEY FACTS (About page)
   =========================== */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.fact-item {
  text-align: center;
  padding: 24px;
}

.fact-item__number {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.fact-item__label {
  font-size: 14px;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===========================
   PERSONA CARDS (About page)
   =========================== */
.persona-grid {
  display: grid;
  gap: 20px;
}

.persona-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.persona-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(139,111,78,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.persona-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
}

.persona-card__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.persona-card__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   EXPERIENCE CARDS
   =========================== */
.experience-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.experience-card:hover {
  box-shadow: var(--shadow-lg);
}

.experience-card__image {
  height: 220px;
  background: linear-gradient(135deg, rgba(139,111,78,0.2), rgba(139,111,78,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-card__image svg {
  width: 56px;
  height: 56px;
  color: rgba(139,111,78,0.35);
}

.experience-card__body {
  padding: 24px;
}

.experience-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.experience-card__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.experience-card__detail {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.scroll-top:hover {
  background: var(--color-accent-hover);
}

.scroll-top.is-visible {
  display: flex;
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

/* Hero Logo Image */
.hero__logo-img {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto 8px;
}

@media (max-width: 600px) {
  .hero__logo-img {
    max-width: 220px;
  }
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}

.lightbox-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.lightbox-trigger:hover img {
  transform: scale(1.03);
}

.lightbox-trigger__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.lightbox-trigger__icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

.lightbox-trigger:hover .lightbox-trigger__icon,
.lightbox-trigger:focus .lightbox-trigger__icon {
  opacity: 1;
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: lightbox-in 0.25s ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lightbox-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 60px 80px;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightbox-img-in 0.2s ease;
}

@keyframes lightbox-img-in {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox__close svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox__arrow:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox__arrow svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }

.lightbox__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .lightbox__stage {
    padding: 56px 16px 48px;
  }
  .lightbox__arrow--prev { left: 8px; }
  .lightbox__arrow--next { right: 8px; }
  .lightbox__arrow {
    width: 40px;
    height: 40px;
  }
}
