/* =====================================================================
   Sarai Coworking Space - Main Stylesheet
   CSS variables for Light/Dark theming, logical properties for RTL/LTR
   ===================================================================== */

/* Mobile-first: never allow horizontal page scroll. overflow-x:clip keeps
   sticky positioning intact (clip does not create a scroll container). */
html, body { overflow-x: clip; }
@supports not (overflow: clip) { html { overflow-x: hidden; } }

:root {
  /* Brand palette */
  --amber: #f59e0b;
  --amber-600: #d97706;
  --amber-50: #fffbeb;

  /* Theme-aware surfaces */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --heading: #0f172a;

  /* Accent */
  --accent: var(--amber);
  --accent-dark: var(--amber-600);
  --accent-contrast: #1e293b;
  --on-accent: #1e1b16;

  /* Feedback */
  --success-bg: #ecfdf5;
  --success-text: #047857;
  --error-bg: #fef2f2;
  --error-text: #b91c1c;

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.1);
  --shadow: 0 10px 30px -10px rgba(15,23,42,.15);
  --shadow-lg: 0 25px 50px -12px rgba(15,23,42,.22);
  --transition: .25s cubic-bezier(.4,0,.2,1);

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --max-w: 1160px;

  /* Unified icon treatment (radioactive: matches the contact page icon exactly) */
  --icon-bg: linear-gradient(135deg, #0f172a, #1e293b);
  --icon-color: #f59e0b;
  --icon-border: rgba(245,158,11,.28);
  --icon-border-hover: rgba(245,158,11,.5);
  --icon-radius: 10px;
  --icon-shadow: 0 4px 12px rgba(15,23,42,.18);
  --icon-shadow-hover: 0 8px 16px rgba(15,23,42,.24);
}

html[data-theme="dark"] {
  --bg: #0f172a;
  --bg-alt: #0b1120;
  --surface: #111c33;
  --surface-2: #1e293b;
  --border: #26334d;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --heading: #f1f5f9;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --accent-contrast: #0f172a;
  --on-accent: #1e1b16;
  --success-bg: #022c22;
  --success-text: #6ee7b7;
  --error-bg: #450a0a;
  --error-text: #fca5a5;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  --shadow-lg: 0 25px 50px -12px rgba(0,0,0,.7);
}

/* RTL: flip logical alignment via direction-aware properties */
[dir="rtl"] {
  --font: 'Cairo', 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  transition: background-color var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
figure { margin: 0; padding: 0; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1,h2,h3,h4 { color: var(--heading); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; }
p { margin: 0 0 1em; }
ul { padding-inline-start: 1.25em; }
button { font-family: inherit; cursor: pointer; }
.muted { color: var(--text-muted); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.skip-link {
  position: absolute; inset-inline-start: -9999px;
}
.skip-link:focus {
  inset-inline-start: 1rem; top: 1rem; z-index: 1000;
  background: var(--accent); color: var(--on-accent); padding:.5rem 1rem; border-radius: 8px;
}

.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 1.25rem; }

.icon { width: 20px; height: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 12px; font-weight: 700; font-size: .95rem;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow var(--transition), background var(--transition);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(135deg, #f59e0b, #d97706); color: #1e1b16; border: 1px solid transparent; box-shadow: 0 12px 28px -8px rgba(245,158,11,.55); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(245,158,11,.65); color: #1e1b16; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--heading); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-outline { background: var(--surface); color: var(--heading); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-light { background: #fff; color: #111c33; }
.btn-light:hover { background: var(--amber-50); }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1fb959; }
.btn-block { width: 100%; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; border-radius: 10px; }

/* Scroll progress (top hairline) */
.scroll-progress { position: fixed; top: 0; inset-inline-start: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--accent), #fbbf24); z-index: 200; transition: width .08s linear; pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--announce-bg, linear-gradient(90deg, var(--accent-dark), var(--accent)));
  color: var(--announce-fg, var(--on-accent)); position: relative; z-index: 101;
  font-size: .85rem; font-weight: 700;
  transition: height .3s ease, padding .3s ease, opacity .3s ease;
}
.announce p { transition: opacity .4s ease; }
.announce p.is-fading { opacity: 0; }
.announce p.is-typing::after { content: "▍"; animation: blink 1s steps(1) infinite; font-weight: 400; }
@keyframes blink { 50% { opacity: 0; } }
.ann-marquee { display: inline-flex; gap: 0; white-space: nowrap; max-width: 100%; animation: ann-scroll 18s linear infinite; will-change: transform; }
#announceText:has(> .ann-marquee) { overflow: hidden; flex: 1 1 auto; min-width: 0; width: 100%; max-width: none; }
.ann-marquee span { padding-inline-end: .5rem; }
@keyframes ann-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[dir="rtl"] .ann-marquee { animation-name: ann-scroll-rtl; }
@keyframes ann-scroll-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.announce.is-hidden { height: 0; opacity: 0; overflow: hidden; padding: 0; border: 0; }
.announce-inner { display: flex; align-items: center; justify-content: center; gap: .6rem; padding: .55rem 2.6rem; position: relative; min-height: 40px; }
.announce-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; flex-shrink: 0; }
.announce-icon svg { width: 18px; height: 18px; }
.announce p { margin: 0; text-align: center; }
.offer-countdown { display: inline-flex; align-items: center; padding: .15rem .6rem; border-radius: 999px; background: rgba(0,0,0,.22); font-variant-numeric: tabular-nums; font-size: .78rem; letter-spacing: .04em; white-space: nowrap; }
.announce a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.announce a:hover { color: #fff; }
.announce-close {
  position: absolute; top: 50%; right: .8rem; transform: translateY(-50%);
  background: transparent; border: 0; color: inherit; cursor: pointer;
  font-size: 1.3rem; line-height: 1; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; opacity: .8; transition: opacity .2s ease, background .2s ease;
}
[dir="rtl"] .announce-close { right: auto; left: .8rem; }
.announce-close:hover { opacity: 1; background: rgba(0,0,0,.15); }
@media (max-width: 520px) {
  .container.announce-inner { gap: .45rem; padding: .45rem 1.8rem; min-height: 40px; }
  .announce-icon { display: none; }
  .announce { font-size: .8rem; }
  .announce-close { right: .2rem; width: 30px; height: 30px; }
  [dir="rtl"] .announce-close { right: auto; left: .2rem; }
}
@media (max-width: 340px) {
  .container.announce-inner { padding-inline: 1.42rem; }
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; color: var(--heading); }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--on-accent); display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.3rem;
}
.brand-text { font-size: 1.05rem; white-space: nowrap; }
.brand-logo { height: 32px; width: auto; max-width: 180px; display: block; object-fit: contain; border-radius: 10px; }
@media (max-width: 640px) {
  .brand-logo { height: 26px; max-width: 140px; }
  .nav-wrap { min-height: 64px; }
  .nav-tools > a.btn { display: none; }
  .nav-tools { gap: .45rem; }
  .lang-switcher { gap: 1px; }
  .lang-btn { padding: .3rem .45rem; font-size: .72rem; }
}

.main-nav { display: none; }
.nav-list { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-link { color: var(--text-muted); font-weight: 600; font-size: .95rem; padding: .35rem 0; position: relative; }
.nav-link:hover { color: var(--heading); text-decoration: none; }
.nav-link.is-active { color: var(--accent-dark); }
.nav-link.is-active::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -2px; height: 2px; border-radius: 2px;
  background: var(--accent);
}

.nav-tools { display: flex; align-items: center; gap: .6rem; }

.lang-switcher { display: flex; background: var(--surface-2); border-radius: 10px; padding: 3px; gap: 2px; }
.lang-btn { border: none; background: transparent; color: var(--text-muted); font-weight: 700; font-size: .78rem; padding: .35rem .55rem; border-radius: 8px; transition: all var(--transition); }
.lang-btn.is-active { background: var(--surface); color: var(--accent-dark); box-shadow: var(--shadow-sm); }

.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); color: var(--heading); display: inline-flex; align-items: center; justify-content: center;
}
.theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--heading); border-radius: 2px; transition: all .3s; }
@media (max-width: 400px) {
  .nav-tools { gap: .3rem; }
  .lang-switcher { padding: 2px; }
  .lang-btn { padding: .26rem .32rem; font-size: .68rem; }
  .site-search-btn { width: 34px; height: 34px; }
  .theme-toggle { width: 34px; height: 34px; }
  .nav-toggle { padding: 6px 8px; }
}

/* Mobile drawer ----------------------- */

