/* ===========================
   PALMSTAY RESIDENCY & KITCHEN
   Global Stylesheet
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- CSS Variables ---- */
:root {
  --green-dark: #0B4B2A;
  --green-mid:  #0D5C34;
  --green-light:#125C35;
  --gold:       #D4A12A;
  --gold-light: #E8C66A;
  --gold-pale:  #F5E6B8;
  --off-white:  #F8F7F2;
  --cream:      #FAF8F3;
  --text-dark:  #1A1A1A;
  --text-mid:   #444444;
  --text-light: #777777;
  --white:      #FFFFFF;
  --border:     #E2DCCC;
  --shadow-sm:  0 2px 12px rgba(11,75,42,0.08);
  --shadow-md:  0 8px 32px rgba(11,75,42,0.14);
  --shadow-lg:  0 20px 60px rgba(11,75,42,0.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
.display-font { font-family: 'DM Serif Display', serif; }
.serif-font   { font-family: 'Playfair Display', serif; }
h1,h2,h3,h4,h5 { font-family: 'DM Serif Display', serif; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: var(--text-mid); line-height: 1.75; }

/* ---- Layout Helpers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 56px 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex   { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---- Section Eyebrow ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 28px; height: 1.5px; background: var(--gold);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold); color: var(--green-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent; color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-dark:hover {
  background: var(--green-dark); color: var(--white);
  transform: translateY(-2px);
}
.btn-green {
  background: var(--green-dark); color: var(--white);
  border-color: var(--green-dark);
}
.btn-green:hover {
  background: var(--green-mid); border-color: var(--green-mid);
  transform: translateY(-2px); box-shadow: var(--shadow-sm);
}
.btn-whatsapp {
  background: #25D366; color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #22bf5c; border-color: #22bf5c;
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--border);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-body { padding: 24px; }

/* ---- Feature Icon ---- */
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  flex-shrink: 0;
}

/* ---- Section Title ---- */
.section-title { margin-bottom: 48px; }
.section-title h2 { margin-bottom: 12px; }
.section-title p  { font-size: 1.05rem; max-width: 560px; }
.section-title.center p { margin: 0 auto; }

/* ---- Gold Divider ---- */
.gold-line {
  width: 48px; height: 3px; background: var(--gold);
  margin: 12px 0 20px;
}
.gold-line.center { margin: 12px auto 20px; }

/* ---- Stat Block ---- */
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ---- Tag Badge ---- */
.badge {
  display: inline-block; padding: 4px 12px;
  background: var(--gold-pale); color: var(--green-dark);
  border-radius: 20px; font-size: 0.78rem; font-weight: 600;
}
.badge-green {
  background: var(--green-dark); color: var(--white);
}

/* ==================
   NAVIGATION
   ================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(11,75,42,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.site-nav.solid-nav {
  background: var(--green-dark);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: relative;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav-logo-text { color: var(--white); }
.nav-logo-text strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; display: block; line-height: 1.1;
}
.nav-logo-text span {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-light); opacity: 0.85;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-light);
  background: rgba(255,255,255,0.08);
}
.nav-cta { margin-left: 16px; }
.nav-cta a {
  background: var(--gold); color: var(--green-dark) !important;
  font-weight: 700; padding: 10px 22px;
  border-radius: var(--radius-sm);
}
.nav-cta a:hover { background: var(--gold-light); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px;
  align-items: center; justify-content: center;
  height: 44px; width: 44px;
  flex-shrink: 0;
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--green-dark); padding: 20px 24px 28px;
  flex-direction: column; gap: 4px; z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500;
  padding: 12px 16px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: var(--gold-light); }
.mobile-menu .btn-primary { margin-top: 12px; text-align: center; justify-content: center; }

/* ==================
   FOOTER
   ================== */
.site-footer {
  background: var(--green-dark); color: var(--white);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-top: 16px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--green-dark); }
