:root {
  /* Brand palette — warm gold + deep slate */
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    rgba(201,168,76,0.18);
  --teal:        #4fa89a;
  --teal-dim:    rgba(79,168,154,0.15);

  /* Surface */
  --bg:          #0c1018;
  --text:        #eef0f4;
  --text-light:  #8a95a3;
  --text-muted:  #5a6370;

  /* Glass */
  --glass-bg:    rgba(255,255,255,0.07);
  --glass-bg-hi: rgba(255,255,255,0.12);
  --glass-border:rgba(255,255,255,0.14);
  --glass-shine: rgba(255,255,255,0.22);
  --glass-shadow:0 20px 60px rgba(0,0,0,0.55), 0 2px 0 rgba(255,255,255,0.06) inset;

  /* Legacy aliases */
  --accent: var(--gold);
  --water:  var(--teal);
  --dark:   #1e2530;
  --card:   var(--glass-bg);
  --shadow: 0 24px 48px rgba(0,0,0,0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* Deep architectural background — slate navy with warm orbs */
  background-color: var(--bg);
  background-image:
    /* top-left warm gold orb */
    radial-gradient(ellipse 70% 55% at -5% 8%,  rgba(201,168,76,0.22)  0%, transparent 55%),
    /* center-right teal orb */
    radial-gradient(ellipse 55% 45% at 105% 40%, rgba(79,168,154,0.18)  0%, transparent 55%),
    /* bottom-left blue-purple depth */
    radial-gradient(ellipse 80% 50% at 15% 100%, rgba(90,110,200,0.12)  0%, transparent 55%),
    /* bottom-right warm glow */
    radial-gradient(ellipse 50% 40% at 90% 95%,  rgba(201,168,76,0.1)   0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 76px;
  background: rgba(12,16,24,0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.3);
  z-index: 99;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  min-width: 0;
  line-height: 1;
}

.brand-logo {
  display: block;
  height: 52px;
  width: 120px;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  flex-shrink: 0;
}

.brand-name {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.cta-btn, .action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Thick liquid glass button */
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.28) 0%,
    rgba(255,255,255,0.10) 45%,
    rgba(255,255,255,0.20) 100%
  );
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.42);
  border-bottom-color: rgba(255,255,255,0.12);
  border-right-color: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.45),
    0 2px 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-btn::before, .action-button::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.top-bar-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  position: relative;
}

.desktop-nav {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  font-weight: 600;
}

.desktop-nav a {
  color: rgba(237,232,227,0.65);
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
}

.desktop-nav a.active,
.desktop-nav a[aria-current="page"] {
  color: var(--accent);
  background: rgba(212,137,90,0.14);
}

.mobile-menu-trigger {
  display: none;
  margin-left: auto;
  cursor: pointer;
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;

  /* thick glass square */
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.22) 0%,
    rgba(255,255,255,0.07) 55%,
    rgba(255,255,255,0.14) 100%
  );
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.38);
  border-bottom-color: rgba(255,255,255,0.10);
  border-right-color: rgba(255,255,255,0.16);
  box-shadow:
    0 8px 28px rgba(0,0,0,0.40),
    0 2px 0 rgba(255,255,255,0.30) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.25s ease;
}
.mobile-menu-trigger:hover {
  transform: scale(1.08);
  border-color: rgba(201,168,76,0.55);
  box-shadow:
    0 12px 36px rgba(0,0,0,0.45),
    0 0 0 1px rgba(201,168,76,0.2),
    0 2px 0 rgba(255,255,255,0.32) inset;
}

.mobile-nav-dropdown {
  /* always flex so transitions work; hidden via visibility/opacity */
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.96);
  transform-origin: top right;
  transition:
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s linear 0.3s;

  position: absolute;
  top: calc(100% + 0.65rem);
  right: max(0.85rem, 4vw);
  flex-direction: column;
  width: min(260px, calc(100vw - 1.7rem));
  margin: 0;

  /* thick liquid glass panel */
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.18) 0%,
    rgba(10,14,22,0.82) 35%,
    rgba(10,14,22,0.88) 100%
  );
  backdrop-filter: blur(52px) saturate(200%);
  -webkit-backdrop-filter: blur(52px) saturate(200%);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.24);
  border-bottom-color: rgba(255,255,255,0.07);
  border-right-color: rgba(255,255,255,0.10);
  box-shadow:
    0 32px 64px rgba(0,0,0,0.58),
    0 2px 0 rgba(255,255,255,0.20) inset,
    0 -1px 0 rgba(0,0,0,0.18) inset,
    0 0 0 1px rgba(255,255,255,0.05) inset;
  overflow: hidden;
  padding: 0.55rem;
  gap: 0.25rem;
  z-index: 100;
}

