/* =============================================
   THE WORKSTATION — Colour Scheme v3
   Palette:
     Sand Tan:        #e1b382
     Sand Tan Shadow: #c89666
     Night Blue:      #2d545e
     Night Blue Shadow:#12343b
   Base: Warm white / warm cream
   Font: Plus Jakarta Sans
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   1. CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* ── Brand palette ── */
  --tan:          #e1b382;   /* Sand Tan        — primary warm accent   */
  --tan-dark:     #c89666;   /* Sand Tan Shadow — hover / deep accent   */
  --tan-light:    #f0d4b0;   /* tint — backgrounds, subtle fills        */
  --tan-xlight:   #faf3e8;   /* very light tan — section backgrounds    */

  --night:        #2d545e;   /* Night Blue       — primary dark / text   */
  --night-dark:   #12343b;   /* Night Blue Shadow— footer / deep dark    */
  --night-mid:    #3d6b77;   /* lighter night — hover states             */
  --night-light:  #e8f2f4;   /* very light blue-teal tint                */

  /* ── Neutrals — warm-tinted, not cold gray ── */
  --gray-900:     #1a1a18;
  --gray-800:     #2d2d29;
  --gray-700:     #484840;
  --gray-600:     #625f55;
  --gray-500:     #8a8678;
  --gray-400:     #b5b1a4;
  --gray-300:     #d4d0c6;
  --gray-200:     #e8e4da;
  --gray-100:     #f2efe8;
  --gray-50:      #f9f7f2;
  --white:        #ffffff;

  /* ── Semantic tokens ── */
  --primary:      var(--night);
  --primary-dark: var(--night-dark);
  --primary-mid:  var(--night-mid);
  --accent:       var(--tan);
  --accent-dark:  var(--tan-dark);
  --accent-light: var(--tan-light);

  --surface:      #ffffff;
  --surface-warm: #faf7f2;   /* warm off-white — hero / section bg      */
  --border:       #e0dbd0;
  --border-light: #ede9e0;

  /* ── Section backgrounds — clear rhythm ── */
  --bg-page:      #faf7f2;   /* warm off-white base                     */
  --bg-light:     #f5f0e8;   /* light warm cream                        */
  --bg-mid:       #e8f2f4;   /* night-blue tint — trust sections        */
  --bg-dark:      #2d545e;   /* Night Blue — dark accent sections       */
  --bg-footer:    #12343b;   /* Night Blue Shadow — footer only         */

  /* ── Typography ── */
  --font:       'Plus Jakarta Sans', sans-serif;
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-lg:    1.125rem;
  --text-xl:    1.25rem;
  --text-2xl:   1.5rem;
  --text-3xl:   1.875rem;
  --text-4xl:   2.25rem;
  --text-5xl:   3rem;

  /* ── Border radius ── */
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  /* ── Shadows — warm-toned ── */
  --shadow-xs: 0 1px 2px rgba(18,52,59,.05);
  --shadow-sm: 0 2px 8px rgba(18,52,59,.07), 0 1px 2px rgba(18,52,59,.04);
  --shadow-md: 0 4px 16px rgba(18,52,59,.09), 0 2px 6px rgba(18,52,59,.05);
  --shadow-lg: 0 12px 40px rgba(18,52,59,.11), 0 4px 12px rgba(18,52,59,.06);
  --shadow-xl: 0 24px 64px rgba(18,52,59,.13), 0 8px 20px rgba(18,52,59,.07);

  /* ── Glow rings ── */
  --glow-night: 0 0 0 3px rgba(45,84,94,.2);
  --glow-tan:   0 0 0 3px rgba(225,179,130,.3);

  /* ── Transitions ── */
  --ease:     cubic-bezier(.16,1,.3,1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 400ms;
}

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

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

body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--gray-700);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a      { text-decoration: none; color: inherit; }
img    { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--night);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: rgba(225,179,130,.25); color: var(--night-dark); }

