@charset "utf-8";
/* ==========================================================================
   Golden City Township — premium layer
   Loaded after index-*.css. Refines type, surface and motion; the base
   stylesheet keeps owning layout.
   ========================================================================== */

/* ----------------------------------------------------------- 1. tokens --- */
:root {
  --gc-ink: #0a1f16;
  --gc-ink-soft: #102a1e;
  --gc-green: #166b45;
  --gc-green-dark: #0e4a2e;
  --gc-green-mid: #2e8b5c;
  --gc-gold: #c9a55c;
  --gc-gold-bright: #d9b96b;
  --gc-gold-pale: #ecdcb4;
  --gc-gold-deep: #8a6a1f;
  --gc-ivory: #fbf9f4;
  --gc-text: #1b2a23;
  --gc-muted: #5c6c63;
  --gc-hair: rgba(10, 31, 22, 0.1);
  --gc-hair-gold: rgba(201, 165, 92, 0.38);

  --gc-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --gc-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --gc-shadow-sm: 0 1px 2px rgba(10, 31, 22, 0.05), 0 2px 8px rgba(10, 31, 22, 0.04);
  --gc-shadow: 0 2px 4px rgba(10, 31, 22, 0.04), 0 12px 32px rgba(10, 31, 22, 0.08);
  --gc-shadow-lg: 0 4px 8px rgba(10, 31, 22, 0.05), 0 24px 64px rgba(10, 31, 22, 0.14);
  --gc-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-family-primary: var(--gc-sans);
  --primary-color: var(--gc-green);
}

/* ------------------------------------------------------------- 2. base --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--gc-sans);
  background: var(--gc-ivory);
  color: var(--gc-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

::selection {
  background: var(--gc-green);
  color: #fff;
}

/* a restrained gold scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gc-green) rgba(10, 31, 22, 0.06);
}
::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}
::-webkit-scrollbar-track {
  background: rgba(10, 31, 22, 0.05);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gc-green-mid), var(--gc-green-dark));
  border-radius: 99px;
  border: 3px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gc-gold), var(--gc-gold-deep));
  background-clip: padding-box;
}

/* visible keyboard focus everywhere (base sheet has none) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gc-gold);
  outline-offset: 3px;
  border-radius: 6px;
}

img {
  max-width: 100%;
}

/* ------------------------------------------- 3. scroll-reveal (failsafe) --
   premium.js adds .gc-r (hidden) then .gc-in (shown). If React re-renders
   and drops the classes, the element is simply visible — never stuck at 0. */
.gc-r {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.75s var(--gc-ease), transform 0.75s var(--gc-ease);
  will-change: opacity, transform;
  /* last-resort net: if the observer never reports back, show it anyway.
     Content must never be left invisible because of a decoration. */
  animation: gcFailsafe 0.4s linear 10s forwards;
}
.gc-r.gc-in {
  opacity: 1;
  transform: none;
  animation: none;
}
@keyframes gcFailsafe {
  to {
    opacity: 1;
    transform: none;
  }
}
.gc-r-d1 {
  transition-delay: 0.08s;
}
.gc-r-d2 {
  transition-delay: 0.16s;
}
.gc-r-d3 {
  transition-delay: 0.24s;
}
.gc-r-d4 {
  transition-delay: 0.32s;
}
.gc-r-d5 {
  transition-delay: 0.4s;
}

/* --------------------------------------------------- 4. page furniture --- */

/* reading-progress hairline */
.gc-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  z-index: 2000;
  background: linear-gradient(90deg, var(--gc-green-dark), var(--gc-gold-bright));
  box-shadow: 0 0 12px rgba(201, 165, 92, 0.7);
  transition: width 0.12s linear;
  pointer-events: none;
}