/* specular top-left highlight on the panel */
.mobile-nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 70%; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.55), transparent);
  border-radius: 18px 0 0 0;
  pointer-events: none;
}

.mobile-nav-dropdown.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0s linear 0s;
}

.mobile-nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.78rem 1rem;
  color: rgba(238,240,244,0.72);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}

/* page icon prefix */
.mobile-nav-dropdown a::before {
  content: attr(data-icon);
  font-size: 1rem;
  margin-right: 0.6rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

/* right chevron */
.mobile-nav-dropdown a::after {
  content: '›';
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-nav-dropdown a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
  transform: translateX(3px);
}
.mobile-nav-dropdown a:hover::before { opacity: 1; }
.mobile-nav-dropdown a:hover::after {
  color: rgba(255,255,255,0.55);
  transform: translateX(3px);
}

.mobile-nav-dropdown a.active,
.mobile-nav-dropdown a[aria-current="page"] {
  color: var(--gold-light);
  background: linear-gradient(
    135deg,
    rgba(201,168,76,0.20) 0%,
    rgba(201,168,76,0.08) 100%
  );
  border-color: rgba(201,168,76,0.30);
  font-weight: 600;
}
.mobile-nav-dropdown a.active::after,
.mobile-nav-dropdown a[aria-current="page"]::after {
  color: var(--gold);
}

.cta-btn:hover, .action-button:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(
    135deg,
    rgba(201,168,76,0.38) 0%,
    rgba(255,255,255,0.12) 50%,
    rgba(79,168,154,0.28) 100%
  );
  border-color: rgba(201,168,76,0.65);
  box-shadow:
    0 20px 56px rgba(0,0,0,0.5),
    0 0 0 1px rgba(201,168,76,0.25),
    0 2px 0 rgba(255,255,255,0.38) inset,
    0 0 40px rgba(201,168,76,0.2);
}
.cta-btn:hover::before, .action-button:hover::before {
  left: 120%;
}

.cta-btn {
  margin-left: 1rem;
}

.mobile-call-fab {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.7), rgba(79,168,154,0.6));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  border-bottom-color: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 1px 0 rgba(255,255,255,0.3) inset;
}

.mobile-call-fab:hover {
  transform: translateY(-2px);
}

.mobile-call-fab-icon {
  width: 28px;
  height: 28px;
  display: block;
}

main { padding-top: 82px; }