/* =============================================
   3. LAYOUT
   ============================================= */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* =============================================
   4. COLOR UTILITIES
   ============================================= */
.text-teal   { color: var(--night); }
.text-orange { color: var(--tan); }
.bg-teal     { background-color: var(--night); }
.bg-orange   { background-color: var(--tan); }

/* Hero gradient text: tan → night */
.gradient-text {
  background: linear-gradient(135deg, var(--tan) 0%, var(--night) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   5. BUTTONS
   ============================================= */

/* Primary — Night Blue */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--night);
  color: var(--white);
  padding: .75rem 1.875rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: .01em;
  border: none;
  box-shadow: 0 2px 8px rgba(18,52,59,.3), 0 1px 2px rgba(18,52,59,.18);
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn-primary:hover {
  background: var(--night-mid);
  box-shadow: 0 6px 20px rgba(18,52,59,.35), 0 2px 6px rgba(18,52,59,.2);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

/* Teal-style button → now Sand Tan */
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--tan);
  color: var(--night-dark);
  padding: .6875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  border: none;
  box-shadow: 0 2px 8px rgba(200,150,102,.35);
  transition: background var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn-teal:hover {
  background: var(--tan-dark);
  box-shadow: 0 6px 18px rgba(200,150,102,.45);
  transform: translateY(-1px);
}
.btn-teal:active { transform: translateY(0); }

/* Outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: var(--gray-700);
  padding: .75rem 1.875rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  border: 1.5px solid var(--gray-300);
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
}
.btn-outline:hover {
  background: var(--tan-xlight);
  border-color: var(--tan-dark);
  color: var(--night);
  transform: translateY(-1px);
}

/* Submit */
.btn-submit {
  width: 100%;
  padding: .9375rem;
  background: linear-gradient(135deg, var(--night) 0%, var(--night-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: var(--text-base);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  letter-spacing: .01em;
  box-shadow: 0 4px 16px rgba(18,52,59,.35);
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease),
              opacity var(--dur-base);
}
.btn-submit:hover {
  box-shadow: 0 8px 24px rgba(18,52,59,.45);
  transform: translateY(-1px);
}
.btn-submit:active   { transform: translateY(0); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* Danger */
.btn-danger {
  background: #b91c1c;
  color: var(--white);
  padding: .375rem .75rem;
  border: none;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--dur-base), transform var(--dur-fast);
}
.btn-danger:hover { background: #991b1b; transform: translateY(-1px); }

/* =============================================
   6. NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 0 rgba(18,52,59,.04), var(--shadow-xs);
}
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.navbar-brand img { width: 40px; height: 40px; object-fit: contain; }

.brand-name {
  display: block;
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--night-dark);
  line-height: 1;
  transition: color var(--dur-base);
}
.navbar-brand:hover .brand-name { color: var(--night); }

.brand-tag {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
}

.navbar-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .navbar-links { display: flex; } }

.navbar-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-base);
}
.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--tan);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease);
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--night); font-weight: 600; }
.navbar-links a:hover::after,
.navbar-links a.active::after { transform: scaleX(1); }

.navbar-hamburger {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: var(--gray-600);
  padding: .25rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-base), background var(--dur-base);
}
.navbar-hamburger:hover { color: var(--night); background: var(--tan-xlight); }
@media (min-width: 768px) { .navbar-hamburger { display: none; } }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: .75rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: .875rem .5rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--dur-base), padding-left var(--dur-base);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--night); padding-left: .75rem; }

/* =============================================
   7. HERO
   ============================================= */
.hero {
  padding: calc(80px + 1.5rem) 0 1.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 75% 50%, rgba(225,179,130,.1) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(45,84,94,.07) 0%, transparent 60%),
    var(--surface-warm);
}
@media (min-width: 1024px) { .hero { padding: calc(80px + 1.5rem) 0 1.5rem; } }

.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 900;
  color: var(--night-dark);
  line-height: 1.08;
  letter-spacing: -.03em;
}
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero-tagline {
  margin-top: 1.25rem;
  font-size: var(--text-xl);
  color: var(--gray-500);
  font-weight: 500;
  letter-spacing: .06em;
}
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-image-wrap { position: relative; }
.hero-image-wrap::before {
  content: '';
  position: absolute; top: -2rem; right: -1rem;
  width: 18rem; height: 18rem;
  background: radial-gradient(circle, rgba(225,179,130,.18) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-image-wrap::after {
  content: '';
  position: absolute; bottom: -2rem; left: -1rem;
  width: 18rem; height: 18rem;
  background: radial-gradient(circle, rgba(45,84,94,.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.hero-image-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: .875rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(18,52,59,.06);
  border: 1px solid var(--tan-light);
  transform: rotate(1.5deg);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.hero-image-card:hover {
  transform: rotate(0);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(225,179,130,.3);
}
.hero-image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 4px);
}

/* =============================================
   8. SECTIONS
   ============================================= */
.section { padding: 5rem 0; }

/*
  section-dark = Night Blue #2d545e
  Clearly distinct from footer Night Blue Shadow #12343b
*/
.section-dark { background: var(--bg-dark); color: var(--white); }
.section-dark .section-title { color: var(--white); }

.section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--night-dark);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}
/* Decorative accent line under titles */
.section-title::after {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: linear-gradient(to right, var(--tan), var(--night));
  border-radius: 2px;
  margin: .875rem auto 0;
}
.section-dark .section-title::after {
  background: linear-gradient(to right, var(--tan-light), var(--tan));
}

/* =============================================
   9. STATS
   ============================================= */
.stats-grid { display: grid; gap: 0; text-align: center; }
@media (min-width: 640px)  { .stats-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stats-grid > div {
  padding: 1.25rem 1rem;
  border-right: 1px solid var(--border-light);
}
.stats-grid > div:last-child { border-right: none; }
@media (max-width: 639px) {
  .stats-grid > div { border-right: none; border-bottom: 1px solid var(--border-light); }
  .stats-grid > div:last-child { border-bottom: none; }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--night);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-label {
  color: var(--gray-500);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: .375rem;
  letter-spacing: .02em;
}

/* =============================================
   10. OFFER CARDS
   ============================================= */
.offer-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .offer-grid { grid-template-columns: repeat(3,1fr); } }

.offer-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease),
              transform var(--dur-base) var(--ease);
}
.offer-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.offer-card:nth-child(1):hover { border-color: rgba(45,84,94,.25); }
.offer-card:nth-child(2):hover { border-color: rgba(225,179,130,.5); }
.offer-card:nth-child(3):hover { border-color: rgba(45,84,94,.25); }