/* opening curtain */
.gc-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--gc-ink);
  transition: opacity 0.7s ease, visibility 0.7s ease;
  /* clears itself even if the motion script never runs — a stuck curtain
     would hide the entire site */
  animation: gcCurtainOut 0.6s ease 2.6s forwards;
}
.gc-loader.gc-done {
  opacity: 0;
  visibility: hidden;
}
@keyframes gcCurtainOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.gc-loader-mark {
  font-family: var(--gc-serif);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gc-gold-pale);
  text-align: center;
  line-height: 1.5;
}
.gc-loader-mark small {
  display: block;
  font-family: var(--gc-sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: rgba(236, 220, 180, 0.55);
  margin-top: 0.6rem;
}
.gc-loader-rule {
  width: 0;
  height: 1px;
  margin: 1.4rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
  animation: gcRule 1.1s var(--gc-ease) forwards;
}
@keyframes gcRule {
  to {
    width: 190px;
  }
}

/* back to top */
.gc-top {
  position: fixed;
  right: 22px;
  bottom: 104px;
  width: 46px;
  height: 46px;
  z-index: 1015;
  display: grid;
  place-items: center;
  border: 1px solid var(--gc-hair-gold);
  border-radius: 50%;
  background: rgba(10, 31, 22, 0.86);
  backdrop-filter: blur(10px);
  color: var(--gc-gold-pale);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px) scale(0.9);
  pointer-events: none;
  transition: all 0.45s var(--gc-ease);
}
.gc-top.gc-show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.gc-top:hover {
  background: var(--gc-green);
  border-color: var(--gc-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(10, 31, 22, 0.35);
}
.gc-top svg {
  width: 18px;
  height: 18px;
}

/* ------------------------------------------------------- 5. typography --- */
.hero-title,
.seo-main-title,
.seo-section-title,
.gallery-title,
.amenities-title,
.process-title,
.location-title,
.faq-title,
.gallery-cta-title,
.amenities-cta-title,
.process-cta-title,
.faq-cta-title,
.location-landmarks-title,
.location-connectivity-title,
.amenity-title,
.gallery-item-title,
.location-landmark-name,
.process-step-title,
.gallery-modal-title {
  font-family: var(--gc-serif);
  font-weight: 600;
  letter-spacing: -0.012em;
}

/* the split "Title / subtitle" pairs become an editorial lockup */
.gallery-subtitle,
.amenities-subtitle,
.process-subtitle,
.location-subtitle,
.faq-subtitle {
  font-family: var(--gc-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gc-gold-deep);
  letter-spacing: 0;
}

.gallery-title,
.amenities-title,
.process-title,
.location-title,
.faq-title {
  color: var(--gc-ink);
}

/* eyebrow chips: gold hairline capsule instead of a solid lime pill */
.gallery-badge,
.amenities-badge,
.process-badge,
.location-badge,
.faq-badge {
  background: rgba(201, 165, 92, 0.1) !important;
  border: 1px solid var(--gc-hair-gold);
  color: var(--gc-gold-deep) !important;
  font-family: var(--gc-sans);
  font-size: 0.68rem !important;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: none !important;
  backdrop-filter: blur(6px);
}
.gallery-badge-icon,
.amenities-badge-icon,
.process-badge-icon,
.location-badge-icon,
.faq-badge-icon {
  filter: saturate(0.7);
}

/* section descriptions read as a lede */
.gallery-description,
.amenities-description,
.process-description,
.location-description,
.faq-description,
.location-landmarks-subtitle {
  color: var(--gc-muted);
  font-size: 1.06rem;
  line-height: 1.78;
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}

/* an ornament under section headers */
.gallery-header::after,
.amenities-header::after,
.process-header::after,
.location-header::after,
.faq-header::after {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin: 30px auto 0;
  background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
}

/* ------------------------------------------------------------ 6. header --- */
.header {
  transition: background 0.4s var(--gc-ease), box-shadow 0.4s var(--gc-ease),
    backdrop-filter 0.4s var(--gc-ease), border-color 0.4s var(--gc-ease);
  border-bottom: 1px solid transparent;
}
/* The app already toggles --transparent / --scrolled at scrollY > 50 and
   swaps the logo and nav colours with it. Style those states rather than
   adding a second, differently-timed one — a mismatch would flash white
   text on a light bar. */
.header--transparent {
  background: linear-gradient(180deg, rgba(6, 20, 14, 0.6), rgba(6, 20, 14, 0.12)) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
.header--scrolled {
  background: rgba(251, 249, 244, 0.86) !important;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--gc-hair) !important;
  box-shadow: 0 8px 32px rgba(10, 31, 22, 0.08) !important;
}
.header__logo--dark {
  color: var(--gc-ink) !important;
}
.header__logo-main,
.header__logo-text {
  font-family: var(--gc-serif);
  letter-spacing: 0.01em;
}
.header__logo-accent {
  color: var(--gc-gold-deep) !important;
}
.header__logo-sub {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.58rem;
  color: var(--gc-muted);
}
.header__nav-item {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.header__contact-btn,
.header__contact-btn--light,
.header__contact-btn--dark {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 20px rgba(22, 107, 69, 0.26);
}

/* ------------------------------------------------------------- 7. hero --- */
/* the Golden City main gate render — the project's showpiece */
.hero-section.hero-section {
  background-image: linear-gradient(
      to right,
      rgba(6, 20, 14, 0.88) 0%,
      rgba(6, 20, 14, 0.6) 40%,
      rgba(6, 20, 14, 0.22) 78%,
      rgba(6, 20, 14, 0.34) 100%
    ),
    url(/assets/hero-main-gate.jpg);
  background-size: cover, cover;
  background-position: center, center 38%;
  background-attachment: scroll, scroll;
}
/* a slow cinematic drift on the photograph */
.hero-section.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 100%, rgba(6, 20, 14, 0.75), transparent 62%);
}
.hero-overlay,
.hero-overlay-bottom {
  background: none !important;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
}