/* Mobile nav - premium drawer */
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity:0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav-backdrop{ position:fixed; inset:0; background:rgba(15,23,42,.45); backdrop-filter:blur(2px); z-index:99; opacity:0; visibility:hidden; transition:opacity .3s ease, visibility .3s ease; }
body.nav-lock { position: fixed; top: 0; left: 0; right: 0; width: 100%; overflow-y: hidden; overscroll-behavior: none; }
.nav-backdrop.is-open{ opacity:1; visibility:visible; }
@media (max-width: 899px) {
  .main-nav {
    display: block; position: fixed; top: 0; inset-inline-end: 0; width: min(320px, 82vw); height: 100vh; height: 100dvh;
    background: var(--surface); border-inline-start: 1px solid var(--border);
    border-start-start-radius: 18px; border-start-end-radius: 0; border-end-start-radius: 18px; border-end-end-radius: 0;
    box-shadow: -16px 0 40px -12px rgba(15,23,42,.3); transform: translateX(100%); opacity: 1; pointer-events: auto;
    transition: transform .38s cubic-bezier(.32,.72,0,1); z-index:100; overflow-y:auto; -webkit-overflow-scrolling:touch;
    padding: calc(76px + 1rem) 1.25rem 1.5rem;
  }
  [dir="rtl"] .main-nav{ inset-inline-end:0; inset-inline-start:auto; transform: translateX(-100%); border-start-start-radius: 0; border-start-end-radius: 18px; border-end-start-radius: 0; border-end-end-radius: 18px; box-shadow: 16px 0 40px -12px rgba(15,23,42,.3); }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav::before {
    content: ""; position: absolute; top: 74px; inset-inline: 1.25rem; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 25%, var(--accent) 50%, var(--border) 75%, transparent); opacity: .7; pointer-events: none;
  }
  .nav-list { flex-direction: column; gap: .4rem; padding: 0; margin: 0; }
  .nav-list li { border-bottom: none; }
  .nav-list li:last-child { border-bottom: none; }
  .nav-link { display: flex; align-items: center; min-height: 52px; padding: .85rem 1rem; font-size: 1.08rem; font-weight: 600; border-radius: 12px; transition: background .25s ease, color .25s ease, transform .25s ease; }
  .nav-link:hover { background: color-mix(in srgb, var(--accent) 10%, transparent); color: var(--accent-dark); transform: translateX(-3px); }
  .nav-link.is-active { background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent-dark); font-weight: 700; }
  .nav-link--member { background: var(--accent); color:var(--on-accent) !important; border-radius: 12px; padding-inline: 1rem !important; margin-top: .7rem; justify-content:center; }
  .nav-link--member:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -10px color-mix(in srgb, var(--accent) 60%, transparent); }
}
[dir="rtl"] .nav-link:hover { transform: translateX(3px); }

.drawer-utilities { display: none; }
.drawer-theme { display: inline-flex; align-items: center; gap: .55rem; width: 100%; height: auto; padding: .65rem .9rem; border-radius: 10px; font-size: .9rem; font-weight: 600; color: var(--heading); justify-content: flex-start; }
.drawer-theme .drawer-theme-label { line-height: 1; }
@media (max-width: 767px) {
  .nav-tools > .site-search { display: none; }
  .main-nav .drawer-utilities .lang-switcher,
  .main-nav .drawer-theme { display: none; }
  .main-nav .drawer-utilities {
    display: grid; gap: .85rem; margin: .4rem 1.25rem 1.5rem; padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .drawer-utilities .lang-switcher { width: 100%; }
  .drawer-utilities .lang-btn { flex: 1; text-align: center; }
  .drawer-search { display: flex; gap: .5rem; }
  .drawer-search input { flex: 1; min-width: 0; }
}

main { min-height: 60vh; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 4rem 0 5rem; overflow: hidden; isolation: isolate; }
.hero::before { content:""; position:absolute; inset:-20% -10% auto -10%; height: 520px; background: radial-gradient(50% 60% at 18% 18%, color-mix(in srgb, var(--accent) 14%, transparent) 0%, transparent 62%), radial-gradient(40% 40% at 88% 12%, color-mix(in srgb, #38bdf8 10%, transparent) 0%, transparent 60%); pointer-events:none; z-index:0; opacity:.9; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .8rem; color: var(--accent-dark); margin-bottom: 1rem; unicode-bidi: isolate; }
.hero-title { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 15ch; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.cta-arr { display: inline-block; transition: transform .25s ease; }
[dir="rtl"] .cta-arr { transform: scaleX(-1); }
[dir="rtl"] .btn-primary:hover .cta-arr { transform: scaleX(-1) translateX(-3px); }
.btn-primary:hover .cta-arr, .btn-ghost:hover .cta-arr { transform: translateX(3px); }

.hero-stats { display: flex; gap: 1.2rem; margin-top: 2.2rem; flex-wrap: wrap; }
.stat strong { display: block; font-size: 1.9rem; color: var(--accent-dark); }
.stat span { color: var(--text-muted); font-weight: 600; font-size: .85rem; }
.stat-card-mini { display: flex; align-items: center; gap: .85rem; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: .85rem 1.1rem; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.stat-card-mini:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.stat-icon { width: 34px; height: 34px; border-radius: var(--icon-radius); background: var(--icon-bg); border: 1px solid var(--icon-border); display: inline-flex; align-items: center; justify-content: center; color: var(--icon-color); flex-shrink: 0; box-shadow: var(--icon-shadow); }
.stat-icon svg { width: 16px; height: 16px; stroke-width: 2.2; }
.stat-card-mini:hover .stat-icon { border-color: var(--icon-border-hover); box-shadow: var(--icon-shadow-hover); }
.stat-card-mini div { display: flex; flex-direction: column; gap: .1rem; }
.stat-card-mini strong { font-size: 1.35rem; line-height: 1; color: var(--heading); }
.stat-card-mini span { font-size: .78rem; letter-spacing: .01em; }

.hero-visual { position: relative; height: 420px; display: none; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); background: var(--surface-2); }
.hero-visual .hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%); pointer-events: none; }
.hero-card-float {
  position: absolute; bottom: 18px; inset-inline-start: 18px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 16px; padding: .8rem 1rem;
  display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow);
}
.hero-float-icon { width: 36px; height: 36px; border-radius: var(--icon-radius); background: var(--icon-bg); border: 1px solid var(--icon-border); color: var(--icon-color); display: inline-flex; align-items: center; justify-content: center; font-weight: 800; box-shadow: var(--icon-shadow); }
.hero-card-float strong { display: block; font-size: 1.1rem; line-height: 1; }
.hero-card-float span { font-size: .8rem; color: var(--text-muted); }

/* Trust bar - marquee */
.trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0; overflow:hidden; }
.trust-inner { display: flex; align-items: center; gap: 2rem; padding: 1.1rem 0; }
.trust-label { font-weight: 800; color: var(--accent-dark); font-size: .78rem; letter-spacing:.1em; text-transform:uppercase; white-space:nowrap; flex-shrink:0; background: color-mix(in srgb, var(--accent) 12%, transparent); border:1px solid color-mix(in srgb, var(--accent) 22%, transparent); padding:.3rem .7rem; border-radius:999px; }
.trust-marquee{ flex:1; overflow:hidden; position:relative; }
.trust-track{ display:flex; width:max-content; animation: scroll-marquee 90s linear infinite; }
@keyframes scroll-marquee{ 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }
.trust-bar:hover .trust-track{ animation-play-state:paused; }
.trust-track span{ font-weight:800; color:var(--text); opacity:.55; font-size:.88rem; white-space:nowrap; display:inline-flex; align-items:center; gap:.6rem; padding-inline-end:2.5rem; }
.trust-track span::before{ content:"◆"; color:var(--icon-color); font-size:.6rem; opacity:1; }

/* Eyebrow for sections */
.section-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .75rem; color: var(--accent-dark); margin-bottom: .6rem; }

/* ---------- Sections ---------- */
.section { padding: 4rem 0; }
.section:nth-child(even), .section.alt { background: var(--bg-alt); }
.section-head { margin-bottom: 2.5rem; max-width: 640px; }
.section-head.center { margin-inline: auto; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: .5rem; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Feature / Amenity cards ---------- */
.features-grid, .amenity-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.feature-card, .amenity-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover, .amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon, .amenity-icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
  background: var(--icon-bg);
  border: 1px solid var(--icon-border);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 800; color: var(--icon-color);
  box-shadow: var(--icon-shadow); transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feature-card:hover .feature-icon, .amenity-card:hover .amenity-icon { border-color: var(--icon-border-hover); box-shadow: var(--icon-shadow-hover); }
.feature-icon svg, .amenity-icon svg { width: 26px; height: 26px; }
.feature-title, .amenity-title { font-size: 1.1rem; margin-bottom: .4rem; }
.feature-desc, .amenity-desc { color: var(--text-muted); font-size: .95rem; margin: 0; }
.amenity-card { overflow: hidden; padding:0; }
.amenity-card-img { height: 160px; overflow: hidden; margin: 0; }
.amenity-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.amenity-card:hover .amenity-card-img img { transform: scale(1.06); }
.amenity-card .amenity-icon { margin: 1.1rem 1.75rem 0; }
.amenity-card .amenity-title { margin: .7rem 1.75rem .4rem; }
.amenity-card .amenity-desc { margin: 0 1.75rem 1.5rem; }
/* Bento: wide cards on desktop */
@media(min-width:900px){
  .amenity-grid{ grid-template-columns: repeat(3,1fr); }
  .amenity-card:nth-child(1), .amenity-card:nth-child(4){ grid-column: span 2; display:flex; flex-direction:row; align-items:stretch; }
  .amenity-card:nth-child(1) .amenity-card-img, .amenity-card:nth-child(4) .amenity-card-img{ width:42%; height:auto; min-height:200px; flex-shrink:0; }
  .amenity-card:nth-child(1) .amenity-card-img img, .amenity-card:nth-child(4) .amenity-card-img img{ height:100%; }
  .amenity-card:nth-child(1) .amenity-card-body, .amenity-card:nth-child(4) .amenity-card-body{ flex:1; display:flex; flex-direction:column; justify-content:center; padding:1.25rem 1.5rem; }
  .amenity-card:nth-child(1) .amenity-card-body .amenity-icon, .amenity-card:nth-child(4) .amenity-card-body .amenity-icon{ margin:0 0 .7rem; }
  .amenity-card:nth-child(1) .amenity-card-body .amenity-title, .amenity-card:nth-child(4) .amenity-card-body .amenity-title{ margin:0 0 .4rem; }
  .amenity-card:nth-child(1) .amenity-card-body .amenity-desc, .amenity-card:nth-child(4) .amenity-card-body .amenity-desc{ margin:0; }
}

/* ---------- Pricing cards ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.pricing-grid-full { grid-template-columns: 1fr; }
.plan-card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem 1.75rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.is-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 18px 44px -16px rgba(245,158,11,.48); transform: scale(1.02); position: relative; z-index: 1; }
.plan-card.is-featured::before{ content:""; position:absolute; inset:-1px; border-radius:var(--radius); background: linear-gradient(135deg, rgba(245,158,11,.55), transparent 58%); z-index:-1; filter: blur(10px); opacity:.38; pointer-events:none; }
.plan-card.is-featured::after{ content:""; position:absolute; inset:0; border-radius:var(--radius); background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%); background-size:200% 100%; opacity:0; pointer-events:none; transition: opacity .3s; }
.plan-card.is-featured:hover::after{ opacity:1; animation: shimmer 1.1s ease; }
@keyframes shimmer{ from{ background-position:-120% 0; } to{ background-position:120% 0; } }
.plan-badge {
  position: absolute; top: -12px; inset-inline-start: 1.5rem;
  background: var(--accent); color: var(--on-accent); font-size: .75rem; font-weight: 800;
  padding: .3rem .8rem; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em;
}
.plan-name { font-size: 1.15rem; }
.plan-price { font-size: 1.8rem; font-weight: 800; color: var(--accent-dark); margin: .4rem 0 0; }
.plan-note { font-size: .85rem; color: var(--text-muted); }
.plan-desc { color: var(--text-muted); font-size: .95rem; }
.plan-features { list-style: none; margin: 1.25rem 0 1.5rem; padding: 0; flex-grow: 1; }
.plan-features li { padding: .45rem 0; border-bottom: 1px dashed var(--border); display: flex; gap: .6rem; }
.plan-features li::before { content: "✓"; color: var(--icon-color); font-weight: 800; }

.pricing-note { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.pricing-note p { margin: 0; }

/* ---------- Cards ---------- */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow-sm); }