.hero {
  min-height: 80vh;
  position: relative;
  background: url('../images/hero-home.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1.2rem;
}

#aboutHero { background-image: url('../images/hero-about.jpg'); }
#galleryHero { background-image: url('../images/hero-gallery.jpg'); }

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 2.8rem 3rem;
  /* Prominent liquid glass panel */
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.13) 0%,
    rgba(255,255,255,0.05) 40%,
    rgba(255,255,255,0.09) 100%
  );
  border: 1px solid rgba(255,255,255,0.22);
  border-bottom-color: rgba(255,255,255,0.08);
  border-right-color: rgba(255,255,255,0.1);
  border-radius: 32px;
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 2px 0 rgba(255,255,255,0.18) inset,
    0 0 0 1px rgba(255,255,255,0.06) inset;
  animation: fadeInUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-content h1 {
  margin: 0 0 0.1em;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* ── Word ticker ─────────────────────────────────────────── */
.ticker-clip {
  display: inline-block;
  overflow: hidden;
  height: 1.15em;          /* exactly one word slot */
  vertical-align: top;
  /* glass pill frame to separate from background */
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  border-bottom-color: rgba(255,255,255,0.08);
  border-radius: 0.18em;
  padding: 0 0.2em;
  box-shadow:
    0 4px 24px rgba(0,0,0,0.5),
    0 1px 0 rgba(255,255,255,0.18) inset;
}

.ticker-strip {
  display: flex;
  flex-direction: column;
  animation: hero-word-roll 5s linear infinite;
  will-change: transform;
}

.ticker-word {
  display: block;
  line-height: 1.15;       /* one slot = 1.15em */
  white-space: nowrap;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Per-word gradient colors + colored glow */
.ticker-word:nth-child(1),
.ticker-word:nth-child(4) { /* Dream + seamless clone */
  background-image: linear-gradient(135deg, #fbbf24 0%, #92400e 100%);
  filter: drop-shadow(0 0 14px rgba(251,191,36,0.75)) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.ticker-word:nth-child(2) { /* Design */
  background-image: linear-gradient(135deg, #2dd4bf 0%, #0f766e 100%);
  filter: drop-shadow(0 0 14px rgba(45,212,191,0.75)) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.ticker-word:nth-child(3) { /* Build */
  background-image: linear-gradient(135deg, #fb7185 0%, #9f1239 100%);
  filter: drop-shadow(0 0 14px rgba(251,113,133,0.75)) drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}
.hero-tagline {
  margin: 1rem auto 0;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0.88;
  line-height: 1.5;
  max-width: 560px;
}
.hero-content p { margin: 1rem auto 1.5rem; max-width: 640px; color: #f8f1ed; line-height: 1.55; }

.hero-content-subonly p {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 500;
}

.vision-section, .content-section { padding: 5rem 1.2rem; }
.container { width: min(1100px, 92vw); margin: 0 auto; }

/* Section glass-panel background */
.vision-section .container, .content-section {
  position: relative;
}
.vision-section {
  background:
    linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 100%);
}

.vision-section h2, .content-section h2 { font-size: 2.2rem; color: var(--text); text-align: center; margin-bottom: 1.1rem; }
.vision-section p, .content-section p { color: var(--text-light); text-align: center; max-width: 860px; margin: auto; line-height: 1.8; }

.features-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1.5rem;
}
.feature-card {
  /* Thick liquid glass card */
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.20) 0%,
    rgba(255,255,255,0.07) 55%,
    rgba(255,255,255,0.13) 100%
  );
  backdrop-filter: blur(48px) saturate(200%);
  -webkit-backdrop-filter: blur(48px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.30);
  border-bottom-color: rgba(255,255,255,0.08);
  border-right-color: rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(0,0,0,0.52),
    0 3px 0 rgba(255,255,255,0.22) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset,
    0 0 0 1px rgba(255,255,255,0.06) inset;
  padding: 2rem;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  /* static specular highlight line — top edge */
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 65%; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.7), transparent);
  border-radius: 24px 0 0 0;
  pointer-events: none;
}
.feature-card::after {
  /* shimmer sweep on hover */
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: left 0.65s ease;
  pointer-events: none;
}
.feature-card:hover::after {
  left: 135%;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(201,168,76,0.45);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,168,76,0.2),
    0 3px 0 rgba(255,255,255,0.25) inset,
    0 0 60px rgba(201,168,76,0.12);
}
.feature-card h3, .feature-card h4 {
  margin-top: 0;
  color: var(--text);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
.feature-card p {
  margin: .6rem 0 0;
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.93rem;
}

.content-section ul { max-width: 840px; margin: 1rem auto 0; padding-left: 1.25rem; color: var(--text-light); }
.content-section ul li { margin-bottom: .6rem; }

/* ── content-section enhancements ── */
.content-section h2 {
  position: relative;
  padding-bottom: 1rem;
}
.content-section h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 0.7rem auto 0;
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
}
.content-section h3 {
  font-size: 1.25rem;
  color: var(--text);
  text-align: center;
  margin-top: 2.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.intro-text {
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 0.75rem;
}
.unique-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 1.2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.unique-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 100%
  );
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
  border: 1px solid rgba(255,255,255,0.26);
  border-bottom-color: rgba(255,255,255,0.07);
  border-radius: 14px;
  box-shadow:
    0 10px 36px rgba(0,0,0,0.38),
    0 2px 0 rgba(255,255,255,0.22) inset,
    0 -1px 0 rgba(0,0,0,0.12) inset;
  color: var(--text-light);
  line-height: 1.6;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.25s ease;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.unique-list li::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.unique-list li:hover::after {
  left: 130%;
}
.unique-list li:hover {
  transform: translateX(6px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 12px 36px rgba(0,0,0,0.35), 0 0 0 1px rgba(201,168,76,0.1);
  color: var(--text);
}
.unique-list li::before {
  content: '✓';
  flex-shrink: 0;
  min-width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  color: #0c1018;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 26px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 2rem 0 4rem;
}
.gallery-card {
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.05) 55%,
    rgba(255,255,255,0.11) 100%
  );
  backdrop-filter: blur(40px) saturate(190%);
  -webkit-backdrop-filter: blur(40px) saturate(190%);
  border: 1px solid rgba(255,255,255,0.28);
  border-bottom-color: rgba(255,255,255,0.07);
  border-right-color: rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow:
    0 20px 56px rgba(0,0,0,0.48),
    0 2px 0 rgba(255,255,255,0.2) inset,
    0 -1px 0 rgba(0,0,0,0.15) inset;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
}
.gallery-card::before {
  /* specular top-edge line */
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.65), transparent);
  z-index: 2;
  pointer-events: none;
}
.gallery-card::after {
  /* shimmer sweep */
  content: '';
  position: absolute;
  top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.16) 50%, transparent 80%);
  transform: skewX(-15deg);
  transition: left 0.7s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery-card:hover::after {
  left: 135%;
}
.gallery-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(201,168,76,0.4);
  box-shadow:
    0 36px 72px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,168,76,0.18),
    0 0 56px rgba(201,168,76,0.1);
}
.gallery-card img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card p { padding: .8rem 1rem; margin: 0; color: var(--text-light); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(
    180deg,
    rgba(8,11,18,0.70) 0%,
    rgba(6,8,14,0.92) 100%
  );
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-top: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04), 0 -24px 64px rgba(0,0,0,0.35);
  color: var(--text-light);
  padding: 4rem 2rem 2rem;
  position: relative;
}