/* badge */
.hero-badge {
  background: rgba(10, 31, 22, 0.42) !important;
  border: 1px solid var(--gc-hair-gold);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 9px 18px;
}
.hero-badge-text {
  color: var(--gc-gold-pale) !important;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}
.hero-badge-dot {
  background: var(--gc-gold-bright) !important;
  box-shadow: 0 0 0 4px rgba(217, 185, 107, 0.22);
}

/* headline */
.hero-title.hero-title {
  font-family: var(--gc-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
  max-width: 19ch;
}
.hero-title-highlight {
  color: var(--gc-gold-bright) !important;
  font-style: italic;
  position: relative;
}
.hero-title-underline {
  background: linear-gradient(90deg, var(--gc-gold), rgba(217, 185, 107, 0)) !important;
  height: 2px !important;
  border-radius: 2px;
  transform-origin: left;
  animation: gcUnderline 1.3s 0.5s var(--gc-ease) both;
}
@keyframes gcUnderline {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* lede */
.hero-subtitle.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  max-width: 56ch;
  font-weight: 400;
}
.hero-subtitle-highlight {
  color: var(--gc-gold-bright) !important;
  font-weight: 600;
  border-bottom: 1px solid var(--gc-hair-gold);
  padding-bottom: 1px;
}

/* trust pills */
.hero-features-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  margin-top: 22px;
}
.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.35s var(--gc-ease);
}
.hero-feature-item:hover {
  background: rgba(201, 165, 92, 0.16);
  border-color: var(--gc-hair-gold);
  transform: translateY(-2px);
}
.hero-feature-text {
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.hero-feature-dot {
  width: 6px;
  height: 6px;
  background: var(--gc-gold-bright) !important;
  box-shadow: 0 0 0 3px rgba(217, 185, 107, 0.2);
}

/* hero buttons */
.hero-cta-primary.hero-cta-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gc-gold-bright), var(--gc-gold-deep)) !important;
  color: var(--gc-ink) !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 999px;
  padding: 16px 34px;
  box-shadow: 0 10px 30px rgba(201, 165, 92, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.hero-cta-primary.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(201, 165, 92, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hero-cta-secondary {
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s var(--gc-ease);
}
.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: var(--gc-gold) !important;
  transform: translateY(-3px);
}

/* ambient orbs, softened to gold */
.hero-bg-element-1 {
  background: radial-gradient(circle, rgba(201, 165, 92, 0.16), transparent 70%) !important;
  filter: blur(10px);
  animation: gcFloat 16s ease-in-out infinite;
}
.hero-bg-element-2 {
  background: radial-gradient(circle, rgba(46, 139, 92, 0.14), transparent 70%) !important;
  filter: blur(10px);
  animation: gcFloat 21s ease-in-out infinite reverse;
}
@keyframes gcFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -30px, 0) scale(1.07);
  }
}