.offer-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.offer-icon.blue   { background: rgba(45,84,94,.1);    color: var(--night); }
.offer-icon.orange { background: rgba(225,179,130,.2); color: var(--tan-dark); }
.offer-icon.green  { background: rgba(45,84,94,.08);   color: var(--night-mid); }

.offer-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--night-dark);
  margin-bottom: .625rem;
  letter-spacing: -.01em;
}
.offer-card p {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.75;
}

/* =============================================
   11. AMENITIES — on section-dark (Night Blue bg)
   ============================================= */
.amenity-grid { display: grid; gap: 1rem; }
@media (min-width: 640px)  { .amenity-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .amenity-grid { grid-template-columns: 1fr 1fr 1fr; } }

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--dur-base);
}
.amenity-item:hover { background: rgba(255,255,255,.12); }
/* Tan icon, near-white text — both readable on Night Blue */
.amenity-item svg  { flex-shrink: 0; color: var(--tan-light); margin-top: 1px; }
.amenity-item span { color: rgba(255,255,255,.88); font-size: var(--text-sm); font-weight: 500; line-height: 1.5; }

/* =============================================
   12. SPACE CARDS
   ============================================= */
.space-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .space-grid { grid-template-columns: 1fr 1fr; } }

.space-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease);
}
.space-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(225,179,130,.4);
}