.footer-heading {
  font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65); font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start;
}
.footer-contact-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: rgba(212,161,42,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--gold); flex-shrink: 0;
}
.footer-contact-item p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; }
.footer-contact-item strong { color: var(--white); font-size: 0.88rem; display: block; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==================
   AMENITY ICONS
   ================== */
.amenity-list { display: flex; flex-wrap: wrap; gap: 12px; }
.amenity-tag {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 24px;
  background: var(--off-white); border: 1px solid var(--border);
  font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
}
.amenity-tag .icon { font-size: 1rem; }

/* ==================
   PAGE HERO (inner pages)
   ================== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  padding: 140px 0 72px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb a, .breadcrumb span {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold-light); }

/* ==================
   CTA SECTION
   ================== */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '🌴';
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  font-size: 8rem; opacity: 0.06;
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==================
   TESTIMONIAL CARD
   ================== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  position: relative;
}
.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem; color: var(--gold); line-height: 0.8;
  position: absolute; top: 24px; right: 28px; opacity: 0.3;
}
.testimonial-text {
  font-size: 0.95rem; color: var(--text-mid);
  font-style: italic; line-height: 1.75; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--green-dark);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 12px; }

/* ==================
   TABLE STYLES
   ================== */
.pricing-table {
  width: 100%; border-collapse: collapse;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--green-dark); color: var(--white);
  padding: 16px 20px; font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 600; text-align: left;
  letter-spacing: 0.04em;
}
.pricing-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 0.95rem; color: var(--text-mid);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--off-white); }
.pricing-table td strong { color: var(--text-dark); }
.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--green-dark); font-style: italic;
}

/* ==================
   POLICY CARDS
   ================== */
.policy-card {
  padding: 28px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: var(--white);
}
.policy-card.allowed { border-top: 3px solid #22c55e; }
.policy-card.not-allowed { border-top: 3px solid #ef4444; }
.policy-card.neutral { border-top: 3px solid var(--gold); }
.policy-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text-mid);
}
.policy-item:last-child { border-bottom: none; padding-bottom: 0; }
.policy-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ==================
   MAP EMBED
   ================== */
.map-container {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); border: 3px solid var(--gold-pale);
}
.map-container iframe { width: 100%; height: 420px; border: none; display: block; }

/* ==================
   GALLERY GRID
   ================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 4/3; background: var(--off-white);
  position: relative; cursor: pointer;
}
.gallery-item img, .gallery-item .gallery-placeholder {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img, .gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.gallery-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--off-white), var(--gold-pale));
  font-size: 2rem; gap: 8px;
}
.gallery-placeholder span {
  font-family: 'Inter', sans-serif; font-size: 0.8rem;
  color: var(--text-light); font-weight: 500;
}
.gallery-item.large { grid-column: span 2; aspect-ratio: 16/9; }

/* ==================
   CONTACT FORM
   ================== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  background: var(--white); transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(11,75,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ==================
   MENU PAGE
   ================== */
.menu-card {
  background: var(--white); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.menu-card-header {
  background: var(--green-dark); color: var(--white);
  padding: 20px 24px; display: flex; align-items: center; gap: 12px;
}
.menu-card-header h3 { color: var(--white); font-family: 'DM Serif Display', serif; margin: 0; }
.menu-icon { font-size: 1.5rem; }
.menu-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-bottom: 1px solid var(--off-white);
}
.menu-item:last-child { border-bottom: none; }
.menu-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.menu-item span { font-size: 0.92rem; color: var(--text-mid); }