/* ADA-approved trust seal, floated into the hero by premium.js */
/* anchored from the top: the hero is taller than the viewport, so a
   bottom offset drifted down onto the chat button */
.gc-seal {
  position: absolute;
  right: clamp(16px, 4vw, 58px);
  top: clamp(88px, 12vh, 132px);
  width: clamp(68px, 7vw, 104px);
  z-index: 4;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.45));
  animation: gcSealIn 1.2s 0.9s var(--gc-ease) both, gcFloat 14s 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gcSealIn {
  from {
    opacity: 0;
    transform: scale(0.6) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
@media (max-width: 768px) {
  .gc-seal {
    top: 84px;
    right: 14px;
    width: 58px;
  }
}

/* "Site Tour" video tile, appended to the gallery grid by premium.js */
.gc-video-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gc-hair);
  box-shadow: var(--gc-shadow-sm);
  background: var(--gc-ink);
  cursor: pointer;
  transition: transform 0.55s var(--gc-ease), box-shadow 0.55s var(--gc-ease),
    border-color 0.55s var(--gc-ease);
}
.gc-video-item:hover {
  transform: translateY(-8px);
  border-color: var(--gc-hair-gold);
  box-shadow: var(--gc-shadow-lg);
}
.gc-video-item video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.gc-video-item .gc-video-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 42px 18px 16px;
  background: linear-gradient(to top, rgba(6, 20, 14, 0.9), transparent);
  color: #fff;
  font-family: var(--gc-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.gc-video-item .gc-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(201, 165, 92, 0.92);
  color: var(--gc-ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

/* scroll cue */
.hero-scroll-text {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6) !important;
}
.hero-scroll-mouse {
  border-color: var(--gc-hair-gold) !important;
}
.hero-scroll-dot {
  background: var(--gc-gold-bright) !important;
}

/* social rail */
.social-btn,
.social-btn-mobile {
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--gc-ease);
}
.social-btn:hover {
  border-color: var(--gc-gold);
  transform: translateY(-3px) scale(1.06);
}
.hero-social-mobile-label,
.follow-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.58rem;
  white-space: nowrap;
}
/* the desktop social rail sat flush against the viewport edge */
.hero-social-desktop {
  padding-left: 8px;
}

/* ---------------------------------------------------------- 8. buttons --- */
/* one light sweep across every primary action */
.hero-cta-primary::before,
.gallery-cta-button::before,
.amenities-btn-primary::before,
.process-cta-primary::before,
.faq-cta-button.primary::before,
.location-directions-btn::before,
.header__contact-btn::before,
.gallery-show-more::before,
.gallery-show-less::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.75s var(--gc-ease);
  pointer-events: none;
}
.hero-cta-primary:hover::before,
.gallery-cta-button:hover::before,
.amenities-btn-primary:hover::before,
.process-cta-primary:hover::before,
.faq-cta-button.primary:hover::before,
.location-directions-btn:hover::before,
.header__contact-btn:hover::before,
.gallery-show-more:hover::before,
.gallery-show-less:hover::before {
  left: 140%;
}
.gallery-cta-button,
.amenities-btn-primary,
.process-cta-primary,
.faq-cta-button.primary,
.location-directions-btn,
.gallery-show-more,
.gallery-show-less,
.faq-cta-button.secondary,
.amenities-btn-secondary,
.process-cta-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 999px !important;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.gallery-cta-button:hover,
.amenities-btn-primary:hover,
.process-cta-primary:hover,
.faq-cta-button.primary:hover,
.location-directions-btn:hover,
.gallery-show-more:hover,
.gallery-show-less:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(22, 107, 69, 0.32);
}

/* the orphan orange "Download Layout" button */
.download-button {
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--gc-ease);
}
.download-button.layout,
.layout {
  background-color: var(--gc-gold-deep) !important;
  color: #fff !important;
}
.download-button.layout:hover,
.layout:hover {
  background-color: var(--gc-ink) !important;
}
.download-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--gc-shadow);
}