.space-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-200);
}
.space-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.space-card:hover .space-card-img img { transform: scale(1.06); }

.space-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,52,59,.65) 0%, rgba(18,52,59,.1) 60%, transparent 100%);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--dur-slow) var(--ease);
}
.space-card-overlay svg {
  color: var(--white);
  opacity: .9;
  transform: scale(.85);
  transition: transform var(--dur-slow) var(--ease);
}
.space-card:hover .space-card-overlay     { opacity: 1; }
.space-card:hover .space-card-overlay svg { transform: scale(1.05); }

.space-card-body    { padding: 2rem; }
.space-card-body h3 {
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--night-dark);
  margin-bottom: .375rem;
  letter-spacing: -.01em;
}

.space-ideal      { color: var(--night); font-weight: 600; font-size: var(--text-sm); margin-bottom: 1rem; }
.space-ideal span { color: var(--gray-500); font-weight: 400; }

.space-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: .625rem;
  margin-bottom: 1.75rem;
}
.space-features li {
  display: flex; align-items: flex-start; gap: .5rem;
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.space-features li svg { color: var(--tan-dark); flex-shrink: 0; margin-top: 2px; }

/* =============================================
   13. GALLERY — EDITORIAL MASONRY
   ============================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter-btn {
  padding: .5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray-600);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
}
.gallery-filter-btn:hover {
  border-color: var(--tan-dark);
  color: var(--night);
  background: var(--tan-xlight);
}
.gallery-filter-btn.active {
  background: var(--night);
  border-color: var(--night);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(18,52,59,.3);
}

.gallery-masonry { columns: 1; column-gap: 1.25rem; }
@media (min-width: 640px)  { .gallery-masonry { columns: 2; } }
@media (min-width: 1024px) { .gallery-masonry { columns: 3; } }

.gallery-brick {
  break-inside: avoid;
  display: block;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--night-dark);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}

.space-card-img.gallery-brick,
.about-img.gallery-brick {
  display: block;
  margin-bottom: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.space-card-img.gallery-brick:hover { transform: none; box-shadow: none; }

.about-img.gallery-brick:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.hero-image-card.gallery-brick { display: block; margin-bottom: 0; }
.hero-image-card.gallery-brick:hover {
  transform: rotate(0);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(225,179,130,.3);
}

.gallery-brick:not(.space-card-img):not(.hero-image-card):not(.about-img):hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-xl);
}

#galleryMasonry .gallery-brick img,
#galleryMasonry .gallery-brick video {
  width: 100%; height: auto;
  display: block;
  border-radius: 14px;
  transition: transform .7s var(--ease), filter var(--dur-slow) var(--ease);
}
#galleryMasonry .gallery-brick:hover img,
#galleryMasonry .gallery-brick:hover video {
  transform: scale(1.06);
  filter: brightness(.82);
}

.gallery-brick-overlay {
  position: absolute; inset: 0;
  border-radius: 14px;
  background: linear-gradient(to top, rgba(18,52,59,.75) 0%, rgba(18,52,59,0) 55%);
  opacity: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
  transition: opacity var(--dur-slow) var(--ease);
}
.gallery-brick:hover .gallery-brick-overlay { opacity: 1; }

.gallery-brick-caption {
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: transform var(--dur-slow) var(--ease);
}
.gallery-brick:hover .gallery-brick-caption { transform: translateY(0); }

.gallery-brick-zoom {
  position: absolute;
  top: .875rem; right: .875rem;
  width: 2.25rem; height: 2.25rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(.8);
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.gallery-brick:hover .gallery-brick-zoom { opacity: 1; transform: scale(1); }

.gallery-brick-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: rgba(18,52,59,.75);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 700;
  padding: .25rem .625rem;
  border-radius: 6px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .3rem;
}

.gallery-brick.hidden { display: none; }

/* =============================================
   14. LIGHTBOX
   ============================================= */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(18,52,59,.97);
  backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img,
.lightbox-inner video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
}