/* ==================
   HERO SLIDESHOW
   ================== */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #061f12 0%, #0B4B2A 50%, #0d5c34 100%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(6,31,18,0.92) 40%, rgba(6,31,18,0.3) 100%);
}
.hero-deco {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: flex-end;
  padding-right: 5%;
}
.hero-deco-shape {
  width: clamp(300px,45vw,580px);
  height: clamp(300px,45vw,580px);
  border-radius: 40% 60% 60% 40% / 50% 50% 70% 30%;
  background: rgba(212,161,42,0.08);
  border: 1px solid rgba(212,161,42,0.15);
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 60% 40% / 50% 50% 70% 30%; }
  33%      { border-radius: 60% 40% 30% 70% / 60% 40% 60% 40%; }
  66%      { border-radius: 30% 70% 70% 30% / 40% 60% 30% 70%; }
}
.hero-building-img {
  position: absolute; right: 0; bottom: 0; top: 0; width: 55%;
  object-fit: cover; object-position: center;
  opacity: 0.25; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 60px;
}
.hero-text { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(212,161,42,0.15); border: 1px solid rgba(212,161,42,0.3);
  border-radius: 24px; padding: 6px 16px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
.hero-text h1 em { color: var(--gold); font-style: normal; }
.hero-text p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 480px; margin-bottom: 36px; }
.hero-checks {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}
.hero-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: rgba(255,255,255,0.85); font-weight: 500;
}
.hero-check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  /* ── NAV ── */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* ── GRIDS: all collapse to single column ── */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── HERO ── */
  .hero-content { padding: 100px 0 48px; }
  .hero-stats { gap: 20px; }

  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.large { grid-column: span 1; }

  /* ── FORMS ── */
  .form-grid { grid-template-columns: 1fr; }

  /* ── SPACING ── */
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 32px 0; }

  /* ── CONTACT PAGE GRID ── */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .form-card { padding: 24px 20px !important; }
  .contact-info-card { padding: 28px 20px !important; }

  /* ── POLICIES PAGE ── */
  .safety-grid { grid-template-columns: 1fr !important; }
  .info-card { padding: 24px 20px !important; }

  /* ── PAGE HERO ── */
  .page-hero { padding: 110px 0 52px !important; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }

  /* ── CTA ── */
  .cta-section { padding: 52px 0 !important; }
  .cta-buttons { flex-direction: column; align-items: center; gap: 12px; }

  /* ── LIFE SPLIT (experience page) ── */
  .life-split { grid-template-columns: 1fr !important; }
  .life-panel { padding: 36px 24px !important; }

  /* ── PRICING PACKAGES (residence) ── */
  .package-card { margin-bottom: 0; }

  /* ── TEXT ALIGNMENT ── */
  .text-center { text-align: center; }
  .section-title p { margin: 0 auto; }

  /* ── FOOTER ── */
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .footer-bottom div { flex-direction: column; align-items: center; gap: 8px; }

  /* ── CONTAINER PADDING ── */
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  /* ── GALLERY ── */
  .gallery-grid { grid-template-columns: 1fr; }

  /* ── HERO STATS ── */
  .hero-stats { flex-wrap: wrap; gap: 16px; }

  /* ── CTA BUTTONS ── */
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ── NAV LOGO on mobile ── */
  .nav-logo-img { height: 32px !important; }

  /* ── STAT NUMBER ── */
  .stat-number { font-size: 2.2rem; }

  /* ── PRICING TABLE ── */
  .pricing-table td, .pricing-table th { padding: 10px 12px !important; font-size: 0.82rem !important; }
  .price-tag { font-size: 1.1rem !important; }

  /* ── PACKAGE CARDS ── */
  .pricing-row { flex-direction: column; gap: 4px; align-items: flex-start; padding: 14px 20px; }

  /* ── AMENITY GRID ── */
  .grid-4 { grid-template-columns: 1fr !important; }

  /* ── CONTACT QUICK BTNS ── */
  .contact-quick-btn { width: 100%; justify-content: center; }

  /* ── HOURS ── */
  .hours-row { flex-wrap: wrap; gap: 4px; }

  /* ── MAP ── */
  .map-container iframe { height: 280px !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ── Real logo image in nav ── */
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.03); }

/* ==================
   REAL LOGO IMAGE
   ================== */
.nav-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.mobile-logo-link {
  display: block;
  margin-bottom: 8px;
  padding: 4px 0;
}
@media(max-width:768px){
  .nav-logo-img { height: 38px; }
}