/* ------------------------------------------------------------ 9. cards --- */
.amenity-card,
.gallery-item,
.location-landmark-card,
.process-step,
.faq-item,
.hero-feature-card {
  border-radius: 18px;
  transition: transform 0.55s var(--gc-ease), box-shadow 0.55s var(--gc-ease),
    border-color 0.55s var(--gc-ease);
}
.amenity-card {
  border: 1px solid var(--gc-hair) !important;
  box-shadow: var(--gc-shadow) !important;
  transform-style: flat !important;
}
.amenity-card:hover {
  transform: translateY(-10px) !important;
  border-color: var(--gc-hair-gold) !important;
  box-shadow: var(--gc-shadow-lg) !important;
}
.gallery-item {
  border: 1px solid var(--gc-hair);
  box-shadow: var(--gc-shadow-sm);
}
.gallery-item:hover {
  border-color: var(--gc-hair-gold) !important;
  box-shadow: var(--gc-shadow-lg);
  transform: translateY(-8px);
}
.location-landmark-card {
  background: #fff !important;
  border: 1px solid var(--gc-hair) !important;
  box-shadow: var(--gc-shadow-sm);
}
.location-landmark-card:hover {
  border-color: var(--gc-hair-gold) !important;
  box-shadow: var(--gc-shadow) !important;
}
.process-step {
  border: 1px solid var(--gc-hair) !important;
  box-shadow: var(--gc-shadow-sm);
}
.process-step:hover {
  border-color: var(--gc-hair-gold) !important;
  box-shadow: var(--gc-shadow) !important;
  transform: translateY(-6px);
}

/* slow zoom on every framed photograph */
.gallery-image-container,
.amenity-image-container {
  overflow: hidden;
}
.gallery-image,
.amenity-image {
  transition: transform 1.1s var(--gc-ease), filter 0.7s ease;
  will-change: transform;
}
.gallery-item:hover .gallery-image,
.amenity-card:hover .amenity-image {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.03);
}

/* image overlays: ink veil + gold rule, instead of a flat green wash */
.gallery-overlay,
.amenity-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 20, 14, 0.92) 0%,
    rgba(6, 20, 14, 0.5) 45%,
    rgba(6, 20, 14, 0.12) 100%
  ) !important;
  backdrop-filter: blur(1px);
}
.gallery-overlay-text,
.amenity-overlay-text {
  font-family: var(--gc-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.amenity-badge-overlay,
.location-landmark-type,
.gallery-filter.active {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem !important;
  font-weight: 600;
}
.amenity-number {
  font-family: var(--gc-serif);
  font-size: 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.amenity-feature-tag,
.location-landmark-feature,
.process-step-feature {
  border: 1px solid var(--gc-hair);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

/* numbered process markers as gold-ringed medallions */
.process-step-number {
  font-family: var(--gc-serif);
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(22, 107, 69, 0.3), 0 0 0 1px rgba(201, 165, 92, 0.45);
}
.process-connection-line {
  background: linear-gradient(90deg, transparent, var(--gc-hair-gold), transparent) !important;
}

/* filters */
.gallery-filter {
  border-radius: 999px !important;
  border: 1px solid var(--gc-hair) !important;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: var(--gc-muted);
  transition: all 0.35s var(--gc-ease);
}
.gallery-filter.active {
  color: #fff !important;
}
.gallery-filter-label {
  color: inherit;
}
.gallery-filter:hover {
  border-color: var(--gc-hair-gold) !important;
}

/* faq */
.faq-item {
  background: #fff !important;
  border: 1px solid var(--gc-hair) !important;
  box-shadow: none !important;
}
.faq-item:hover {
  border-color: var(--gc-hair-gold) !important;
  box-shadow: var(--gc-shadow-sm) !important;
}
.faq-item.active {
  border-color: var(--gc-hair-gold) !important;
  box-shadow: var(--gc-shadow) !important;
}
.faq-question-text {
  font-family: var(--gc-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gc-ink);
}
.faq-answer-content {
  color: var(--gc-muted);
  line-height: 1.8;
}
.faq-toggle-icon {
  border-radius: 50% !important;
  transition: all 0.4s var(--gc-ease);
}

/* stat strips */
.process-stat-number,
.location-connectivity-stat-number {
  font-family: var(--gc-serif);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.process-stat-label,
.location-connectivity-stat-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.64rem;
  color: var(--gc-muted);
}
.location-connectivity {
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(14, 74, 46, 0.28);
  position: relative;
  overflow: hidden;
}
.location-connectivity::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 85% 0%, rgba(201, 165, 92, 0.22), transparent 60%);
  pointer-events: none;
}
.location-connectivity .location-connectivity-stat-label {
  color: rgba(255, 255, 255, 0.7);
}
.location-connectivity-title {
  font-family: var(--gc-serif);
}
.location-map-container,
.location-map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--gc-shadow);
}