/* ---------- Community / story ---------- */
.community-inner, .story-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.community-visual, .story-visual {
  min-height: 320px; border-radius: 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--surface-2)), var(--surface-2));
  border: 1px solid var(--border); overflow: hidden; position:relative; box-shadow: var(--shadow);
}
.community-visual::after, .story-visual::after{ content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(15,23,42,.35)); pointer-events:none; }
.community-visual img, .story-visual img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 320px; transition: transform .6s ease; }
.story-visual:hover img, .community-visual:hover img{ transform: scale(1.03); }
.story-content{ position:relative; padding-inline-start:1.5rem; border-inline-start:3px solid var(--accent); }
.story-content p{ line-height:1.75; }
.community-list{ list-style:none; padding:0; display:grid; gap:.7rem; }
.community-list li{ display:flex; gap:.7rem; align-items:center; }
.community-list li::before{ content:"✓"; width:26px; height:26px; border-radius:50%; background:var(--icon-bg); border:1px solid var(--icon-border); color:var(--icon-color); display:inline-flex; align-items:center; justify-content:center; font-weight:800; font-size:.75rem; flex-shrink:0; }
.community-list li::marker{ content:none; }

/* Gallery - small photos, 3/2 per line */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); border: 1px solid var(--border);
  height: 190px; cursor: zoom-in; isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .4s ease, border-color .4s ease, transform .4s ease;
}
.gallery-item.g-tall { height: 190px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.22,.61,.36,1), filter .5s ease; will-change: transform; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(to top, rgba(15,23,42,.68) 0%, rgba(15,23,42,.18) 45%, transparent 62%);
  opacity: 0; transition: opacity .45s ease;
}
/* zoom badge - glass + gold */
.gallery-item::before {
  content: "+"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.92); color: #0f172a; font-weight: 800; font-size: 1.45rem; z-index: 3;
  border: 1px solid rgba(245,158,11,.35); box-shadow: 0 10px 28px rgba(15,23,42,.22); opacity: 0; transition: transform .4s cubic-bezier(.22,.61,.36,1), opacity .3s ease, background .3s ease;
}
.gallery-item figcaption {
  position: absolute; bottom: 0; inset-inline: 0; z-index: 2;
  display: flex; align-items: center; gap: .55rem;
  color: #fff; font-weight: 700; font-size: .88rem; padding: 1.5rem 1rem .85rem;
  backdrop-filter: blur(0px); transform: translateY(10px); opacity: 0; transition: transform .42s cubic-bezier(.22,.61,.36,1), opacity .35s ease;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.gallery-item .g-cap-dot { width: 8px; height: 8px; border-radius: 50%; background: #f59e0b; box-shadow: 0 0 0 4px rgba(245,158,11,.22); flex-shrink: 0; }
.gallery-item:hover { border-color: color-mix(in srgb, var(--accent) 22%, var(--border)); box-shadow: 0 18px 40px -14px rgba(15,23,42,.28); }
.gallery-item:hover img { transform: scale(1.08) rotate(.35deg); filter: saturate(1.06) brightness(1.02); }
.gallery-item:hover::after, .gallery-item:hover figcaption { opacity: 1; }
.gallery-item:hover figcaption { transform: translateY(0); }
.gallery-item:hover::before { opacity: 1; transform: translate(-50%,-50%) scale(1); background: #f59e0b; color: #1e1b16; }
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Gallery lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8, 10, 18, .92); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-body { position: relative; max-width: min(920px, 90vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; }
.lb-img {
  max-width: 100%; max-height: 78vh; border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
  border: 1px solid rgba(255,255,255,.08);
  opacity: 0; transition: opacity .2s ease;
  object-fit: contain;
}
.lb-cap { color: #e5e7eb; margin: .9rem 0 0; font-size: .95rem; font-weight: 600; text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(245,158,11,.14); color: #f59e0b;
  border: 1px solid rgba(245,158,11,.35); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1; transition: background .2s ease, transform .2s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: #f59e0b; color: #1e1b16; transform: scale(1.06); }
.lb-close { top: 1.2rem; right: 1.2rem; width: 44px; height: 44px; border-radius: 50%; font-size: 1.6rem; }
[dir="rtl"] .lb-close { right: auto; left: 1.2rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
}

/* ---------- Blur-up image loading ---------- */
img.blur-up { filter: blur(12px) saturate(.7) brightness(.95); transform: scale(1.04); transition: filter .6s ease, transform .6s ease; }
img.blur-up.is-loaded { filter: blur(0) saturate(1) brightness(1); transform: scale(1); }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed; bottom: 5.4rem; inset-inline-end: 1.2rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--icon-border);
  background: var(--icon-bg); color: var(--icon-color); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(15,23,42,.35);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: bottom .35s ease, opacity .3s ease, visibility .3s ease, transform .3s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.scroll-top svg { width: 22px; height: 22px; stroke-width: 2.4; }
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: linear-gradient(135deg, #f59e0b, #d97706); color: #1e1b16; border-color: transparent; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(245,158,11,.4); }
@media (max-width: 640px) { .scroll-top { width: 44px; height: 44px; bottom: 5rem; inset-inline-end: 1.1rem; } }

/* Testimonials */
.testimonials { background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.testi-card::before { content: ""; position: absolute; top: 0; inset-inline: 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); opacity: .4; }
.testi-quote { width: 34px; height: 34px; border-radius: 10px; background: var(--icon-bg); border: 1px solid var(--icon-border); color: var(--icon-color); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--icon-shadow); margin-bottom: 1rem; }
.testi-quote svg { width: 16px; height: 16px; }
.testi-stars { display: flex; gap: .15rem; color: #f59e0b; margin: 0 0 .8rem; }
.testi-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testi-card p { font-style: italic; color: var(--text); margin: 0 0 1.3rem; line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.testi-card footer { display: flex; align-items: center; gap: .9rem; margin-top: auto; padding-top: 1rem; border-top: 1px dashed var(--border); }
.testi-card footer img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; background: var(--icon-bg); border: 2px solid rgba(245,158,11,.4); color: var(--icon-color); box-shadow: var(--icon-shadow); }
.testi-card footer .testi-avatar:nth-of-type(1) { background: linear-gradient(135deg, #111c33, #1e293b); }
.testi-card footer strong { display: block; font-size: .95rem; }
.testi-card footer .testi-meta { font-size: .8rem; color: var(--text-muted); }
.testi-card footer .testi-role { display: block; font-size: .78rem; color: var(--text-muted); opacity: .85; }
.testi-verified { display: inline-flex; align-items: center; gap: .3rem; font-size: .72rem; font-weight: 700; color: var(--accent-dark); margin-top: .2rem; }
.testi-verified svg { width: 12px; height: 12px; fill: currentColor; }
@media (min-width: 700px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- FAQ accordion ---------- */
.faq-grid { max-width: 820px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-item.is-open { border-color: color-mix(in srgb, var(--accent) 45%, transparent); box-shadow: 0 10px 28px -12px rgba(15,23,42,.18); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: transparent; border: 0; padding: 1.1rem 1.3rem; cursor: pointer;
  font: inherit; font-weight: 700; color: var(--heading); text-align: start;
}
.faq-q:hover { color: var(--accent-dark); }
.faq-q .faq-ico { width: 26px; height: 26px; border-radius: 8px; background: var(--icon-bg); border: 1px solid var(--icon-border); color: var(--icon-color); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s ease; }
.faq-q .faq-ico svg { width: 14px; height: 14px; stroke-width: 2.6; }
.faq-item.is-open .faq-ico { transform: rotate(45deg); background: linear-gradient(135deg, #f59e0b, #d97706); color: #1e1b16; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 1.3rem 1.2rem; color: var(--text-muted); line-height: 1.7; font-size: .95rem; }

/* Location - stylish split card */
.location-card {
  display: grid; grid-template-columns: 1fr; border-radius: 26px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface); box-shadow: 0 24px 50px -22px rgba(15,23,42,.25);
}
.location-info { padding: 2.4rem 2.2rem; background: linear-gradient(160deg, var(--surface) 0%, color-mix(in srgb, var(--accent) 5%, var(--surface)) 100%); position: relative; }
.location-info::before { content: ""; position: absolute; top: 0; inset-inline: 0; height: 3px; background: linear-gradient(90deg, var(--accent), transparent 70%); opacity: .5; }
.loc-metro {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-dark); background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.loc-metro svg { width: 15px; height: 15px; }
.location-info h2 { margin-bottom: 1.4rem; }
.loc-list { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 1.1rem; }
.loc-list li { display: flex; align-items: flex-start; gap: 1rem; }
.loc-list--elegant { gap: .85rem; }
.loc-list--elegant li { align-items: center; padding: .65rem .9rem; border-radius: 12px; background: color-mix(in srgb, var(--surface-2) 60%, transparent); border: 1px solid transparent; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.loc-list--elegant li:hover { background: var(--surface-2); border-color: var(--border); transform: translateX(2px); }
[dir="rtl"] .loc-list--elegant li:hover { transform: translateX(-2px); }
.loc-text { font-size: 1rem; font-weight: 600; color: var(--heading); line-height: 1.6; letter-spacing: .02em; }
.location-info .section-title { font-size: clamp(1.6rem, 3.5vw, 2.1rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.25; }
.loc-ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--icon-bg); border: 1px solid var(--icon-border); color: var(--icon-color);
  box-shadow: var(--icon-shadow); display: inline-flex; align-items: center; justify-content: center;
}
.loc-ico svg { width: 19px; height: 19px; stroke-width: 2; }
.loc-list li div { display: grid; gap: .15rem; }
.loc-list li strong { font-size: .95rem; color: var(--heading); }
.loc-list li span { font-size: .92rem; color: var(--text-muted); line-height: 1.55; }
.btn-loc-cta { min-width: 200px; }
.map-wrap { min-height: 320px; position: relative; }
.map-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; filter: saturate(1.05); }
@media (min-width: 900px) {
  .location-card { grid-template-columns: 1.05fr 1fr; }
  .location-info { padding: 3rem 2.8rem; }
}

/* ---------- CTA banner - modern creative card ---------- */
.cta-banner { padding: 0 1rem; }
.cta-banner > .container { padding-block: 0; }
.cta-inner {
  position: relative; overflow: hidden;
  border-radius: 26px; padding: 4.2rem 2rem;
  text-align: center; isolation: isolate;
  background:
    radial-gradient(120% 140% at 15% 0%, color-mix(in srgb, var(--accent) 16%, #0f172a) 0%, transparent 55%),
    radial-gradient(120% 140% at 85% 100%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  border: 1px solid rgba(245,158,11,.22);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.55);
}
/* floating glow orbs */
.cta-inner::before, .cta-inner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1;
}
.cta-inner::before { width: 260px; height: 260px; top: -90px; inset-inline-end: 8%; background: rgba(245,158,11,.30); }
.cta-inner::after { width: 200px; height: 200px; bottom: -70px; inset-inline-start: 6%; background: rgba(245,158,11,.18); }
/* fine grid texture */
.cta-inner .cta-grid-bg {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(245,158,11,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #f59e0b; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3);
  padding: .4rem .9rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.cta-eyebrow svg { width: 14px; height: 14px; }
.cta-inner h2 {
  color: #fff; font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.2; margin: 0 0 .7rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.cta-inner p { color: #cbd5e1; opacity: .95; max-width: 46ch; margin: 0 auto 1.8rem; font-size: 1.05rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.cta-actions .btn { min-width: 170px; }
.cta-actions .btn-light {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1e1b16; border: 1px solid transparent; box-shadow: 0 12px 28px -8px rgba(245,158,11,.55);
}
.cta-actions .btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(245,158,11,.65); }
.cta-actions .btn-ghost-amber {
  background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px);
}
.cta-actions .btn-ghost-amber:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; transform: translateY(-2px); }
@media (max-width: 640px) {
  .cta-inner { padding: 3rem 1.4rem; border-radius: 18px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* ---------- Page hero - modern 3D ---------- */
.page-hero { padding: 3rem 0 2.2rem; background: linear-gradient(135deg, var(--bg-alt) 0%, color-mix(in srgb, var(--accent) 4%, var(--bg-alt)) 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 20%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 55%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; font-size: .75rem; color: var(--accent-dark); background: color-mix(in srgb, var(--accent) 12%, transparent); padding: .35rem .75rem; border-radius: 999px; margin-bottom: .9rem; border: 1px solid color-mix(in srgb, var(--accent) 18%, transparent); }
.page-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.02em; }
.page-sub { color: var(--text-muted); max-width: 56ch; font-size: 1.08rem; line-height: 1.6; }
.contact-hero { padding: 2.6rem 0 2rem; background: linear-gradient(135deg, var(--bg-alt) 0%, var(--surface) 50%, color-mix(in srgb, var(--accent) 5%, var(--bg-alt)) 100%); }
.contact-hero .page-title { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.contact-hero .page-sub { max-width: 48ch; }

/* Page hero split (about/pricing/amenities) */
.page-hero--split .page-hero-inner { display: grid; gap: 2rem; align-items: center; }
.page-hero-visual { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); height: 260px; box-shadow: var(--shadow); }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-visual::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,.45)); pointer-events:none; }
.page-hero-badge { position:absolute; bottom:1rem; inset-inline-start:1rem; background: rgba(255,255,255,.9); color:#0f172a; padding:.45rem .8rem; border-radius:999px; font-size:.78rem; font-weight:800; display:inline-flex; align-items:center; gap:.4rem; box-shadow:0 4px 12px rgba(0,0,0,.15); }
.page-hero-badge svg{ width:14px; height:14px; color:var(--accent-dark); }
@media(min-width:900px){ .page-hero--split .page-hero-inner{ grid-template-columns:1.1fr .9fr; } .page-hero-visual{ height:320px; } }

/* ---------- Team - premium ---------- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.team-card { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 2rem 1.25rem; box-shadow: var(--shadow-sm); position:relative; overflow:hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.team-card::before{ content:""; position:absolute; top:0; inset-inline:0; height:3px; background:linear-gradient(90deg, var(--accent), transparent); opacity:.5; }
.team-card:hover{ transform:translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 30%, var(--border)); }
.team-avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 1rem; overflow: hidden;
  background: var(--surface-2); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: var(--accent-dark);
  border: 3px solid color-mix(in srgb, var(--accent) 40%, transparent);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { margin-bottom: .1rem; }
.team-position { color: var(--accent-dark); font-weight: 600; margin: 0 0 .5rem; }
.team-bio { color: var(--text-muted); font-size: .9rem; }
.team-social { display: flex; justify-content: center; gap: .6rem; margin-top: 1rem; }
.team-social a {
  width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--heading); font-weight: 700;
}
.team-social a:hover { background: var(--accent); color: var(--on-accent); text-decoration: none; }

/* ---------- Contact ---------- */
.contact-hero { background: linear-gradient(135deg, var(--bg-alt) 0%, var(--surface) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.contact-info { display: grid; gap: 1.5rem; align-content: start; }
.status-card { display: flex; align-items: center; gap: 1.25rem; padding: 1.8rem 2rem !important; background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--accent) 6%, var(--surface)) 100%); border: 1px solid var(--border); border-inline-start: 4px solid var(--accent); border-radius: 18px; box-shadow: 0 8px 32px -8px rgba(15,23,42,.12); min-height: 110px; position: relative; overflow: hidden; }
.status-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 15%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 50%); pointer-events: none; }
.status-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--icon-bg); border: 1px solid var(--icon-border); color: var(--icon-color); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--icon-shadow); position: relative; z-index: 1; }
.status-icon svg { width: 26px; height: 26px; }
.status-text { flex: 1; display: flex; flex-direction: column; gap: .6rem; position: relative; z-index: 1; }
.open-badge { padding: .4rem .9rem; border-radius: 999px; font-weight: 800; font-size: .675rem; letter-spacing: .02em; display: inline-flex; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,.06); align-self: flex-start; margin-top: -8px; }
.open-badge[data-state="open"] { background: var(--success-bg); color: var(--success-text); border: 1px solid color-mix(in srgb, var(--success-text) 18%, transparent); }
.open-badge[data-state="open"]::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--success-text); margin-inline-end: 6px; animation: pulse-dot 2s infinite; }
.open-badge[data-state="closed"] { background: var(--error-bg); color: var(--error-text); border: 1px solid color-mix(in srgb, var(--error-text) 15%, transparent); }
.open-badge[data-state="checking"] { background: var(--surface-2); color: var(--text-muted); border: 1px solid var(--border); }
.status-hours { margin: 0; color: var(--text); font-size: 1.05rem; font-weight: 600; letter-spacing: .01em; line-height: 1.5; display: flex; flex-direction: column; gap: .45rem; }
.status-hours span { display: block; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .75; transform: scale(1.15); } }
.info-card h3 { margin-bottom: 1.2rem; font-size: 1.15rem; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; padding: .7rem; border-radius: 12px; background: var(--surface-2); border: 1px solid transparent; transition: border-color var(--transition), background var(--transition); }
.contact-list li:hover { border-color: var(--border); background: var(--surface); }
.contact-icon { width: 34px; height: 34px; border-radius: var(--icon-radius); background: var(--icon-bg); border: 1px solid var(--icon-border); color: var(--icon-color); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--icon-shadow); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.contact-list li:hover .contact-icon { transform: translateY(-2px); box-shadow: var(--icon-shadow-hover); border-color: var(--icon-border-hover); }
.contact-icon.wa { background: var(--icon-bg); color: var(--icon-color); border-color: var(--icon-border); }
.contact-icon svg { width: 16px; height: 16px; display: block; stroke-width: 2.2; }
.contact-list li div { flex: 1; min-width: 0; }
.contact-list strong { display: block; color: var(--heading); font-size: .85rem; margin-bottom: .15rem; }
.contact-list a, .contact-list span { font-size: .95rem; word-break: break-word; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); position: relative; margin-top: 1rem; }
.map-wrap iframe { display: block; }
.map-cta { position: absolute; bottom: 12px; inset-inline-start: 12px; background: var(--surface); color: var(--heading); padding: .45rem .8rem; border-radius: 8px; font-weight: 700; font-size: .85rem; box-shadow: var(--shadow-sm); text-decoration: none; }
.map-cta:hover { background: var(--accent); color: var(--on-accent); text-decoration: none; }