/* top specular edge */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), rgba(79,168,154,0.25), transparent);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 3rem 4rem;
  align-items: start;
}

/* Column headings */
.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.20);
}

/* Address block */
.footer address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer address p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light);
}
.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-link:hover { color: var(--gold-light); }

/* Page nav */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-nav a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-nav a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}
.footer-nav a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

/* Divider */
.footer-divider {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), rgba(201,168,76,0.18), rgba(255,255,255,0.10), transparent);
}

/* Bottom meta bar */
.footer-meta {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.footer-credit:hover { color: var(--gold-light); }

.footer-credit-logo {
  width: auto;
  height: 26px;
  display: block;
  object-fit: contain;
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Legacy rules kept for compat */
.footer .container { display: none; }
.footer h4 { margin-bottom: 0.6rem; color: var(--text); }
.footer nav a { text-decoration: none; color: var(--text-light); display: block; margin-bottom: .35rem; }
.footer p { margin: 0.2rem 0; }

@keyframes hero-word-roll {
  /* Dream hold */
  0%   { transform: translateY(0); }
  25%  { transform: translateY(0);         animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  /* roll to Design */
  33%  { transform: translateY(-1.15em); }
  /* Design hold */
  58%  { transform: translateY(-1.15em);  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  /* roll to Build */
  66%  { transform: translateY(-2.3em); }
  /* Build hold */
  91%  { transform: translateY(-2.3em);   animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
  /* roll to Dream clone (seamless reset) */
  99%  { transform: translateY(-3.45em); }
  100% { transform: translateY(-3.45em); }
}

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

@media (max-width: 900px) {
  .top-bar { padding: 0; }
  .top-bar { min-height: 72px; }
  .top-bar-inner { width: calc(100vw - 1.7rem); min-height: 72px; }
  .brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 0;
  }
  .brand-logo {
    height: 60px;
    width: auto;
    max-width: none;
  }
  .brand-name {
    display: none;
  }
  .hero {
    min-height: clamp(300px, 48vh, 420px);
    background-size: cover;
    background-position: center center;
    padding: 1rem;
  }
  #homeHero,
  #aboutHero,
  #galleryHero {
    background-position: center center;
  }
  .hero-content {
    max-width: min(92vw, 640px);
    padding: 1.05rem 0.95rem;
    border-radius: 20px;
  }
  .hero-content-subonly p {
    font-size: clamp(1.1rem, 4.2vw, 1.45rem);
  }
  .footer-meta { gap: 0.6rem; justify-content: center; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 3rem 1.2rem 2rem; }

  .desktop-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-trigger { display: inline-flex; }
  .mobile-call-fab { display: inline-flex; }
}