/* At >=1024px the base sheet gave the map 1.2fr against 0.8fr of landmark
   cards, squeezing each card to ~215px so names broke over three lines.
   Rebalanced — matched to the same breakpoint so mobile stays single-column. */
@media (min-width: 1024px) {
  .location-content-grid {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 56px;
  }
}
/* The type badge is flex-shrink:0 next to an info column with flex:1 1 0%,
   so a wide badge ("ENTERTAINMENT") crushed the text to ~100px and every
   description broke over three or four lines. Float the badge instead and
   give the copy the full card width. */
.location-landmark-content {
  display: block;
}
.location-landmark-info {
  flex: none;
}
.location-landmark-stats {
  position: absolute;
  top: 22px;
  right: 22px;
  margin-top: 0;
}
.location-landmark-icon {
  margin-bottom: 10px;
}
.location-landmark-name {
  font-size: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
  padding-right: 4px;
}
.location-landmark-description {
  line-height: 1.6;
}
.location-landmark-features {
  gap: 6px;
}

/* ----------------------------------------------- 10. pricing + editorial -- */
.seo-content-section {
  background: var(--gc-ivory);
}
.seo-main-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--gc-ink);
  line-height: 1.15;
}
.seo-intro {
  font-size: 1.14rem !important;
  line-height: 1.85 !important;
  color: var(--gc-muted) !important;
  max-width: 74ch;
}
.seo-content-block {
  padding: 34px 0 !important;
  border-top: 1px solid var(--gc-hair);
}
.seo-content-block:first-of-type {
  border-top: none;
}
.seo-section-title {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--gc-ink);
  position: relative;
  padding-left: 20px;
}
.seo-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  bottom: 0.24em;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--gc-gold), var(--gc-green));
}
.seo-content-block p {
  color: var(--gc-muted) !important;
  line-height: 1.82 !important;
}
.seo-content-block strong {
  color: var(--gc-ink);
  font-weight: 600;
}

/* benefit / doc / amenity lists get gold tick rules */
.seo-benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.seo-benefits-list li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--gc-hair);
  border-left: 2px solid var(--gc-gold);
  border-radius: 10px;
  color: var(--gc-text);
  transition: all 0.35s var(--gc-ease);
}
.seo-benefits-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--gc-shadow-sm);
  border-left-color: var(--gc-green);
}
.legal-docs,
.amenities-grid:not(.special-layout) {
  gap: 12px;
}
.doc-item,
.amenity-item,
.advantage-item,
.investment-point {
  background: #fff;
  border: 1px solid var(--gc-hair);
  border-radius: 12px;
  padding: 15px 18px;
  color: var(--gc-text);
  transition: all 0.35s var(--gc-ease);
}
.doc-item strong,
.amenity-item strong,
.advantage-item strong,
.investment-point strong {
  color: var(--gc-ink);
}
.doc-item:hover,
.amenity-item:hover,
.advantage-item:hover,
.investment-point:hover {
  border-color: var(--gc-hair-gold);
  transform: translateY(-3px);
  box-shadow: var(--gc-shadow-sm);
}

/* the price table, rebuilt as a ledger panel */
.pricing-table {
  background: #fff;
  border: 1px solid var(--gc-hair);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--gc-shadow);
  position: relative;
}
.pricing-table::before {
  content: "Uniform rate · ₹42,500 per gaj";
  display: block;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--gc-ink), var(--gc-green-dark));
  color: var(--gc-gold-pale);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 165, 92, 0.3);
}
.pricing-row {
  padding: 18px 22px !important;
  border-bottom: 1px solid var(--gc-hair) !important;
  transition: background 0.3s ease;
}
.pricing-row:hover {
  background: rgba(201, 165, 92, 0.06);
}
.plot-size {
  font-family: var(--gc-serif);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--gc-ink);
}
.plot-price {
  font-family: var(--gc-serif);
  font-size: 1.3rem !important;
  font-weight: 700;
  color: var(--gc-green) !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.plot-type {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gc-muted);
  text-align: right;
}