/* ---------- Forms ---------- */
.booking-form h3 { margin-bottom: 1.25rem; }
.form-row { margin-bottom: 1rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr; gap: 1rem; }
label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: var(--heading); }
input, select, textarea {
  width: 100%; padding: .7rem .9rem; border-radius: 10px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); font-family: inherit; font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 25%, transparent);
}
.form-head { margin-bottom: 1.5rem; text-align: start; }
.form-head h3 { margin-bottom: .3rem; }
.form-head p { margin: 0; font-size: .9rem; }
.input-with-icon { position: relative; display: flex; align-items: center; }
.input-with-icon svg { position: absolute; inset-inline-start: 12px; width: 18px; height: 18px; color: var(--text-muted); pointer-events: none; flex-shrink: 0; }
.input-with-icon input { padding-inline-start: 2.6rem; }
.input-with-icon.has-toggle input { padding-inline-end: 3.2rem; }
.toggle-password { position: absolute; inset-inline-end: 6px; top: 50%; transform: translateY(-50%); background: var(--surface-2); border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px; transition: all var(--transition); z-index: 2; }
.toggle-password:hover { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.success-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--success-bg); color: var(--success-text); display: inline-flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 1rem; }
.form-note { font-size: .8rem; margin: .75rem 0 0; }
.alert { border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.alert-error { background: var(--error-bg); color: var(--error-text); }
.alert-error ul { margin: 0; padding-inline-start: 1.1em; }
.success-card { text-align: center; }
.success-card .btn { margin: .4rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  position: relative;
  margin-top: 0;
  border-top: 0;
  padding: 0;
  overflow: hidden;
}
/* Soft vertical fade so the dark footer melts into the light content above (no hard jump) */
.site-footer > .fade-top {
  position: absolute; inset-inline: 0; top: 0; height: 1.8rem; pointer-events: none; z-index: 1;
  background: linear-gradient(to bottom, var(--bg-alt) 0%, #0d1628 100%);
}
html[data-theme="light"] .site-footer > .fade-top,
:root:not([data-theme]) .site-footer > .fade-top {
  background: linear-gradient(to bottom, var(--bg-alt) 0%, #101b31 100%);
}
/* Links page: clean, seamless footer (no fade band / no top glow) */
.site-footer.links-footer > .fade-top { display: none; }
.site-footer.links-footer .foot-shell {
  background: #0d1628;
}
html[data-theme="light"] .site-footer.links-footer .foot-shell,
:root:not([data-theme]) .site-footer.links-footer .foot-shell {
  background: #101b31;
}
/* Footer container spans the full viewport: the shell becomes the page's base band */
.site-footer > .container { max-width: none; padding-inline: 0; }
/* Shell card (SquareUi dark card, theme-aware) */
.foot-shell {
  background:
    radial-gradient(90% 62% at 50% 0%, rgba(245,158,11,.07), transparent 62%),
    linear-gradient(180deg, #0d1628, #0b1426);
  border: none;
  border-radius: 0;
  padding: 1.8rem 2rem 2rem;
  box-shadow: none;
}
html[data-theme="light"] .foot-shell, :root:not([data-theme]) .foot-shell {
  background: linear-gradient(180deg, #101b31, #0b1426);
}
/* Affiliate banner */
.foot-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 26px;
  padding: 2.2rem;
  margin-bottom: 3rem;
  background:
    radial-gradient(120% 140% at 15% 0%, color-mix(in srgb, var(--accent) 16%, #0f172a) 0%, transparent 55%),
    radial-gradient(120% 140% at 85% 100%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 50%),
    linear-gradient(135deg, #1a2440 0%, #1e293b 55%, #0f172a 100%);
  border: 1px solid rgba(245,158,11,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 16px 30px -24px rgba(245,158,11,.40), 0 30px 60px -24px rgba(0,0,0,.55);
}
.foot-banner::before, .foot-banner::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: -1;
}
.foot-banner::before { width: 280px; height: 280px; top: -170px; inset-inline-end: 6%; background: rgba(245,158,11,.24); }
.foot-banner::after { width: 200px; height: 200px; bottom: -70px; inset-inline-start: 6%; background: rgba(245,158,11,.18); }
.foot-grid-bg {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(245,158,11,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 75%);
}
.foot-banner-text { max-width: 26rem; position: relative; z-index: 1; }
.foot-eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #f59e0b; background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); padding: .4rem .9rem; border-radius: 999px; margin: 0 0 1rem; }
.foot-eyebrow-ico { display: inline-flex; }
.foot-eyebrow-ico svg { width: 14px; height: 14px; display: block; }
.btn-ghost-amber { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px); }
.btn-ghost-amber:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff; text-decoration: none; transform: translateY(-2px); }
.foot-banner-text h2 { color: #fff; font-size: clamp(1.5rem, 1.2rem + 1.6vw, 2.1rem); margin: 0 0 .7rem; letter-spacing: -.02em; }
.foot-banner-sub { color: #9ca3af; line-height: 1.7; margin: 0 0 1.4rem; font-size: .95rem; }
.foot-banner-sub strong { color: #fff; }
.foot-banner-cta { display: flex; flex-wrap: wrap; gap: .9rem; }
.foot-banner-cta .btn { border-radius: 999px; min-width: 170px; }
.foot-banner-cta .btn-light { background: linear-gradient(135deg, #f59e0b, #d97706); color: #1e1b16; border: 1px solid transparent; box-shadow: 0 12px 28px -8px rgba(245,158,11,.55); }
.foot-banner-cta .btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(245,158,11,.65); }
/* Orbits */
.foot-orbits { position: relative; width: 300px; height: 300px; flex-shrink: 0; }
.orbit { position: absolute; border: 1px dashed #374151; border-radius: 50%; }
.orbit-1 { inset: 0; }
.orbit-2 { inset: 40px; }
.orbit-3 { inset: 80px; }
.orbit-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.orbit-center img { width: 3.4rem; height: 3.4rem; object-fit: contain; filter: drop-shadow(0 0 18px rgba(245,158,11,.55)); }
.ava { position: absolute; border-radius: 50%; object-fit: cover; border: 3px solid #131d33; }
.a1 { top: 12%; left: 25%; width: 2rem; height: 2rem; }
.a2 { top: 22%; right: 30%; width: 1.5rem; height: 1.5rem; }
.a3 { top: 40%; right: -0.5rem; width: 2.5rem; height: 2.5rem; }
.a4 { bottom: 35%; left: 5%; width: 2rem; height: 2rem; }
.a5 { bottom: 20%; right: 15%; width: 1.75rem; height: 1.75rem; }
.a6 { bottom: -1rem; left: 45%; width: 2rem; height: 2rem; }
/* Grid */
.foot-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; margin-bottom: 2.5rem; color: #9ca3af; }
.foot-col h3 { color: #fff; font-size: .85rem; font-weight: 700; margin: 0 0 1.1rem; }
.foot-logo img { height: 2rem; width: auto; object-fit: contain; }
.foot-brand p { font-size: .86rem; line-height: 1.7; max-width: 250px; margin: .9rem 0 0; color: #9ca3af; }
.foot-news-sub { font-size: .9rem; font-weight: 600; line-height: 1.6; margin: .9rem 0 0; color: #9ca3af; }
.foot-brand .social-links { margin-top: 1.2rem; }
.social-links { display: flex; gap: .6rem; direction: ltr; }
[dir="rtl"] .foot-brand .social-links { justify-content: flex-end; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #131d33; color: #f59e0b; border: 1px solid rgba(245,158,11,.35);
  text-decoration: none; transition: all .25s ease;
}
.social-icon svg { width: 18px; height: 18px; display: block; }
.social-icon:hover { color: #fbbf24; border-color: rgba(245,158,11,.75); box-shadow: 0 0 12px rgba(245,158,11,.35); transform: translateY(-2px); }
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: .88rem; }
.foot-links a { color: #9ca3af; display: inline-flex; align-items: center; gap: .25rem; }
.foot-links a:hover { color: #f59e0b; text-decoration: none; }
.foot-links a span { font-size: .65rem; opacity: .7; }
/* Newsletter pill */
.nl-pill { display: flex; align-items: center; background: #131d33; border-radius: 999px; padding: .25rem; border: 1px solid #374151; margin-top: 1rem; }
.nl-mail { padding-inline-start: .8rem; color: #6b7280; display: inline-flex; flex-shrink: 0; }
.nl-mail svg { width: 1rem; height: 1rem; }
.nl-pill input { flex: 1; min-width: 0; background: transparent; border: 0; color: #fff; padding: .55rem .6rem; font: inherit; font-size: .85rem; outline: none; }
.nl-pill input::placeholder { color: #6b7280; }
.nl-pill .btn { border-radius: 999px; flex-shrink: 0; }
/* Keep the pill background stable when the browser autofills the email field */
.nl-pill input:-webkit-autofill,
.nl-pill input:-webkit-autofill:hover,
.nl-pill input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #131d33 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-out 0s;
}
.nl-pill input:focus { border: 0; outline: none; box-shadow: none; }
.nl-pill + .alert, .foot-col .alert { margin-top: .8rem; font-size: .8rem; }
/* Bottom bar */
.foot-bottom { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid #1f2937; font-size: .78rem; color: #6b7280; }
.foot-bottom p { margin: 0; }
.foot-credit { display: flex; align-items: center; gap: 1.2rem; }
.foot-credit a { color: inherit; }
.foot-credit a span { color: #f59e0b; font-weight: 700; }
.foot-icons { display: inline-flex; align-items: center; gap: 1rem; }
.foot-icons svg { width: 1rem; height: 1rem; display: block; }
.foot-icons a:hover { color: #f59e0b; }
@media (min-width: 640px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: row; }
}
@media (min-width: 1024px) {
  .foot-shell { padding: 2rem 3rem 2.5rem; }
  .site-footer > .fade-top { height: 2rem; }
  .foot-banner { padding: 2.5rem 3rem; margin-bottom: 2.5rem; }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1.6fr; gap: 2.5rem; margin-bottom: 2rem; }
  .foot-bottom { padding-top: 1.4rem; }
}
@media (min-width: 861px) and (max-width: 1023px) {
  .foot-banner { padding: 2rem; gap: 1.5rem; }
  .foot-orbits { width: 230px; height: 230px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .foot-shell { padding: 1.5rem 1.2rem 1.6rem; }
  .site-footer > .fade-top { height: 1.5rem; }
  .foot-banner { flex-direction: column; text-align: center; padding: 1.8rem 1.2rem; margin-bottom: 2rem; }
  .foot-banner-cta { justify-content: center; }
  .foot-banner-cta .btn { min-width: 0; flex: 1; }
  .foot-orbits { width: 230px; height: 230px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-bottom: 1.6rem; padding-inline: 1.1rem; }
  .foot-brand,
  .foot-grid > .foot-col:last-child { grid-column: 1 / -1; }
  .foot-brand { text-align: center; }
  .foot-brand .foot-logo { display: inline-flex; justify-content: center; margin-inline: auto; }
  .foot-brand p { max-width: 300px; margin-inline: auto; }
  .foot-brand .social-links { margin-top: 1.2rem; justify-content: center; }
  .foot-grid > .foot-col:last-child { text-align: center; }
  .foot-grid > .foot-col:last-child .nl-pill,
  .foot-grid > .foot-col:last-child .foot-news-sub { margin-inline: auto; }
  .nl-pill { max-width: 420px; }
}
@media (max-width: 640px) {
  .foot-shell { padding: 1.2rem 1rem 1.3rem; }
  .site-footer > .fade-top { height: 1.2rem; }
  .foot-banner { padding: 1.5rem 1rem; border-radius: 18px; margin-bottom: 1.6rem; }
  .foot-grid { gap: 1.5rem; margin-bottom: 1.4rem; }
  .foot-brand p { max-width: none; }
  .foot-banner-text h2 { font-size: 1.45rem; }
  .nl-pill { padding: .2rem; }
  .nl-pill input { font-size: .8rem; }
  .nl-pill .btn { padding: .45rem .8rem; font-size: .75rem; }
  .foot-bottom { text-align: center; }
  .foot-credit { flex-direction: column; gap: .6rem; }
}

/* ---------- Subtle 3D touches (lightweight, GPU-accelerated) ---------- */
.features-grid, .pricing-grid, .gallery-grid, .testi-grid { perspective: 1200px; }
.feature-card, .plan-card, .gallery-item, .testi-card, .team-card, .amenity-card {
  transform-style: preserve-3d; will-change: transform;
}
.feature-card:hover { transform: translateY(-6px) rotateX(2deg) rotateY(-1.5deg); box-shadow: 0 18px 40px -12px rgba(15,23,42,.18); }
.plan-card:hover { transform: translateY(-6px) rotateX(1.5deg); box-shadow: 0 18px 40px -12px rgba(15,23,42,.2); }
.plan-card.is-featured:hover { transform: translateY(-8px) rotateX(2deg) scale(1.02); }
.gallery-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -14px rgba(15,23,42,.28); }
.testi-card:hover { transform: translateY(-4px) rotateX(1deg); }
.team-card:hover { transform: translateY(-5px) rotateY(1.5deg); }
.amenity-card:hover { transform: translateY(-4px) rotateX(1deg); }
.hero-visual { transform-style: preserve-3d; transition: transform .6s ease; }
.hero-visual:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1.5deg); }
.hero-visual .hero-img { transition: transform .7s ease; }
.hero-visual:hover .hero-img { transform: scale(1.03); }
.brand-logo { transition: transform .4s ease; transform-style: preserve-3d; }
.brand-logo:hover { transform: perspective(600px) rotateY(-4deg) scale(1.02); }
@media (max-width: 640px) {
  .feature-card:hover, .plan-card:hover, .gallery-item:hover, .testi-card:hover { transform: translateY(-4px); }
  .hero-visual:hover { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover, .plan-card:hover, .gallery-item:hover, .testi-card:hover, .team-card:hover, .hero-visual:hover, .brand-logo:hover { transform: none; }
}

/* ---------- Scroll reveal (JS-driven; hidden only when JS is active) ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 404 ---------- */
.notfound { padding: 4rem 0; }
.nf-code { font-size: clamp(4rem, 12vw, 8rem); margin: 0; color: var(--accent-dark); line-height: 1; }
.nf-title { font-size: clamp(1.5rem, 4vw, 2.4rem); }
.nf-sub { color: var(--text-muted); }

/* ---------- Mobile modern ---------- */
@media (max-width: 640px) {
  .hero { padding: 2.2rem 0 2.5rem; }
  .hero-inner { gap: 1.8rem; }
  .hero-visual { display: block; height: 320px; border-radius: 20px; }
  .hero-title { font-size: clamp(1.85rem, 8vw, 2.5rem); line-height: 1.18; }
  .hero-sub { font-size: 1rem; line-height: 1.6; }
  .hero-cta { flex-direction: column; gap: .85rem; }
  .hero-cta .btn { width: 100%; min-height: 52px; font-size: 1rem; justify-content: center; }
  .hero-stats { gap: 1.2rem 1.8rem; justify-content: space-between; }
  .stat strong { font-size: 1.55rem; }
  .section { padding: 2.8rem 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .container { padding-inline: 1rem; }
  .btn { min-height: 48px; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .gallery-item { height: 171px; }
  .gallery-item.g-tall { height: 171px; }
  .pricing-grid { gap: 1.25rem; }
  .plan-card { padding: 1.5rem 1.25rem; }
  .contact-grid { gap: 1.5rem; }
  .page-hero { padding: 2.2rem 0 1.8rem; }
  .page-title { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .features-grid, .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-full { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row.two-col { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .hero-visual { display: block; }
  .features-grid, .amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
  .community-inner, .story-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1.3fr; }

  .main-nav { display: block; }
  .nav-toggle { display: none; }
}

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

/* ---------- Unified icon system ----------
   Every stroke-based inline icon matches the contact-icon style exactly:
   stroke-width 2, round caps/joins, currentColor, no fill. */
svg[stroke] {
  stroke: currentColor;
  stroke-width: 2 !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* ---------- Leaflet map + custom Sarai pin ---------- */
.sarai-map { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 280px; background: var(--surface-2); z-index: 0; }
.sarai-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.sarai-pin-wrap { background: transparent; border: 0; }
.sarai-pin { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #1e1b16; border: 3px solid #fff; box-shadow: 0 8px 22px -4px rgba(0,0,0,.45); }
.sarai-pin-s { font-weight: 900; font-size: 1.25rem; line-height: 1; }
.sarai-pin-img { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 3px solid #fff; box-shadow: 0 8px 22px -4px rgba(0,0,0,.45); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.sarai-pin-img img { width: 32px; height: 32px; object-fit: contain; display: block; }
.sarai-pin-pulse { position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 45%, transparent); animation: pin-pulse 2s ease-out infinite; }
@keyframes pin-pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2); opacity: 0; } }
.sarai-map .leaflet-popup-content-wrapper { border-radius: 14px; box-shadow: var(--shadow-lg); }
.sarai-popup { display: flex; flex-direction: column; gap: .25rem; font-family: inherit; }
.sarai-popup strong { font-size: .95rem; }
.sarai-popup span { font-size: .8rem; color: #64748b; }
.sarai-popup a { font-size: .82rem; font-weight: 700; color: var(--accent-dark); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 1.2rem; inset-inline-end: 1.2rem; z-index: 190; width: 54px; height: 54px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,.6); transition: bottom .35s ease, transform .2s ease; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08) translateY(-2px); color: #fff; }
/* Keep floating buttons clear of the footer credit bar when it's on screen */
body.footer-area .wa-float { bottom: calc(1.2rem + 4.2rem); }
body.footer-area .scroll-top { bottom: calc(1rem + 7rem); }
@media (max-width: 640px) {
  body.footer-area .wa-float { bottom: calc(1.2rem + 5.2rem); }
  body.footer-area .scroll-top { bottom: calc(1rem + 9.5rem); }
}

/* ---------- Testimonials slider ---------- */
.testi-slider { position: relative; }
.testi-grid.testi-track { display: flex; gap: 1.1rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: .6rem; scroll-behavior: smooth; }
.testi-grid.testi-track::-webkit-scrollbar { display: none; }
.testi-grid.testi-track .testi-card { flex: 0 0 min(100%, 370px); scroll-snap-align: start; margin: 0; }
.testi-slider.is-static .testi-grid.testi-track { overflow: visible; scroll-snap-type: none; scroll-behavior: auto; padding-bottom: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); }
.testi-slider.is-static .testi-grid.testi-track .testi-card { flex: auto; min-width: 0; }
.testi-slider.is-static .testi-nav { display: none; }
.testi-nav { display: flex; align-items: center; justify-content: center; gap: .9rem; margin-top: 1.1rem; }
.testi-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: 1.3rem; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: all var(--transition); }
.testi-arrow:hover { border-color: var(--accent-dark); color: var(--accent-dark); transform: translateY(-2px); }
.testi-dots { display: flex; gap: .45rem; }
.testi-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--border); cursor: pointer; padding: 0; transition: all var(--transition); }
.testi-dots button.is-active { background: var(--accent); transform: scale(1.25); }

/* ---------- Review form ---------- */
.review-box { margin-top: 2rem; padding: 1.5rem; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm); max-width: 640px; margin-inline: auto; }
.review-box h3 { margin: 0 0 .25rem; letter-spacing: -.01em; }
.review-box .muted { margin: 0 0 1rem; font-size: .88rem; }
.review-form .form-row { margin-bottom: .75rem; }
.review-form input, .review-form select, .review-form textarea { width: 100%; padding: .65rem .85rem; border: 1px solid var(--border); border-radius: 10px; font: inherit; font-size: .92rem; background: var(--bg); color: var(--text); }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }

/* ---------- Newsletter form ---------- */
.nl-form { display: flex; gap: .5rem; margin-top: .8rem; }
.nl-form input { flex: 1; min-width: 0; padding: .6rem .8rem; border: 1px solid var(--border); border-radius: 10px; font: inherit; font-size: .88rem; background: var(--bg); color: var(--text); }
.nl-form input:focus { outline: none; border-color: var(--accent); }
@media (max-width: 480px) { .nl-form { flex-direction: column; } }

/* ---------- 404 ---------- */
.notfound .nf-code { font-size: clamp(4rem, 12vw, 7rem); font-weight: 900; letter-spacing: -.04em; line-height: 1; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nf-links { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin: 1.4rem 0 .4rem; }

/* ---------- Site search ---------- */
.search-form { display: flex; gap: .6rem; margin-top: 1.2rem; max-width: 520px; }
.search-form input { flex: 1; min-width: 0; padding: .7rem 1rem; border: 1px solid var(--border); border-radius: 12px; font: inherit; background: var(--surface); color: var(--text); }
.search-form input:focus { outline: none; border-color: var(--accent); }
.search-hit { display: block; margin-bottom: 1rem; text-decoration: none; color: inherit; transition: transform var(--transition), box-shadow var(--transition); }
.search-hit:hover { text-decoration: none; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.search-hit h3 { margin: .5rem 0 .3rem; }
.search-hit p { margin: 0; font-size: .9rem; }
.site-search { position: relative; }
.site-search-form { display: none; position: absolute; top: calc(100% + .6rem); inset-inline-end: 0; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: .5rem; box-shadow: var(--shadow-lg); z-index: 120; }
.site-search.is-open .site-search-form { display: flex; gap: .4rem; }
.site-search-form input { width: 200px; padding: .5rem .7rem; border: 1px solid var(--border); border-radius: 8px; font: inherit; font-size: .86rem; background: var(--bg); color: var(--text); }
.site-search-btn { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.site-search-btn:hover { color: var(--accent-dark); border-color: var(--accent-dark); }
@media (max-width: 340px) { .site-search-btn { display: none; } }
.site-search-btn svg { width: 17px; height: 17px; }

/* ---------- Custom page cover ---------- */
.page-cover { margin: 1.6rem 0 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); max-width: 900px; }
.page-cover img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }

/* ---------- Hours table ---------- */
.hours-table { width: 100%; margin-top: .8rem; border-collapse: collapse; font-size: .86rem; }
.hours-table td { padding: .4rem .2rem; border-top: 1px dashed var(--border); }
.hours-table td:last-child { text-align: end; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ---------- Honeypot (invisible to humans) ---------- */
.hp-field { position: absolute !important; left: -9999px !important; top: auto !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }

/* ---------- Cookie consent ---------- */
.cookie-bar { position: fixed; bottom: 1rem; inset-inline: 1rem; z-index: 200; display: flex; align-items: center; justify-content: space-between; gap: .8rem; max-width: 860px; margin-inline: auto; padding: .65rem .85rem; border-radius: 14px; background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(12px); border: 1px solid var(--border); box-shadow: var(--shadow-lg); transform: translateY(140%); transition: transform .45s cubic-bezier(.2,.9,.25,1.1); }
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar p { margin: 0; font-size: .8rem; color: var(--text); font-weight: 600; }
.cookie-btns { display: flex; gap: .5rem; flex-shrink: 0; }
.cookie-bar .btn { min-height: 0; padding: .4rem .9rem; font-size: .78rem; }

/* Feature + amenity icons: slightly bolder stroke so thin glyphs read amber, not pale */
.feature-icon svg, .amenity-icon svg { stroke-width: 2.5 !important; }

/* ---------- Blog article (Apple/Stripe: minimal, striking) ---------- */
.post { padding: 3rem 0 4.5rem; }
.post-narrow { max-width: 760px; }
.post-back { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .9rem; color: var(--primary-dark); }
.post-back:hover { text-decoration: none; color: var(--accent-dark); }
.crumbs { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: .9rem; }
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--accent-dark); }
.crumbs .is-current { color: var(--text); }
.post-crumbs { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; font-size: .8rem; font-weight: 600; color: var(--text-muted); margin-bottom: 1rem; }
.post-crumbs a { color: var(--text-muted); }
.post-crumbs a:hover { color: var(--accent-dark); }
.post-crumbs .is-current { color: var(--text); max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.post-meta { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; margin: 0 0 1.1rem; font-size: .85rem; color: var(--text-muted); font-weight: 600; }
.post-badge { display: inline-flex; align-items: center; padding: .28rem .8rem; border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-dark); background: color-mix(in srgb, var(--accent) 12%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.post-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); opacity: .6; flex-shrink: 0; }
.post-title { font-size: clamp(2rem, 1.2rem + 3.6vw, 3.15rem); line-height: 1.12; letter-spacing: -.032em; font-weight: 800; margin: 0; text-wrap: balance; }
.post-excerpt { font-size: clamp(1.05rem, 1rem + .6vw, 1.25rem); line-height: 1.7; color: var(--text-muted); margin: 1.1rem 0 0; font-weight: 500; }
.post-hero { position: relative; overflow: hidden; padding: 2.6rem 0 3rem; border-bottom: 1px solid var(--border); background: radial-gradient(60% 90% at 12% 10%, color-mix(in srgb, var(--accent) 10%, transparent), transparent 65%), radial-gradient(45% 70% at 95% 90%, color-mix(in srgb, #38bdf8 8%, transparent), transparent 60%), linear-gradient(180deg, color-mix(in srgb, var(--surface-2) 70%, transparent), transparent); }
.post-hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3rem; align-items: center; margin-top: 1.6rem; position: relative; z-index: 1; }
.post-title { font-size: clamp(2.1rem, 1.1rem + 3.8vw, 3.4rem); }
.post-cover { position: relative; margin: 0; border-radius: 22px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border)); box-shadow: var(--shadow-lg), 0 0 60px -18px color-mix(in srgb, var(--accent) 45%, transparent); }
.post-cover img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s ease; }
.post-cover:hover img { transform: scale(1.04); }
.post-cover-chip { position: absolute; bottom: 1rem; inset-inline-start: 1rem; padding: .4rem .85rem; border-radius: 999px; font-size: .75rem; font-weight: 800; letter-spacing: .05em; color: #1e1b16; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 8px 22px -6px rgba(0,0,0,.45); }
html[dir="ltr"] .post-body > p:first-of-type::first-letter { float: inline-start; font-size: 3.4em; line-height: .9; font-weight: 800; letter-spacing: -.02em; color: var(--accent-dark); margin: .06em .12em 0 0; }
.post-body h2 { display: flex; align-items: center; gap: .6rem; }
.post-body h2::before { content: ""; width: 6px; height: 1.4em; border-radius: 3px; background: linear-gradient(180deg, var(--accent), var(--accent-dark)); flex-shrink: 0; }
.post-body blockquote { margin: 1.8rem 0; padding: 1.1rem 1.4rem; border-radius: 0 14px 14px 0; border-inline-start: 4px solid var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--surface)); font-style: italic; }
@media (min-width: 1100px) {
  .post-hero { padding: 3.2rem 0 3.6rem; }
  .post-hero-grid { gap: 3.6rem; }
}
.post-body { font-size: 1.075rem; line-height: 1.9; margin-top: 2.4rem; color: var(--text); }
.post-body p { margin: 0 0 1.45rem; }
.post-body h2, .post-body h3 { letter-spacing: -.02em; line-height: 1.3; margin: 2.2rem 0 .9rem; }
.post-body a { color: var(--accent-dark); font-weight: 600; }
.post-body img { max-width: 100%; border-radius: 14px; }
.post-share { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--border); }
.post-share-label { font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-inline-end: .3rem; }
.post-share-btn { display: inline-flex; align-items: center; gap: .45rem; padding: .55rem 1rem; border-radius: 999px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font-size: .86rem; font-weight: 700; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.post-share-btn svg { width: 15px; height: 15px; }
.post-share-btn:hover { text-decoration: none; transform: translateY(-2px); border-color: var(--icon-border-hover); box-shadow: var(--shadow); }
.related-posts { margin-top: 3.2rem; }
.related-posts h3 { font-size: 1.3rem; letter-spacing: -.02em; margin: 0 0 1.1rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.related-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; color: inherit; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.related-card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--icon-border-hover); }
.related-cover { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); }
.related-cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.related-card:hover .related-cover img { transform: scale(1.05); }
.related-body { display: flex; flex-direction: column; gap: .4rem; padding: 1rem 1.1rem 1.2rem; }
.related-date { font-size: .75rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }
.related-body strong { font-size: 1rem; line-height: 1.45; letter-spacing: -.01em; }
.related-body .muted { font-size: .86rem; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 820px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
  .post { padding: 2.2rem 0 3.2rem; }
}
@media (max-width: 560px) {
  .related-grid { grid-template-columns: 1fr; }
  .post-hero-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .post-cover img { aspect-ratio: 16/10; }
  .post-cover { border-radius: 14px; }
}

/* ---------- Blog article masthead + extras ---------- */
.post-hero-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; opacity: .5; }
.post-hero-orb--a { width: 340px; height: 340px; top: -140px; inset-inline-start: -100px; background: radial-gradient(circle, color-mix(in srgb, var(--accent) 45%, transparent), transparent 70%); }
.post-hero-orb--b { width: 280px; height: 280px; bottom: -120px; inset-inline-end: -80px; background: radial-gradient(circle, color-mix(in srgb, #38bdf8 35%, transparent), transparent 70%); }
.post-kicker { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin: 0 0 1.1rem; font-size: .84rem; color: var(--text-muted); font-weight: 600; }
.post-kicker .post-badge { text-transform: none; letter-spacing: .04em; }
.post-read { display: inline-flex; align-items: center; gap: .35rem; }
.post-read svg { width: 14px; height: 14px; }
.post-title { position: relative; }
.post-title::after { content: ""; position: absolute; bottom: -12px; inset-inline-start: 0; width: 72px; height: 5px; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); box-shadow: 0 6px 14px -5px color-mix(in srgb, var(--accent) 60%, transparent); }
.post-byline { display: flex; align-items: center; gap: .7rem; margin-top: 1.6rem; padding-top: 1.1rem; border-top: 1px dashed color-mix(in srgb, var(--border) 80%, transparent); }
.post-ava { width: 42px; height: 42px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.05rem; color: #1e1b16; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 8px 20px -6px color-mix(in srgb, var(--accent) 55%, transparent); flex-shrink: 0; }
.post-byline-text { display: flex; flex-direction: column; gap: .1rem; }
.post-byline-text strong { font-size: .92rem; letter-spacing: -.01em; }
.post-byline-text small { font-size: .78rem; color: var(--text-muted); }
.post-cover-chip { display: inline-flex; align-items: center; gap: .4rem; }
.post-cover-chip svg { width: 13px; height: 13px; }
.post-cover-chip--ghost { inset-inline-start: auto; inset-inline-end: 1rem; background: color-mix(in srgb, #0f172a 70%, transparent); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.post-visit { display: flex; align-items: center; gap: 1rem; margin-top: 2.6rem; padding: 1.2rem 1.4rem; border-radius: 18px; border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border)); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, var(--surface)), var(--surface)); }
.post-visit > div { display: flex; flex-direction: column; gap: .15rem; flex: 1; min-width: 0; }
.post-visit strong { font-size: .98rem; letter-spacing: -.01em; }
.post-visit .muted { font-size: .85rem; line-height: 1.5; }
.post-visit-ico { width: 44px; height: 44px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; color: var(--accent-dark); background: color-mix(in srgb, var(--accent) 16%, transparent); flex-shrink: 0; }
.post-visit-ico svg { width: 22px; height: 22px; }
.related-posts h3 { display: flex; align-items: center; gap: .5rem; }
.related-mark { color: var(--accent); }
.related-go { margin-top: .3rem; font-size: .82rem; font-weight: 800; color: var(--accent-dark); letter-spacing: .02em; }
.related-card:hover .related-go { text-decoration: underline; }
@media (max-width: 560px) {
  .post-visit { flex-wrap: wrap; }
  .post-visit .btn { width: 100%; }
}

/* ---------- Mobile-first polish (≤640px) ---------- */
@media (max-width: 640px) {
  /* Tighter spacing */
  .container { padding-inline: 1rem; }
  .section { padding: 2.5rem 0; }
  .hero { padding: 2.5rem 0 3rem; }
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.2rem); max-width: 100%; }
  .hero-sub { font-size: 1rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; min-height: 48px; font-size: .95rem; }
  .hero-stats { gap: .8rem; }
  .hero-visual { height: 260px; border-radius: 16px; }

  /* Section heads */
  .section-head { margin-bottom: 1.8rem; }
  .section-title { font-size: clamp(1.4rem, 4.5vw, 1.8rem); }

  /* Feature/amenity cards — single col on small phones, 2-col on wider */
  .features-grid, .amenity-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-card, .amenity-card { padding: 1.1rem; border-radius: 12px; }
  .feature-icon, .amenity-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: .7rem; }
  .feature-icon svg, .amenity-icon svg { width: 20px; height: 20px; }
  .feature-title, .amenity-title { font-size: .9rem; }
  .feature-desc, .amenity-desc { font-size: .82rem; }

  /* Pricing grid */
  .pricing-grid { gap: 1rem; }
  .plan-card { border-radius: 14px; }

  /* Testimonials */
  .testi-grid { gap: .9rem; }
  .testi-card { padding: 1.15rem 1.2rem; border-radius: 14px; }
  .testi-grid.testi-track, .testi-slider.is-static .testi-grid.testi-track { display: grid; grid-template-columns: 1fr; overflow-x: visible; scroll-snap-type: none; padding-bottom: 0; }
  .testi-grid.testi-track .testi-card, .testi-slider.is-static .testi-grid.testi-track .testi-card { flex: none; max-width: none; width: 100%; min-width: 0; margin: 0; }

  /* CTA banner */
  .cta-banner .container { padding: 2rem 1.2rem; }
  .cta-banner .btn { min-height: 48px; }

  /* Footer full-bleed mobile */
  .foot-shell { padding: 1rem 1rem 1.2rem; }
  .site-footer > .fade-top { height: 1rem; }
  .foot-banner { padding: 1.3rem; border-radius: 14px; margin-bottom: 1.5rem; }
  .foot-banner-text h2 { font-size: 1.3rem; }
  .foot-banner-cta { flex-direction: column; gap: .7rem; }
  .foot-banner-cta .btn { min-width: 0; width: 100%; min-height: 44px; }
  .foot-orbits { width: 180px; height: 180px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.2rem; padding-inline: 1.1rem; }
  .foot-bottom { padding-top: 1rem; text-align: center; }
  .foot-credit { flex-direction: column; gap: .5rem; font-size: .75rem; }
  .foot-icons { justify-content: center; }

  /* Nav drawer */
  .main-nav { width: min(300px, 85vw); }
  .nav-link { font-size: 1rem; min-height: 48px; }

  /* Floating buttons */
  .wa-float { width: 50px; height: 50px; bottom: 1rem; inset-inline-end: 1rem; }
  .wa-float svg { width: 26px; height: 26px; }
  .scroll-top { width: 42px; height: 42px; bottom: 4.6rem; inset-inline-end: 1rem; border-radius: 12px; }
  .scroll-top svg { width: 20px; height: 20px; }

  /* Footer-area raises for mobile */
  body.footer-area .wa-float { bottom: calc(1rem + 5rem); }
  body.footer-area .scroll-top { bottom: calc(1rem + 9rem); }

  /* Cookie bar */
  .cookie-bar { flex-direction: column; gap: .8rem; padding: 1rem; text-align: center; }
}

/* Extra-small (≤380px) */
@media (max-width: 380px) {
  .features-grid, .amenity-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.6rem; }
  .stat-card-mini { padding: .7rem .9rem; }
  .stat-card-mini strong { font-size: 1.15rem; }
}

/* Larger phones / small tablets (481–640px): 2-col feature cards fit well */
@media (min-width: 481px) and (max-width: 640px) {
  .features-grid, .amenity-grid { grid-template-columns: repeat(2, 1fr); }
}