.lightbox-close {
  position: absolute;
  top: -3.25rem; right: 0;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: var(--white);
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--dur-base);
}
.lightbox-close:hover { background: rgba(255,255,255,.22); }

.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  width: 3rem; height: 3rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur-base);
}
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

.lightbox-counter {
  position: absolute;
  bottom: -2.75rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.45);
  font-size: var(--text-xs);
  letter-spacing: .08em;
  font-family: var(--font);
}

/* =============================================
   15. PAGE HERO (interior pages)
   Night Blue Shadow → Night Blue gradient
   Clearly distinct from both footer and sections
   ============================================= */
.page-hero {
  padding: 90px 0 70px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(225,179,130,.2) 0%, transparent 55%),
    linear-gradient(160deg, var(--night-dark) 0%, var(--night) 55%, var(--night-mid) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero--compact { padding: calc(80px + 1rem) 0 1.25rem; }
.page-hero--why     { padding: calc(80px + .75rem) 0 .75rem; }

.section--why-first { padding: 1.5rem 0 !important; }
.section--why-first .about-grid { gap: 1.5rem; }
.section--why-first h2 { font-size: 1.5rem !important; margin-bottom: 1rem !important; }
.section--why-first .about-features { gap: 8px; }
.section--why-first .about-features li { font-size: 14px; }

.page-hero h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.03em;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .page-hero h1 { font-size: 44px; } }
.page-hero p {
  max-width: 680px;
  margin: auto;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(240,224,200,.85);
  position: relative;
  z-index: 1;
}

/* =============================================
   16. CONSULTING PAGE
   ============================================= */
.consulting-section { padding: 80px 0; background: var(--white); }

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.5rem;
  margin-top: 40px;
}

.consulting-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease);
}
.consulting-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225,179,130,.5);
}

.consulting-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(45,84,94,.08);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--night);
  transition: background var(--dur-base);
}
.consulting-card:hover .consulting-icon {
  background: rgba(225,179,130,.2);
  color: var(--tan-dark);
}
.consulting-card h3 { font-size: 1.1875rem; font-weight: 700; margin-bottom: 8px; color: var(--night-dark); }
.consulting-card p  { font-size: 15px; color: var(--gray-600); line-height: 1.7; }

/* Consulting CTA */
.consulting-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--tan-xlight) 0%, var(--night-light) 100%);
  text-align: center;
}
.consulting-cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; color: var(--night-dark); letter-spacing: -.02em; }
.consulting-cta p  { color: var(--gray-600); margin-bottom: 24px; }

/* =============================================
   17. CTA SECTION
   ============================================= */