/* sub-headings inside the editorial blocks were the only sans-serif
   headings left on the page */
.seo-content-section h3,
.seo-content-section h4,
.seo-highlight-box h3,
.seo-highlight-box h4,
.seo-cta-content h2,
.seo-cta-content h3 {
  font-family: var(--gc-serif);
  font-weight: 600;
  color: var(--gc-ink);
  letter-spacing: -0.008em;
}
.seo-cta-content h2,
.seo-cta-content h3 {
  color: #fff;
}

.seo-highlight-box {
  background: #fff;
  border: 1px solid var(--gc-hair-gold);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--gc-shadow-sm);
  position: relative;
}
.seo-highlight-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: linear-gradient(180deg, var(--gc-gold), var(--gc-green));
}

/* dark CTA bands */
.seo-cta-section,
.process-cta,
.gallery-cta,
.amenities-cta,
.faq-cta {
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}
.seo-cta-section {
  background: linear-gradient(135deg, var(--gc-ink), var(--gc-green-dark)) !important;
}
.seo-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 100% 0%, rgba(201, 165, 92, 0.2), transparent 60%);
  pointer-events: none;
}
.seo-cta-content {
  position: relative;
  z-index: 2;
}
.cta-button.primary {
  background: linear-gradient(135deg, var(--gc-gold-bright), var(--gc-gold-deep)) !important;
  color: var(--gc-ink) !important;
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.cta-button.secondary {
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
}
.cta-button {
  transition: all 0.35s var(--gc-ease);
}
.cta-button:hover {
  transform: translateY(-3px);
}

/* --------------------------------------------------------- 11. footer --- */
/* the base sheet styles footer children for a dark ground but never paints
   one, so the footer currently renders grey-on-white. This restores it. */
.footer {
  background: linear-gradient(180deg, var(--gc-ink) 0%, #071711 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 74px 0 0;
  margin-top: 0;
  position: relative;
  border-top: 1px solid rgba(201, 165, 92, 0.28);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gc-gold), transparent);
}
.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(70% 50% at 12% 0%, rgba(46, 139, 92, 0.16), transparent 60%);
}
.footer-container {
  position: relative;
  z-index: 2;
}
.footer-section-title {
  color: var(--gc-gold-pale) !important;
  font-family: var(--gc-sans);
  font-size: 0.7rem !important;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer-link,
.footer-links a,
.footer-links li {
  color: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 0.3s ease, transform 0.3s var(--gc-ease);
  display: inline-block;
}
.footer-link:hover,
.footer-links a:hover {
  color: var(--gc-gold-bright) !important;
  transform: translateX(4px);
}
.footer-company-info p,
.footer-company-info .description,
.footer-contact-info p,
.contact-details,
.contact-item {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.75;
}
.footer-company-info .logo-text,
.logo-text {
  font-family: var(--gc-serif);
  color: #fff;
}
.footer-company-info .logo-text .highlight,
.logo-text .highlight {
  color: var(--gc-gold-bright) !important;
}
.footer-company-info .logo-icon {
  background: linear-gradient(135deg, var(--gc-green-mid), var(--gc-green-dark)) !important;
  box-shadow: 0 0 0 1px rgba(201, 165, 92, 0.4), 0 10px 26px rgba(0, 0, 0, 0.4);
}
.footer-contact-info .contact-icon {
  background-color: rgba(201, 165, 92, 0.14) !important;
  border: 1px solid rgba(201, 165, 92, 0.24);
}
.footer-contact-info .contact-icon svg {
  color: var(--gc-gold-bright) !important;
}
.footer-social-media .social-icon {
  background-color: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72) !important;
  transition: all 0.35s var(--gc-ease);
}
.footer-social-media .social-icon:hover {
  background: linear-gradient(135deg, var(--gc-gold-bright), var(--gc-gold-deep)) !important;
  border-color: var(--gc-gold) !important;
  color: var(--gc-ink) !important;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.45) !important;
}
.legal-link,
.legal-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}
.legal-link:hover,
.legal-links a:hover,
.footer-bottom a:hover {
  color: var(--gc-gold-bright) !important;
}