.cta-section {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--tan-xlight) 0%, var(--night-light) 100%);
}
.cta-section h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--night-dark);
  letter-spacing: -.02em;
}
.cta-section p  { color: var(--gray-600); margin-bottom: 2rem; font-size: var(--text-lg); }
.cta-actions    { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* =============================================
   18. CONTACT PAGE
   ============================================= */
.contact-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-section--compact { padding: 1.5rem 0 !important; }
.contact-section--compact .contact-grid { gap: 1.5rem; }

.map-wrap {
  height: 16rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-wrap--compact { height: 11rem; }

.map-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1rem;
  padding: .625rem 1.25rem;
  background: var(--night);
  color: var(--white);
  border-radius: var(--radius-md);
  font-weight: 600; font-size: var(--text-sm);
  box-shadow: 0 2px 8px rgba(18,52,59,.25);
  transition: background var(--dur-base), box-shadow var(--dur-base), transform var(--dur-fast);
}
.map-btn:hover {
  background: var(--night-mid);
  box-shadow: 0 4px 14px rgba(18,52,59,.32);
  transform: translateY(-1px);
}

/* =============================================
   19. GOOGLE REVIEW CARD
   ============================================= */
.google-review-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin-top: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.google-review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.review-left img { width: 70px; height: auto; }
.review-right    { display: flex; flex-direction: column; gap: 4px; }
.rating-score    { font-size: 34px; font-weight: 900; color: var(--night-dark); line-height: 1; letter-spacing: -.02em; }
.stars           { color: var(--tan-dark); font-size: 18px; letter-spacing: 3px; }
.review-right p  { font-size: 14px; color: var(--gray-500); margin: 2px 0; }

.review-btn {
  display: inline-flex; align-items: center; gap: .25rem;
  margin-top: 6px;
  font-size: 14px; font-weight: 700;
  color: var(--night);
  transition: color var(--dur-base);
}
.review-btn:hover { color: var(--night-dark); text-decoration: underline; }

/* =============================================
   20. CONTACT FORM
   ============================================= */
.contact-form-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.contact-form-card h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--night-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.contact-form-card--compact { padding: 1.25rem 1.5rem; }
.contact-form-card--compact h3 { margin-bottom: .875rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.25rem; }
.form-group--compact { margin-bottom: .75rem; }

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--dur-base), background var(--dur-base), box-shadow var(--dur-base);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--night);
  background: var(--white);
  box-shadow: var(--glow-night);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  color: #b91c1c;
  font-size: var(--text-xs);
  font-weight: 500;
  margin-top: .25rem;
  display: none;
}
.form-group.has-error input,
.form-group.has-error textarea { border-color: #b91c1c; }
.form-group.has-error .form-error { display: block; }

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: #166534;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form-success.show { display: block; }

/* =============================================
   21. TOAST
   ============================================= */
.toast {
  position: fixed;
  top: 90px; right: 1.5rem;
  background: var(--night);
  color: var(--white);
  padding: .875rem 1.375rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(-16px) scale(.97);
  transition: all .35s var(--ease);
  z-index: 9999;
  pointer-events: none;
  border-left: 3px solid var(--tan);
}
.toast.show  { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.toast.error { background: #991b1b; border-left-color: var(--tan-light); }

/* =============================================
   22. ABOUT PAGE
   ============================================= */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-img {
  aspect-ratio: 3/2;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
  cursor: pointer;
  position: relative;
}
.about-img:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 36px 72px rgba(18,52,59,.18); }
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter var(--dur-slow) var(--ease);
}
.about-img:hover img { transform: scale(1.05); filter: brightness(.88); }

.about-img-overlay {
  position: absolute; inset: 0;
  background: rgba(18,52,59,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  border-radius: var(--radius-xl);
}
.about-img-overlay svg { color: var(--white); opacity: .9; }
.about-img:hover .about-img-overlay { opacity: 1; }

.about-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.65;
}
.about-features li svg { flex-shrink: 0; margin-top: 3px; }

/* =============================================
   23. FOOTER — Night Blue Shadow #12343b
   Deliberately the darkest zone on the page.
   Distinct from section-dark #2d545e above it.
   ============================================= */
.footer-modern {
  background: var(--bg-footer);
  color: rgba(225,200,170,.7);
  padding: 48px 0 24px;
  font-size: 13px;
}
.footer-row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-logo img { width: 28px; filter: brightness(0) invert(1); }
.footer-brand-modern p { max-width: 260px; margin-bottom: 14px; line-height: 1.6; }

.footer-social-modern { display: flex; gap: 8px; }
.footer-social-modern a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(225,200,170,.7);
  border: 1px solid rgba(255,255,255,.07);
  transition: background var(--dur-base), color var(--dur-base), transform var(--dur-fast);
}
.footer-social-modern a:hover {
  background: var(--tan-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-modern { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-links-modern h4 {
  color: var(--tan-light);
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-links-modern a {
  display: block;
  color: rgba(225,200,170,.65);
  text-decoration: none;
  margin-bottom: 6px;
  font-size: 13px;
  transition: color var(--dur-base), padding-left var(--dur-base);
}
.footer-links-modern a:hover { color: var(--tan-light); padding-left: 4px; }

.footer-bottom-modern {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(225,200,170,.4);
}

/* =============================================
   24. BOOKING MODAL
   ============================================= */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(18,52,59,.65);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 65%; max-width: 430px;
  position: relative;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(18,52,59,.06);
  animation: modalSlideUp .3s var(--ease);
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1);   }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  color: var(--gray-500);
  font-size: 1.125rem;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-base), color var(--dur-base);
}
.modal-close:hover { background: var(--tan-light); color: var(--night-dark); }