/* --------------------------------------------- 12. floating UI polish --- */
.chatbot-toggle-button {
  box-shadow: 0 14px 38px rgba(10, 31, 22, 0.34), 0 0 0 1px rgba(201, 165, 92, 0.35) !important;
  transition: transform 0.4s var(--gc-ease), box-shadow 0.4s var(--gc-ease);
}
.chatbot-toggle-button:hover {
  transform: translateY(-3px) scale(1.05);
}
/* base sheet sets width:92vw with no desktop cap — on a 1440px screen the
   panel spanned 1325px and buried the hero. Keep it a corner panel. */
.chatbot-window {
  width: min(92vw, 384px) !important;
  max-height: min(75vh, 560px) !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: var(--gc-shadow-lg) !important;
  border: 1px solid var(--gc-hair);
}
.chatbot-header {
  background: linear-gradient(135deg, var(--gc-ink), var(--gc-green-dark)) !important;
  border-bottom: 1px solid rgba(201, 165, 92, 0.3);
}
.chatbot-header-title {
  font-family: var(--gc-serif);
  letter-spacing: 0.01em;
}
.chatbot-header-subtitle {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.6rem;
}
.option-button {
  border-radius: 999px !important;
  border: 1px solid var(--gc-hair) !important;
  transition: all 0.3s var(--gc-ease);
}
.option-button:hover {
  border-color: var(--gc-hair-gold) !important;
  background: rgba(201, 165, 92, 0.08) !important;
  transform: translateY(-1px);
}
.send-button {
  border-radius: 999px !important;
}
.input-field {
  border-radius: 999px !important;
  border: 1px solid var(--gc-hair) !important;
}
.input-field:focus {
  border-color: var(--gc-gold) !important;
  outline: none;
}

/* ---------------------------------------------------- 13. gallery modal -- */
.gallery-modal-overlay {
  background: rgba(6, 20, 14, 0.82) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gallery-modal-content {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(201, 165, 92, 0.3);
}
.gallery-modal-title {
  font-size: 1.5rem;
  color: var(--gc-ink);
}
.gallery-modal-close {
  border-radius: 50% !important;
  border: 1px solid var(--gc-hair) !important;
  transition: all 0.3s var(--gc-ease);
}
.gallery-modal-close:hover {
  background: var(--gc-ink) !important;
  color: #fff !important;
  transform: rotate(90deg);
}

/* -------------------------------------------------------- 14. sections --- */
.amenities-section {
  background: linear-gradient(180deg, var(--gc-ivory), #f2efe6) !important;
}
.gallery-section,
.process-section,
.faq-section,
.location-section {
  background: var(--gc-ivory);
}
.gallery-section::before,
.process-section::before,
.faq-section::before,
.location-section::before {
  opacity: 0.5;
}

/* ------------------------------------------------------ 15. responsive --- */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }
  .hero-title.hero-title {
    font-size: clamp(2.1rem, 10vw, 3rem);
    max-width: 100%;
  }
  .hero-features-grid {
    gap: 8px !important;
  }
  .hero-feature-text {
    font-size: 0.74rem;
  }
  .hero-cta-primary.hero-cta-primary {
    padding: 14px 26px;
  }
  .pricing-row {
    padding: 15px 16px !important;
  }
  .plot-price {
    font-size: 1.1rem !important;
  }
  .plot-type {
    font-size: 0.58rem;
  }
  .gc-top {
    right: 16px;
    bottom: 88px;
    width: 42px;
    height: 42px;
  }
  .footer {
    padding-top: 54px;
  }
  .seo-section-title {
    padding-left: 15px;
  }
}

/* ------------------------------------ 16. motion / print considerations --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .gc-r {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-bg-element-1,
  .hero-bg-element-2 {
    animation: none !important;
  }
}

@media print {
  .gc-progress,
  .gc-top,
  .gc-loader,
  .chatbot-toggle-button,
  .chatbot-window,
  .hero-social-desktop,
  .hero-scroll-indicator {
    display: none !important;
  }
  .footer {
    background: #fff;
    color: #000;
  }
  .gc-r {
    opacity: 1 !important;
    transform: none !important;
  }
}