/* =============================================
   25. ADMIN PANEL
   ============================================= */
.admin-body { background: var(--gray-100); min-height: 100vh; font-family: var(--font); }

.admin-login-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--tan-xlight) 0%, var(--night-light) 100%);
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%; max-width: 420px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}
.admin-login-card h1 {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--night-dark);
  margin-bottom: .25rem;
  letter-spacing: -.02em;
}
.admin-login-card p { color: var(--gray-500); font-size: var(--text-sm); margin-bottom: 2rem; }

.admin-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 260px;
  background: var(--night-dark);
  color: var(--white);
  padding: 2rem 1.25rem;
  overflow-y: auto;
  z-index: 40;
  border-right: 1px solid rgba(255,255,255,.04);
}
.admin-sidebar-logo {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(225,179,130,.15);
}
.admin-sidebar-logo span { font-weight: 800; font-size: var(--text-lg); }

.admin-sidebar nav { display: flex; flex-direction: column; gap: .25rem; }
.admin-sidebar nav a {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--radius-md);
  color: rgba(225,200,170,.65);
  font-size: .9375rem; font-weight: 500;
  transition: background var(--dur-base), color var(--dur-base);
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.07); color: var(--white); }
.admin-sidebar nav a.active { background: rgba(225,179,130,.15); color: var(--tan-light); }

.admin-main { margin-left: 260px; padding: 2rem; }
@media (max-width: 900px) { .admin-sidebar { display: none; } .admin-main { margin-left: 0; } }

.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap; gap: .75rem;
}
.admin-topbar h1 {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--night-dark);
  letter-spacing: -.02em;
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  background: var(--gray-50);
  padding: .75rem 1rem;
  text-align: left;
  font-size: var(--text-xs); font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: .9375rem;
  vertical-align: top;
  color: var(--gray-700);
}
.admin-table tr:hover td { background: var(--gray-50); }

.badge { display: inline-block; padding: .25rem .625rem; border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 700; letter-spacing: .03em; }
.badge-teal   { background: rgba(45,84,94,.1);    color: var(--night); }
.badge-orange { background: rgba(225,179,130,.2); color: var(--tan-dark); }

.stats-row { display: grid; gap: 1.25rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .stats-row { grid-template-columns: repeat(4,1fr); } }

.stat-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card .num { font-size: 2rem; font-weight: 900; color: var(--night); letter-spacing: -.03em; }
.stat-card .lbl { color: var(--gray-500); font-size: var(--text-sm); font-weight: 500; margin-top: .25rem; }

.admin-gallery-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
}
.admin-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-100);
  box-shadow: var(--shadow-xs);
}
.admin-gallery-item img,
.admin-gallery-item video { width: 100%; height: 100%; object-fit: cover; }
.admin-gallery-item .delete-btn { position: absolute; top: .5rem; right: .5rem; }

.alert-success {
  background: #f0fdf4; border: 1px solid #86efac; color: #166534;
  border-radius: var(--radius-md); padding: .875rem 1.25rem;
  margin-bottom: 1rem; font-weight: 500; font-size: var(--text-sm);
}
.alert-error {
  background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b;
  border-radius: var(--radius-md); padding: .875rem 1.25rem;
  margin-bottom: 1rem; font-weight: 500; font-size: var(--text-sm);
}

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center; cursor: pointer;
  background: var(--gray-50);
  transition: border-color var(--dur-base), background var(--dur-base);
}
.upload-zone:hover { border-color: var(--tan-dark); background: var(--tan-xlight); }

.image-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.image-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base);
}
.image-card:hover { box-shadow: var(--shadow-md); }
.image-card img { width: 100%; height: 160px; object-fit: cover; border-radius: var(--radius-md); margin-bottom: 10px; }
.image-card h3  { font-size: 15px; font-weight: 700; color: var(--night-dark); margin-bottom: 10px; }

/* =============================================
   26. RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .space-card-img     { height: 220px; }
  .google-review-card { flex-direction: column; align-items: flex-start; }
  .review-left img    { width: 60px; }
  .rating-score       { font-size: 30px; }
  .footer-row         { flex-direction: column; gap: 28px; }
  .footer-links-modern{ gap: 24px; }
  .gallery-masonry    { columns: 2; }
}
@media (max-width: 480px) { .gallery-masonry { columns: 1; } }
@media (max-width: 640px) {
  .hero h1       { font-size: 2.125rem; }
  .page-hero h1  { font-size: 1.875rem; }
  .section-title { font-size: var(--text-2xl); }
  .lightbox-prev { left: -2.5rem; }
  .lightbox-next { right: -2.5rem; }
  .admin-topbar  { flex-direction: column; align-items: flex-start; }
  .btn-primary,
  .btn-outline   { padding: .75rem 1.5rem; }
}

/* =============================================
   27. VIEWPORT-FIT HERO (index.php)
   ============================================= */
.first-screen-wrap { display: flex; flex-direction: column; min-height: 100vh; }

.hero--viewport {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top:    calc(80px + clamp(.5rem, 2vh, 1.5rem));
  padding-bottom: clamp(.25rem, 1.5vh, 1.5rem);
  box-sizing: border-box;
}
.hero--viewport .hero-grid    { gap: clamp(1rem, 3vw, 3rem); }
.hero--viewport .hero-tagline { margin-top: clamp(.5rem, 1.5vh, 1.5rem); }
.hero--viewport .hero-actions { margin-top: clamp(.75rem, 1.5vh, 2rem); }

.stats-viewport-section {
  padding-top:    clamp(.5rem, 1vh, .85rem) !important;
  padding-bottom: clamp(.5rem, 1vh, .85rem) !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero--viewport {
    padding-top:    calc(80px + clamp(.5rem, 1.5vh, 1rem));
    padding-bottom: clamp(.25rem, 1vh, .75rem);
  }
}
@media (max-width: 767px) {
  .first-screen-wrap { min-height: auto; }
  .hero--viewport { flex: none; padding-top: calc(80px + 1rem); padding-bottom: 1rem; }
}

/* =============================================
   28. CUSTOMER TESTIMONIALS (about.php)
   ============================================= */
.testi-section { padding-top: 5rem; padding-bottom: 5rem; }

.testi-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: var(--text-sm);
  margin-top: -2.75rem;
  margin-bottom: 3.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.testi-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testi-grid { grid-template-columns: 1fr 1fr 1fr; } }

.testi-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              border-color var(--dur-slow) var(--ease);
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(225,179,130,.4);
}

.testi-quote-icon { position: absolute; top: 1.25rem; right: 1.5rem; line-height: 0; opacity: .15; }
.testi-stars { display: flex; gap: 3px; align-items: center; }

.testi-review {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.8;
  flex: 1;
}

.testi-author {
  display: flex; align-items: center; gap: .875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

.testi-avatar-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--tan-light);
}

.testi-avatar-video-wrap {
  width: 46px; height: 46px;
  border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--tan);
  position: relative;
}
.testi-avatar-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.testi-avatar-initials {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-sm); font-weight: 800;
  color: var(--white); flex-shrink: 0; letter-spacing: .03em;
}

.testi-author-info { display: flex; flex-direction: column; gap: 2px; }
.testi-name { font-weight: 700; font-size: var(--text-sm); color: var(--night-dark); line-height: 1.3; }
.testi-designation { font-size: var(--text-xs); color: var(--gray-500); font-weight: 500; line-height: 1.3; }
