/* ================= */
/* BASE & THEME     */
/* ================= */

:root {
  color-scheme: dark;

  /* Backgrounds tuned for a calmer, more architectural feel */
  --bg-dark: #050816;
  --bg-darker: #02010d;
  --bg-light: #f3f4f6;
  --bg-cream: #f5f5f4;

  --surface-dark: #0b1120;
  --surface: #ffffff;

  /* Accent now a bit more muted and sophisticated */
  --accent: #16a34a;
  --accent-strong: #15803d;
  --accent-soft: rgba(22, 163, 74, 0.16);

  --text-light: #f9fafb;
  --text-muted-light: #cbd5f5;
  --text: #111827;
  --muted: #6b7280;

  --border-subtle: rgba(148, 163, 184, 0.45);

  --radius-lg: 1.8rem;
  --radius-md: 1.2rem;
  --radius-pill: 999px;

  --shadow-soft: 0 26px 60px rgba(15, 23, 42, 0.25);

  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;

  --header-height: 4.5rem;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.section--dark {
  background:
    radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.2) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(15, 118, 110, 0.18) 0, transparent 55%),
    var(--bg-dark);
  color: var(--text-light);
}

.section--light {
  background: var(--bg-light);
  color: var(--text);
}

.section--cream {
  background: var(--bg-cream);
  color: var(--text);
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto var(--space-2xl);
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

/* ================= */
/* HEADER & NAV     */
/* ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(2, 6, 23, 0.9);
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--text-light);
}

.logo-icon {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.95rem;
  background: radial-gradient(circle at 10% 0, #22c55e, #16a34a);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.65), var(--shadow-soft);
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.site-nav ul {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  text-decoration: none;
  color: rgba(226, 232, 240, 0.92);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.site-nav .btn.btn-small {
  color: #ffffff;
}

/* Nav toggle */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* ================= */
/* BUTTONS           */
/* ================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(34, 197, 94, 0.45);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

.btn-small {
  padding: 0.7rem 1.2rem;
  font-size: 0.82rem;
}

.full-width {
  width: 100%;
}

/* ================= */
/* INTRO GATE        */
/* ================= */

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  background:
    radial-gradient(circle at 15% 0, #22c55e 0, transparent 40%),
    radial-gradient(circle at 80% 0, #22d3ee 0, transparent 40%),
    radial-gradient(circle at 40% 100%, #16a34a 0, transparent 46%),
    #020617;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-gate--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.intro-gate--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

.intro-gate__inner {
  text-align: center;
  max-width: 580px;
  padding: 2.2rem;
}

.intro-gate__label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  color: #bbf7d0;
  margin-bottom: var(--space-sm);
}

.intro-gate__title {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  margin-bottom: var(--space-lg);
}

/* ================= */
/* PORTAL GRID       */
/* ================= */

.portal {
  position: relative;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-lg);
}

.portal-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.portal-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  transition: transform 0.6s ease;
}

.portal-card__img--studio {
  background-image: url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.portal-card__img--metro {
  background-image: url("https://images.pexels.com/photos/373912/pexels-photo-373912.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.portal-card__img--industrial {
  background-image: url("https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.portal-card__img--sustain {
  background-image: url("https://images.pexels.com/photos/439416/pexels-photo-439416.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.portal-card__img--experience {
  background-image: url("https://images.pexels.com/photos/1005644/pexels-photo-1005644.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.portal-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92),
    rgba(15, 23, 42, 0.2)
  );
}

.portal-card__content {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  color: var(--text-light);
}

.portal-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #bbf7d0;
  margin-bottom: 0.5rem;
}

.portal-card__content h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.portal-link {
  border: none;
  background: none;
  color: #bbf7d0;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  cursor: pointer;
}

.portal-link span {
  transition: transform 0.2s ease;
}

.portal-card:hover .portal-link span {
  transform: translateX(2px);
}

.portal-card:hover .portal-card__img {
  transform: scale(1.05);
}

/* Scroll down indicator */

.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  border: none;
  background: none;
  color: var(--text-muted-light);
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.scroll-down__line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #e5e7eb, transparent);
  position: relative;
  overflow: hidden;
}

.scroll-down__line::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: #22c55e;
  animation: scrollDot 1.4s linear infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}

/* ================= */
/* FEATURE BLOCKS    */
/* ================= */

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: var(--space-2xl);
  align-items: center;
}

.feature-layout--reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
}

.feature-copy h2 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.feature-copy p {
  color: #374151;
  margin: 0 0 0.7rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: var(--space-sm);
}

.eyebrow--green {
  color: var(--accent-strong);
}

/* Feature media layered images */

.feature-media {
  position: relative;
  height: 320px;
}

.feature-media__back,
.feature-media__front {
  position: absolute;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-soft);
  will-change: transform;
}

.feature-media__back {
  inset: 10% 18% 0 0;
  transform: translateY(10px);
}

.feature-media__front {
  inset: 0 0 18% 18%;
  transform: translateY(-6px);
}

/* Sustainable imagery */
.feature-media__back {
  background-image: url("https://images.pexels.com/photos/439416/pexels-photo-439416.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.feature-media__front {
  background-image: url("https://images.pexels.com/photos/373912/pexels-photo-373912.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* Studio variant */
.feature-media__back--studio {
  background-image: url("https://images.pexels.com/photos/37347/office-freelancer-computer-business-37347.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.feature-media__front--studio {
  background-image: url("https://images.pexels.com/photos/380769/pexels-photo-380769.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* Industrial variant */
.feature-media__back--industrial {
  background-image: url("https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.feature-media__front--industrial {
  background-image: url("https://images.pexels.com/photos/236698/pexels-photo-236698.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* Hospitality variant */
.feature-media__back--hospitality {
  background-image: url("https://images.pexels.com/photos/261105/pexels-photo-261105.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.feature-media__front--hospitality {
  background-image: url("https://images.pexels.com/photos/221457/pexels-photo-221457.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* Mini timeline inside studio block */

.feature-media--timeline {
  height: auto;
  padding-bottom: 4.5rem;
}

.mini-timeline {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.9rem 1.3rem;
  list-style: none;
  background: rgba(15, 23, 42, 0.94);
  color: var(--text-light);
  border-radius: 1.3rem;
  font-size: 0.78rem;
  max-width: 260px;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.mini-timeline li + li {
  margin-top: 0.25rem;
}

.mini-timeline span {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-right: 0.4rem;
  color: #bbf7d0;
}

/* Checklist */

.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
}

.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.75rem;
  color: var(--accent-strong);
}

/* ================= */
/* REGIONS           */
/* ================= */

.feature--regions {
  color: var(--text-light);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.region-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  box-shadow: var(--shadow-soft);
}

.region-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  transition: transform 0.6s ease;
}

.region-card__img--coastal {
  background-image: url("https://images.pexels.com/photos/373912/pexels-photo-373912.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.region-card__img--plateau {
  background-image: url("https://images.pexels.com/photos/439416/pexels-photo-439416.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.region-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.3)
  );
}

.region-card__body {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
}

.region-card__body h3 {
  margin: 0 0 0.4rem;
}

.region-card__body p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.region-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

.region-card__body li + li {
  margin-top: 0.2rem;
}

.region-card:hover .region-card__img {
  transform: scale(1.06);
}

/* ================= */
/* STORIES & NEWS    */
/* ================= */

.stories {
  color: var(--text-light);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.story-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(55, 65, 81, 0.9);
  box-shadow: var(--shadow-soft);
}

.story-card__img {
  height: 170px;
  background-size: cover;
  background-position: center;
}

/* story images */
.story-card__img--yard {
  background-image: url("https://images.pexels.com/photos/585419/pexels-photo-585419.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.story-card__img--daylight {
  background-image: url("https://images.pexels.com/photos/439416/pexels-photo-439416.jpeg?auto=compress&cs=tinysrgb&w=1200");
}
.story-card__img--review {
  background-image: url("https://images.pexels.com/photos/323780/pexels-photo-323780.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.story-card__body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.story-meta {
  font-size: 0.78rem;
  color: #a5b4fc;
  margin-bottom: 0.3rem;
}

.story-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.story-card__body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted-light);
}

/* Newsletter block */

.newsletter {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(circle at 0 0, #22c55e 0, transparent 45%), #020617;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  align-items: center;
}

.newsletter__copy h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.newsletter__copy p {
  margin: 0;
  color: var(--text-muted-light);
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.newsletter__form input {
  min-width: 220px;
}

/* ================= */
/* CONTACT           */
/* ================= */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  gap: var(--space-2xl);
  align-items: flex-start;
}

.contact-intro h2 {
  margin-top: 0;
}

.contact-intro p {
  color: var(--muted);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  color: var(--muted);
}

.contact-details li + li {
  margin-top: 0.3rem;
}

.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: var(--space-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.field {
  margin-bottom: var(--space-md);
}

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text);
  padding: 0.6rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.45);
}

textarea {
  resize: vertical;
}

.form-note {
  margin-top: 0.4rem;
  color: var(--muted);
  font-size: 0.76rem;
}

/* ================= */
/* FOOTER            */
/* ================= */

.site-footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.4rem 0 1.8rem;
  background: var(--bg-darker);
  color: #e5e7eb;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.8rem;
}

.footer-small {
  opacity: 0.9;
}

/* ================= */
/* REVEAL ON SCROLL  */
/* ================= */

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= */
/* RESPONSIVE        */
/* ================= */

@media (max-width: 1100px) {
  .portal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-layout,
  .feature-layout--reverse,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-media {
    margin-top: 1.5rem;
  }

  .regions-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 1rem auto 1rem;
    border-radius: var(--radius-lg);
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(55, 65, 81, 0.9);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: 0.5rem;
  }

  .site-nav a {
    padding: 0.45rem 0.5rem;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .portal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stories-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .portal-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ============================ */
/*  PROJECTS PORTAL FULL BLOCK  */
/* ============================ */

.projects-portal {
  overflow: hidden;
}

/* giant faint word behind */
.projects-portal__bg-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(4.5rem, 13vw, 8.5rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(209, 213, 219, 0.35);
  pointer-events: none;
  user-select: none;
}

/* the 5-column grid */
.projects-portal__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.8rem;
  align-items: flex-start;
}

/* each column */
.projects-portal__item {
  text-align: center;
  position: relative;
}

/* top sketch style image */
.projects-portal__image {
  height: 120px;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  margin-bottom: 1.4rem;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.95;
  transition:
    transform 0.45s ease,
    filter 0.45s ease,
    opacity 0.45s ease;
}

/* replace these with your own sketches if you want */
.projects-portal__image--residential {
  background-image: url("assets/images/projects/green-alpha-hero.jpg");
}
.projects-portal__image--commercial {
  background-image: url("assets/images/projects/landmark-v/landmark-v-hero.jpg");
}
.projects-portal__image--industrial {
  background-image: url("assets/images/projects/easy-town/easy-town-hero.jpg");
}
.projects-portal__image--sustainable {
  background-image: url("assets/images/projects/logos/tripura-inland.png");
}
.projects-portal__image--hospitality {
  background-image: url("assets/images/hero/tripura-archive-banner-02.jpg");
}

/* pastel circle with label */
.projects-portal__circle {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  margin: 0 auto 0.9rem;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.12rem;
  color: #27272a;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.25);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.projects-portal__circle h3 {
  margin: 0;
  font-weight: 500;
}

/* color palette similar to original */

.projects-portal__circle::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 0%, rgba(248, 250, 252, 0.3), transparent 55%),
              radial-gradient(circle at 80% 140%, rgba(251, 191, 36, 0.28), transparent 60%);
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  pointer-events: none;
  z-index: -1;
}

.projects-portal__item:hover .projects-portal__circle::after {
  opacity: 1;
  transform: scale(1.03);
}
.projects-portal__circle--rose {
  background: #f4c6c6;
}
.projects-portal__circle--sand {
  background: #ddd1aa;
}
.projects-portal__circle--olive {
  background: #c2d1a4;
}
.projects-portal__circle--amber {
  background: #f1d39a;
}
.projects-portal__circle--blue {
  background: #c2d9f1;
}

/* EXPLORE text + small arrow/line */
.projects-portal__link {
  border: none;
  background: none;
  padding: 0;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111827;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.projects-portal__arrow {
  width: 1px;
  height: 22px;
  background: #111827;
  position: relative;
  overflow: hidden;
}

/* little falling dot inside the arrow line */
.projects-portal__arrow::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: #111827;
  animation: arrowDrop 1.4s linear infinite;
}

/* hover state combining image + circle + link */
.projects-portal__item:hover .projects-portal__image {
  transform: translateY(-6px);
  opacity: 1;
  filter: grayscale(0.1) contrast(1.1);
}

.projects-portal__item:hover .projects-portal__circle {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.38);
}

.projects-portal__item:hover .projects-portal__link {
  transform: translateY(-2px);
}

/* scroll down indicator under the strip */
.projects-portal__scroll {
  border: none;
  background: none;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  color: #111827;
}

.projects-portal__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #111827, transparent);
  position: relative;
  overflow: hidden;
}

.projects-portal__scroll-line::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: #111827;
  animation: arrowDrop 1.4s linear infinite;
}

/* falling dot animation reused */
@keyframes arrowDrop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}




/* ================= */
/* CHATBOT WIDGET    */
/* ================= */

#tc-chatbot {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  font-family: var(--font-sans);
}

#tc-chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 26px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

#tc-chat-toggle:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.4);
  background: var(--accent-strong);
}

#tc-chat-window {
  width: 340px;
  max-width: 92vw;
  height: 420px;
  background: #020617;
  color: var(--text-light);
  border-radius: 1.2rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

#tc-chat-header {
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, var(--accent-strong), #0f172a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
}

#tc-chat-header span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

#tc-chat-header button {
  border: none;
  background: none;
  color: #e5e7eb;
  font-size: 1.3rem;
  cursor: pointer;
}

#tc-chat-messages {
  flex: 1;
  padding: 0.85rem 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  overflow-y: auto;
  background: radial-gradient(circle at 0 0, rgba(15, 118, 110, 0.25) 0, transparent 55%), #020617;
}

.tc-msg {
  max-width: 82%;
  padding: 0.6rem 0.9rem;
  border-radius: 0.9rem;
  font-size: 0.82rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.tc-msg.tc-user {
  align-self: flex-end;
  background: var(--accent);
  color: #ffffff;
  border-bottom-right-radius: 0.2rem;
}

.tc-msg.tc-bot {
  align-self: flex-start;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-bottom-left-radius: 0.2rem;
}

.tc-meta {
  font-size: 0.72rem;
  opacity: 0.7;
  margin-top: 0.15rem;
}

#tc-chat-input-area {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.7rem 0.7rem;
  background: #020617;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
}

#tc-chat-input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  padding: 0.55rem 0.9rem;
  font-size: 0.82rem;
  background: #020617;
  color: var(--text-light);
}

#tc-chat-input::placeholder {
  color: rgba(148, 163, 184, 0.9);
}

#tc-chat-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

#tc-chat-send {
  border-radius: 999px;
  border: none;
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
  cursor: pointer;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.4);
}

#tc-chat-send:hover {
  background: var(--accent-strong);
}

/* Small screens: shift up from very bottom edge */
@media (max-width: 600px) {
  #tc-chatbot {
    bottom: 18px;
    right: 18px;
  }

  #tc-chat-window {
    height: 380px;
  }
}


/* Chat header layout with avatar and titles */
.tc-chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tc-chat-title {
  display: flex;
  flex-direction: column;
}

.tc-chat-title-main {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tc-chat-title-sub {
  font-size: 0.72rem;
  opacity: 0.8;
}

/* Animated bot avatar inside header */
.tc-bot-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: tcBotIdle 4s ease-in-out infinite;
}

.tc-bot-face {
  position: relative;
  width: 20px;
  height: 16px;
}

.tc-bot-eye {
  position: absolute;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #e5e7eb;
  animation: tcBotBlink 6s ease-in-out infinite;
}

.tc-bot-eye-left {
  left: 3px;
}

.tc-bot-eye-right {
  right: 3px;
}

.tc-bot-mouth {
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* Mood variations */
.tc-mood-happy .tc-bot-avatar,
.tc-bot-avatar.tc-mood-happy {
  background: radial-gradient(circle at 30% 0, #4ade80, #15803d);
}

.tc-mood-happy .tc-bot-mouth,
.tc-bot-avatar.tc-mood-happy .tc-bot-mouth {
  height: 3px;
  bottom: 1px;
  border-radius: 999px;
}

.tc-mood-think .tc-bot-avatar,
.tc-bot-avatar.tc-mood-think {
  background: radial-gradient(circle at 10% 0, #38bdf8, #0f172a);
}

.tc-mood-think .tc-bot-mouth,
.tc-bot-avatar.tc-mood-think .tc-bot-mouth {
  width: 8px;
  left: 6px;
  right: auto;
}

.tc-mood-concerned .tc-bot-avatar,
.tc-bot-avatar.tc-mood-concerned {
  background: radial-gradient(circle at 10% 0, #fb7185, #0f172a);
}

.tc-mood-concerned .tc-bot-mouth,
.tc-bot-avatar.tc-mood-concerned .tc-bot-mouth {
  bottom: 4px;
  height: 2px;
}

/* Idle bob + blinking */
@keyframes tcBotIdle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes tcBotBlink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }
  96% {
    transform: scaleY(0.2);
  }
}


/* Chat toggle with gif mini bot */
.tc-bot-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020617;
}

.tc-bot-toggle img {
  width: 120%;
  height: auto;
}

/* Chat header layout with avatar and titles */
.tc-chat-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tc-chat-title {
  display: flex;
  flex-direction: column;
}

.tc-chat-title-main {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tc-chat-title-sub {
  font-size: 0.72rem;
  opacity: 0.8;
}

/* Gif avatar container with mood-based glow */
.tc-bot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  padding: 2px;
  background: radial-gradient(circle at 30% 0, #64748b, #020617);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
  animation: tcBotIdle 4s ease-in-out infinite;
}

.tc-bot-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  display: block;
}

/* Mood colors */
.tc-bot-avatar.tc-mood-happy {
  background: radial-gradient(circle at 30% 0, #4ade80, #15803d);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.8), 0 10px 26px rgba(22, 163, 74, 0.6);
}

.tc-bot-avatar.tc-mood-think {
  background: radial-gradient(circle at 30% 0, #38bdf8, #0f172a);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7), 0 10px 26px rgba(37, 99, 235, 0.6);
}

.tc-bot-avatar.tc-mood-concerned {
  background: radial-gradient(circle at 30% 0, #fb7185, #0f172a);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.8), 0 10px 26px rgba(248, 113, 113, 0.55);
}

/* Idle bob animation */
@keyframes tcBotIdle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}


/* FULLSCREEN VIDEO LANDING */
.landing-video-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .8s ease-in-out;
}

.landing-video-gate--hidden {
  opacity: 0;
  pointer-events: none;
}

.landing-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.90);
}

.landing-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("assets/images/hero/tripura-landing-hero.png") center/cover no-repeat;
  filter: brightness(0.90);
}

.landing-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.landing-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #f9fafb;
  padding: 1rem;
}

.landing-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.landing-sub {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* REALISTIC BRICK BUTTON ON LANDING */
.brick-btn {
  position: relative;
  padding: 1rem 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fefce8;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.85);
  cursor: pointer;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.25), transparent 35%, rgba(0, 0, 0, 0.3)),
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.26) 0px,
      rgba(0, 0, 0, 0.26) 1px,
      transparent 1px,
      transparent 13px
    ),
    repeating-linear-gradient(
      to right,
      rgba(0, 0, 0, 0.2) 0px,
      rgba(0, 0, 0, 0.2) 1px,
      transparent 1px,
      transparent 26px
    ),
    linear-gradient(135deg, #b45309, #92400e, #9a3412);
  background-blend-mode: soft-light, normal, normal, normal;
  box-shadow:
    0 14px 0 #4a1d09,
    0 18px 32px rgba(0, 0, 0, 0.85);
  overflow: hidden;
}

.brick-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(248, 250, 252, 0.14),
    inset 0 4px 8px rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.brick-btn::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 160%;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.4), transparent 65%);
  opacity: 0;
  transform: translateX(-40%);
  transition: opacity 0.45s ease, transform 0.8s ease;
  pointer-events: none;
}

.brick-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 0 #4a1d09,
    0 26px 44px rgba(0, 0, 0, 0.98);
}

.brick-btn:hover::after {
  opacity: 0.9;
  transform: translateX(120%);
}

.brick-btn:active {
  transform: translateY(1px);
  box-shadow:
    0 8px 0 #4a1d09,
    0 12px 22px rgba(0, 0, 0, 0.8);
}

/* Landing logo wrapper */
.landing-logo-box {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

/* Landing logo image */
.landing-logo {
  width: 260px; /* slightly large, adjust if needed */
  max-width: 60vw;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
  opacity: 0.96;
}


/* Tripura portfolio list (homepage) */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}
.portfolio-card{
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.02);
  border-radius:14px;
  padding:14px 14px 10px;
}
.portfolio-card h3{
  margin:0 0 10px;
  font-size:1.05rem;
}
.portfolio-card ul{
  margin:0;
  padding-left:18px;
  line-height:1.6;
}
.portfolio-card li{
  margin:0 0 6px;
}


.captcha-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.captcha-question {
  font-size: 0.9rem;
  opacity: 0.9;
}
.captcha-inline input[type="text"] {
  max-width: 140px;
}
.form-hint--error {
  color: #f97373;
  font-size: 0.8rem;
}


/* Perfectly aligned captcha row */
.form-row--captcha label {
  display: block;
  margin-bottom: 6px;
}

.captcha-inline {
  display: grid;
  grid-template-columns: auto 140px;
  align-items: center;
  gap: 12px;
}

.captcha-question {
  font-weight: 500;
  white-space: nowrap;
}

.captcha-inline input[type="text"] {
  width: 100%;
  height: 42px;
  padding: 8px 10px;
  border-radius: 6px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .captcha-inline {
    grid-template-columns: 1fr;
  }
}

/* Tripura main logo */
.site-logo{
  height:48px;
  width:auto;
  display:block;
}
@media (max-width:768px){
  .site-logo{height:40px;}
}





.project-logo-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(0,0,0,0.08);
  border-radius:12px;
  padding:6px 10px;
  box-shadow:0 8px 18px rgba(0,0,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  max-width: 210px;
}
.project-logo-badge img{
  height:34px;
  width:auto;
  display:block;
}

/* Inline project logo in headings */
.project-logo-inline{
  height:40px;
  width:auto;
  vertical-align:middle;
  margin-right:10px;
}
@media (max-width:768px){
  .project-logo-inline{height:32px;}
  .project-logo-badge img{height:30px;}
}

/* Project logos inside home circles */
.circle-logo{
  max-width:90px;
  height:auto;
  margin:0 auto 12px;
  display:block;
}

/* Project page layouts */
.section--hero-project{
  padding-top: 6rem;
}
.project-hero{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1fr);
  gap:2.5rem;
  align-items:center;
}
.project-hero__stats{
  margin:1rem 0 1.5rem;
}
.project-hero__stats li{
  margin-bottom:0.35rem;
}
.project-hero__logo{
  text-align:center;
}
.project-hero-logo{
  max-width:420px;
  width:100%;
  height:auto;
  filter:drop-shadow(0 14px 35px rgba(0,0,0,0.18));
}
.feature-list{
  list-style:none;
  padding:0;
}
.feature-list li{
  margin-bottom:0.35rem;
}
.feature-list--columns{
  columns:2;
  column-gap:1.75rem;
}
.benefits-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
}
.benefit-card{
  padding:1.25rem 1.5rem;
  background:#fff;
  border-radius:1.25rem;
  box-shadow:0 18px 40px rgba(0,0,0,0.05);
}
.specs-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1fr);
  gap:2.5rem;
}
.location-grid .location-columns{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.75rem;
  margin-top:1.5rem;
}
.cards--plans{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
}
.card--plan{
  padding:1.5rem;
  border-radius:1.25rem;
  background:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,0.05);
}
.brochure-embed{
  margin-top:1.75rem;
  border-radius:1.25rem;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(0,0,0,0.12);
}
@media (max-width: 768px){
  .project-hero{
    grid-template-columns:1fr;
  }
  .feature-list--columns{
    columns:1;
  }
  .specs-grid{
    grid-template-columns:1fr;
  }
}


/* ============================= */
/* HOME: METRICS / GALLERY / BLOGS / TESTIMONIALS – REFINED THEME */
/* ============================= */

/* Metrics strip – light cards on soft pattern */
.section--metrics{
  background:radial-gradient(circle at top, rgba(148,163,184,0.16), transparent),
             linear-gradient(180deg, #f8fafc, #eef2ff);
  padding-top:3.5rem;
  padding-bottom:3.5rem;
}
.metrics{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:1.5rem;
  align-items:stretch;
}
.metrics__item{
  text-align:center;
  padding:1.3rem 1.1rem;
  border-radius:1rem;
  background:#ffffff;
  box-shadow:0 18px 45px rgba(15,23,42,0.08);
  border:1px solid rgba(148,163,184,0.35);
  transition:transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.metrics__icon{
  width:3.1rem;
  height:3.1rem;
  margin-inline:auto;
  margin-bottom:0.75rem;
  border-radius:999px;
  border:1px solid rgba(74,222,128,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.4rem;
  background:radial-gradient(circle at 30% 0%, rgba(74,222,128,0.2), transparent);
}
.metrics__icon--home::before{content:"🏠";}
.metrics__icon--hands::before{content:"🤝";}
.metrics__icon--area::before{content:"📐";}
.metrics__icon--towers::before{content:"🏗️";}
.metrics__icon--smile::before{content:"😊";}
.metrics__number{
  font-size:1.4rem;
  font-weight:700;
  color:#0f172a;
  margin:0.25rem 0;
}
.metrics__label{
  margin:0;
  font-size:0.8rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#64748b;
}
.metrics__item:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 65px rgba(15,23,42,0.16);
  border-color:rgba(34,197,94,0.7);
}

/* Projects ribbon – deep green band with hover zoom cards */
.section--projects-ribbon{
  background:radial-gradient(circle at top, rgba(21,128,61,0.34), transparent),
             linear-gradient(180deg,#020617,#041318);
}
.section--projects-ribbon .section-header h2{
  color:var(--text-light);
}
.projects-ribbon__tabs{
  display:inline-flex;
  gap:0.75rem;
  padding:0.35rem;
  border-radius:999px;
  background:rgba(15,23,42,0.85);
  margin-bottom:1.75rem;
}
.projects-ribbon__tabs button{
  padding:0.35rem 0.9rem;
  border-radius:999px;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:rgba(226,232,240,0.9);
  background:transparent;
  border:none;
  cursor:pointer;
  font-weight:600;
}
.projects-ribbon__tabs button.is-active{
  box-shadow:0 10px 30px rgba(0,0,0,0.28);
}
.projects-ribbon__tabs button[data-filter="ongoing"].is-active{
  background:rgba(34,197,94,0.95);
  color:#052e16;
}
.projects-ribbon__tabs button[data-filter="completed"].is-active{
  background:rgba(250,204,21,0.95);
  color:#422006;
}
.projects-ribbon__tabs button[data-filter="upcoming"].is-active{
  background:rgba(59,130,246,0.95);
  color:#0b1020;
}
.projects-ribbon__strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.75rem;
}
.projects-ribbon__card{
  position:relative;
  display:block;
  text-decoration:none;
  color:inherit;
  background:rgba(15,23,42,0.95);
  border-radius:1.2rem;
  overflow:hidden;
  box-shadow:0 22px 48px rgba(0,0,0,0.45);
  border:1px solid rgba(148,163,184,0.4);
  transition:transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.projects-ribbon__card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform 260ms ease;
}
.projects-ribbon__card h3{
  margin:0.85rem 1.1rem 0.2rem;
  font-size:1.05rem;
  color:var(--text-light);
}
.projects-ribbon__card p{
  margin:0 1.1rem 1.1rem;
  font-size:0.9rem;
  color:var(--text-muted);
}
.projects-ribbon__card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 60px rgba(0,0,0,0.6);
  border-color:var(--accent-soft);
}
.projects-ribbon__card:hover img{
  transform:scale(1.05);
}

/* Blogs – soft cards with subtle hover */
.blogs-strip{
  background:linear-gradient(180deg,#f9fafb,#eef2ff);
}
.blogs-strip .section-header h2{
  max-width:32rem;
}
.blogs-strip__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.6rem;
}
.blog-card{
  position:relative;
  background:#ffffff;
  border-radius:1rem;
  padding:1.3rem 1.35rem 1.4rem;
  box-shadow:0 16px 40px rgba(15,23,42,0.08);
  border:1px solid rgba(203,213,225,0.85);
  transition:transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.blog-card__tag{
  display:inline-flex;
  padding:0.15rem 0.65rem;
  border-radius:999px;
  font-size:0.7rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  background:rgba(34,197,94,0.08);
  color:#15803d;
  margin-bottom:0.55rem;
}
.blog-card h3{
  font-size:1.02rem;
  margin:0.1rem 0 0.45rem;
  color:#0f172a;
}
.blog-card p{
  margin:0 0 0.85rem;
  font-size:0.9rem;
  color:#4b5563;
}
.blog-card__link{
  font-size:0.85rem;
  font-weight:600;
  text-decoration:none;
  color:var(--accent);
}
.blog-card__link:hover{
  text-decoration:underline;
}
.blog-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 50px rgba(15,23,42,0.12);
  border-color:rgba(34,197,94,0.55);
}

/* Testimonials – elegant dark band with glowing cards */
.section--testimonials{
  background:radial-gradient(circle at top, rgba(21,128,61,0.32), transparent),
             linear-gradient(180deg,#020617,#02010d);
}
.testimonials__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.6rem;
}
.testimonial-card{
  position:relative;
  padding:1.7rem 1.7rem 1.5rem;
  border-radius:1.2rem;
  background:radial-gradient(circle at top left, rgba(34,197,94,0.18), rgba(15,23,42,0.98));
  color:var(--text-soft);
  box-shadow:0 24px 60px rgba(0,0,0,0.65);
  border:1px solid rgba(148,163,184,0.55);
  overflow:hidden;
  transition:transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.testimonial-card__quote{
  position:absolute;
  top:0.35rem;
  left:0.9rem;
  font-size:3rem;
  line-height:1;
  color:rgba(190,242,100,0.6);
}
.testimonial-card blockquote{
  margin:0.6rem 0 1.1rem;
  font-size:0.95rem;
  color:var(--text-muted-light);
}
.testimonial-card__name{
  display:block;
  font-weight:600;
  color:var(--text-light);
}
.testimonial-card__meta{
  display:block;
  font-size:0.8rem;
  color:rgba(226,232,240,0.9);
}
.testimonial-card:hover{
  transform:translateY(-6px) scale(1.01);
  box-shadow:0 30px 70px rgba(0,0,0,0.8);
  border-color:rgba(190,242,100,0.85);
}

/* Responsive adjustments */
@media (max-width: 1024px){
  .metrics{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .projects-ribbon__strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 768px){
  .metrics{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .projects-ribbon__strip{
    grid-template-columns:1fr;
  }
  .blogs-strip__grid,
  .testimonials__grid{
    grid-template-columns:1fr;
  }
}


/* Snapshot tabs – stronger active state */
.projects-ribbon__tabs button.is-active{
  background:var(--accent-soft);
  color:#04130c;
  box-shadow:0 0 0 1px rgba(15,23,42,0.35);
}
.projects-ribbon__tabs button:not(.is-active):hover{
  color:#e5e7eb;
}


/* Portfolio (Public Listings) section – improve contrast */
#regions-section{
  background:
    radial-gradient(circle at 0 0, rgba(94,234,212,0.12) 0, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(52,211,153,0.12) 0, transparent 55%),
    var(--bg-darker);
}

#regions-section .feature-copy h2,
#regions-section .feature-copy p,
#regions-section .feature-copy h3{
  color:var(--text-light);
}

#regions-section .eyebrow{
  color:var(--accent-soft);
}

#regions-section .portfolio-grid{
  margin-top:1.1rem;
}

#regions-section .portfolio-card{
  background:rgba(15,23,42,0.9);
  border-radius:1rem;
  border:1px solid rgba(148,163,184,0.5);
  box-shadow:0 24px 60px rgba(0,0,0,0.65);
}

#regions-section .portfolio-card h3{
  margin-top:0;
  margin-bottom:0.45rem;
  font-size:0.98rem;
  color:#e5e7eb;
}

#regions-section .portfolio-card ul{
  padding-left:1.1rem;
  margin:0;
}

#regions-section .portfolio-card li{
  font-size:0.9rem;
  color:rgba(226,232,240,0.92);
}

#regions-section .portfolio-card strong{
  color:#f9fafb;
}





.page-green-alpha .site-nav a,
.page-landmark-v .site-nav a,
.page-easy-town .site-nav a{
  color:rgba(226,232,240,0.92);
}
.page-green-alpha .site-nav a:hover,
.page-landmark-v .site-nav a:hover,
.page-easy-town .site-nav a:hover{
  color:#ffffff;
}


/* Unified dark sections for project pages (use Location Advantage styling) */
.page-green-alpha .section--dark,
.page-green-alpha .section--location-advantage,
.page-landmark-v .section--dark,
.page-easy-town .section--dark{
  background:
    radial-gradient(circle at 18% 10%, rgba(34,197,94,0.20), transparent 55%),
    radial-gradient(circle at 85% 35%, rgba(94,234,212,0.14), transparent 60%),
    linear-gradient(180deg,#0b1220,#020617);
  color:#f9fafc;
}

.page-green-alpha .section--dark h2,
.page-green-alpha .section--location-advantage h2,
.page-landmark-v .section--dark h2,
.page-easy-town .section--dark h2,
.page-green-alpha .section--dark h3,
.page-green-alpha .section--location-advantage h3,
.page-landmark-v .section--dark h3,
.page-easy-town .section--dark h3{
  color:#f9fafc;
}

.page-green-alpha .section--dark p,
.page-green-alpha .section--dark li,
.page-green-alpha .section--location-advantage p,
.page-green-alpha .section--location-advantage li,
.page-landmark-v .section--dark p,
.page-landmark-v .section--dark li,
.page-easy-town .section--dark p,
.page-easy-town .section--dark li{
  color:rgba(226,232,240,0.9);
}


/* Project pages – helper layouts (Easy Town / Landmark-V) */
.actions{
  display:flex;
  gap:0.8rem;
  flex-wrap:wrap;
  margin-top:1.1rem;
}
.small{
  font-size:0.9rem;
  color:var(--text-muted);
  margin-top:0.9rem;
  line-height:1.45;
}
.note{
  color:var(--text-muted);
  margin:0.35rem 0 1.1rem;
}

/* Two-column image grid 
/* Green Alpha: refine dark sections (vertical living & unit plans) */
.section--location-advantage .benefit-card,
.section--location-advantage .card--plan{
  color:#0f172a;
}
.section--location-advantage .benefit-card h3,
.section--location-advantage .card--plan h3{
  color:#0f172a;
}
.page-green-alpha .section--location-advantage .muted{
  color:rgba(203,213,225,0.95);
}
.section--ga-vertical h2,
.section--ga-unitplans h2{
  letter-spacing:0.02em;
  margin-bottom:1.75rem;
}
.section--ga-unitplans .cards--plans{
  margin-top:1.25rem;
}
*/
.grid2{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem;
}
.grid2 img{
  width:100%;
  height:auto;
  border-radius:1.1rem;
  border:1px solid rgba(148,163,184,0.35);
  box-shadow:0 18px 50px rgba(0,0,0,0.35);
  transform:translateZ(0);
  transition:transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.grid2 img:hover{
  transform:scale(1.03);
  box-shadow:0 26px 70px rgba(0,0,0,0.5);
  filter:saturate(1.05);
}
@media (max-width: 820px){
  .grid2{ grid-template-columns:1fr; }
}

/* Two-list columns (highlights / amenities) */
.cols{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1.2rem 2rem;
  margin-top:1rem;
}
.cols ul{
  margin:0;
  padding-left:0;
  list-style:none;
}
.cols li{
  position:relative;
  padding-left:1.5rem;
  margin:0.55rem 0;
  color:var(--text);
  line-height:1.45;
}
.cols li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent-soft);
  font-weight:800;
}
@media (max-width: 820px){
  .cols{ grid-template-columns:1fr; }
}

/* ============================= */
/* BLOG PAGE LAYOUT              */
/* ============================= */

.hero--blog {
  background: radial-gradient(circle at top left, rgba(74, 222, 128, 0.16), transparent),
              radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.16), transparent),
              linear-gradient(135deg, #020617, #02010d);
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
}

.hero__inner--compact {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__visual--blog {
  display: flex;
  justify-content: flex-end;
}

.hero-blog-card {
  max-width: 22rem;
  padding: 1.5rem 1.7rem;
  border-radius: 1.5rem;
  background: radial-gradient(circle at top, rgba(96, 165, 250, 0.22), transparent),
              linear-gradient(145deg, #0b1120, #020617);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--text-light);
}

.hero-blog-card__eyebrow {
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin: 0 0 0.35rem;
}

.hero-blog-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.hero-blog-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.hero-blog-card__meta {
  font-size: 0.8rem;
  color: var(--muted-soft);
}

/* Blog main layout */

.blog-page {
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.blog-sidebar__header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.blog-sidebar__header p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-search {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: #f9fafb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  margin-bottom: 1.1rem;
}

.blog-search__icon {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.blog-search input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  font-size: 0.9rem;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-height: 32rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.blog-list-item {
  width: 100%;
  text-align: left;
  border-radius: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.8);
  background: #ffffff;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease, background 140ms ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.blog-list-item__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.blog-list-item__title {
  display: block;
  font-weight: 600;
  font-size: 0.96rem;
  color: #0f172a;
  margin-bottom: 0.15rem;
}

.blog-list-item__excerpt {
  display: block;
  font-size: 0.86rem;
  color: #6b7280;
  line-height: 1.35;
}

.blog-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  border-color: rgba(34, 197, 94, 0.55);
}

.blog-list-item.is-active {
  border-color: rgba(34, 197, 94, 0.75);
  background: linear-gradient(135deg, #ecfdf3, #f5fdf9);
}

.blog-empty {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Article panel */

.blog-article {
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.18);
  padding: 2rem 2.2rem;
}

.blog-article__header p {
  margin: 0;
}

.blog-article__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  margin-bottom: 0.45rem;
}

.blog-article__header h1 {
  margin: 0 0 0.45rem;
  font-size: 1.6rem;
}

.blog-article__meta {
  margin: 0 0 1.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-article__body p {
  margin: 0 0 0.95rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #111827;
}

.blog-article__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .hero__inner--compact {
    grid-template-columns: 1fr;
  }
  .hero__visual--blog {
    justify-content: flex-start;
    margin-top: 2rem;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-article {
    padding: 1.6rem 1.5rem;
  }
}

@media (max-width: 720px) {
  .blog-page {
    padding-top: 2.5rem;
  }
  .blog-list {
    max-height: none;
  }
}


.blog-article__image{
  margin:0 0 1.35rem;
  border-radius:1.4rem;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(15,23,42,0.35);
  border:1px solid rgba(148,163,184,0.45);
}
.blog-article__image img{
  width:100%;
  height:auto;
  display:block;
  transform:scale(1.01);
  transition:transform .45s ease, filter .45s ease;
}
.blog-article__image img:hover{
  transform:scale(1.04);
  filter:saturate(1.05);
}


.hero-blog-visual{
  position:relative;
  max-width:24rem;
}
.hero-blog-visual__image{
  border-radius:1.4rem;
  overflow:hidden;
  box-shadow:0 24px 60px rgba(15,23,42,0.55);
  transform:translateY(6px);
}
.hero-blog-visual__image img{
  width:100%;
  height:auto;
  display:block;
  transform:scale(1.02);
  transition:transform .45s ease, filter .45s ease;
}
.hero-blog-visual__image img:hover{
  transform:scale(1.05);
  filter:saturate(1.05);
}
.hero-blog-card{
  position:absolute;
  inset:auto 1rem 1rem auto;
}
@media (max-width: 1024px){
  .hero-blog-visual{
    max-width:100%;
  }
  .hero-blog-card{
    position:relative;
    inset:auto;
    margin-top:1.2rem;
  }
}


/* Home: apply Green Alpha location-advantage theme to Portfolio & Stories */
.section--portfolio,
.section--stories{
  color:#e5edf7;
}

.section--portfolio .eyebrow,
.section--stories .eyebrow{
  color:#a5f3fc;
}

.section--portfolio h2,
.section--stories h2{
  color:#f9fafb;
}

.section--portfolio p,
.section--stories p{
  color:rgba(226,232,240,0.92);
}

.section--portfolio .portfolio-card{
  background:rgba(15,23,42,0.85);
  border-radius:1.25rem;
  border:1px solid rgba(148,163,184,0.45);
  box-shadow:0 22px 60px rgba(15,23,42,0.55);
  backdrop-filter:blur(16px);
}

.section--portfolio .portfolio-card h3{
  color:#e5edf7;
}

.section--portfolio .portfolio-card li{
  color:rgba(226,232,240,0.96);
}

.section--stories .story-card{
  background:rgba(15,23,42,0.85);
  border-radius:1.5rem;
  border:1px solid rgba(148,163,184,0.5);
  box-shadow:0 20px 55px rgba(15,23,42,0.55);
}

.section--stories .story-card__quote{
  color:rgba(226,232,240,0.98);
}

.section--stories .story-card__name{
  color:#e5edf7;
}

.section--stories .story-card__meta{
  color:rgba(148,163,184,0.9);
}

/* newsletter block on dark */
.section--portfolio .newsletter{
  background:rgba(15,23,42,0.9);
  border-radius:1.5rem;
  border:1px solid rgba(148,163,184,0.6);
  box-shadow:0 22px 60px rgba(15,23,42,0.65);
}
.section--portfolio .newsletter__copy h3{
  color:#f9fafb;
}
.section--portfolio .newsletter__copy p{
  color:rgba(203,213,225,0.96);
}

/* ============================= */
/* MOBILE RESPONSIVE REFINEMENTS */
/* ============================= */

/* Global typography scaling for small screens */
@media (max-width: 640px) {
  body {
    font-size: 0.95rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }
}

/* Header / nav */
@media (max-width: 900px) {
  .site-header .container {
    gap: 1rem;
  }
  .site-nav {
    font-size: 0.9rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.75rem 0;
  }
  .site-header .container {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  .site-nav li {
    margin-right: 0.9rem;
  }
}

/* Intro hero video */
@media (max-width: 900px) {
  .landing-video-gate__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }
  .landing-video-gate__visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .landing-video-gate {
    padding: 1.5rem 0 2rem;
  }
  .landing-video-gate__headline {
    font-size: 1.6rem;
  }
}

/* Main hero on home */
@media (max-width: 900px) {
  .hero {
    padding-top: 5.25rem;
    padding-bottom: 2.5rem;
  }
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr);
  }
  .hero__visual {
    margin-top: 1.75rem;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: 1.7rem;
  }
  .hero__summary {
    font-size: 0.95rem;
  }
}

/* Projects strip on home */
@media (max-width: 1024px) {
  .projects-portal__grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 768px) {
  .projects-portal__grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 1.4rem;
  }
}

@media (max-width: 640px) {
  .projects-portal__grid {
    grid-template-columns: minmax(0,1fr);
  }
  .projects-portal__card {
    max-width: 22rem;
    margin: 0 auto;
  }
}

/* Snapshot tabs section */
@media (max-width: 900px) {
  .snapshots-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .snapshot-visual {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .snapshot-tabs {
    flex-wrap: wrap;
    gap: 0.4rem;
  }
}

/* Portfolio & Newsletter block (home) */
@media (max-width: 900px) {
  .feature-layout {
    grid-template-columns: minmax(0,1fr);
    gap: 1.8rem;
  }
  .newsletter {
    margin-top: 0.5rem;
  }
}

/* Stories carousel cards */
@media (max-width: 900px) {
  .stories-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .stories-grid .story-card {
    max-width: 24rem;
    margin: 0 auto;
  }
}

/* Contact + schedule a visit form */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0,1fr);
    gap: 2rem;
  }
  .contact-details {
    order: -1;
  }
}

@media (max-width: 640px) {
  .form-grid-two {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Blog layout */
@media (max-width: 900px) {
  .hero__inner--compact {
    grid-template-columns: minmax(0,1fr);
  }
  .blog-layout {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .blog-page {
    padding-top: 2.4rem;
  }
  .blog-article {
    padding: 1.5rem 1.2rem;
  }
}

/* Project pages: hero */
@media (max-width: 960px) {
  .project-hero {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }
  .project-hero__grid {
    grid-template-columns: minmax(0,1fr);
    gap: 1.75rem;
  }
  .project-hero__media {
    max-width: 28rem;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .project-hero__kpis {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* Project pages: shared sections */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .cards--plans {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .amenities-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .location-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Blog list scroll behavior: full width on mobile */
@media (max-width: 640px) {
  .blog-list {
    max-height: none;
  }
}

/* Header: show only site logo image */
.site-logo{
  display:flex;
  align-items:center;
}
.site-logo span{
  display:none !important;
}

/* Green Alpha: typography refinements for Vertical living & Unit plans */
.section--ga-vertical .benefit-card p,
.section--ga-unitplans .card--plan p{
  font-size:0.97rem;
  line-height:1.7;
}
.section--ga-vertical .benefit-card h3,
.section--ga-unitplans .card--plan h3{
  font-size:1.05rem;
  letter-spacing:0.01em;
}

/* Header nav: Projects dropdown */
.site-nav ul{
  list-style:none;
}

.site-nav li.has-subnav {
  position:relative;
}

.site-nav li.has-subnav > a::after{
  content:"▾";
  font-size:0.7rem;
  margin-left:0.35rem;
  opacity:0.85;
}

.site-nav li.has-subnav .subnav{
  position:absolute;
  top:100%;
  left:0;
  min-width:11rem;
  background:rgba(15,23,42,0.98);
  border-radius:0.75rem;
  padding:0.45rem 0.1rem;
  box-shadow:0 18px 40px rgba(15,23,42,0.65);
  border:1px solid rgba(148,163,184,0.5);
  display:none;
  z-index:40;
}

.site-nav li.has-subnav .subnav li a{
  display:block;
  padding:0.4rem 0.95rem;
  white-space:nowrap;
  font-size:0.9rem;
}

.site-nav li.has-subnav .subnav li a:hover{
  background:rgba(15,23,42,0.9);
}

/* Show dropdown on hover/focus for desktop */
@media (min-width: 721px){
  .site-nav li.has-subnav:hover .subnav,
  .site-nav li.has-subnav:focus-within .subnav{
    display:block;
  }
}

/* Mobile: make subnav inline & always visible when nav is open */
@media (max-width: 720px){
  .site-nav li.has-subnav{
    position:static;
  }
  .site-nav li.has-subnav .subnav{
    position:static;
    display:block;
    background:transparent;
    box-shadow:none;
    border:none;
    padding:0.1rem 0 0.2rem;
    margin-left:0.35rem;
  }
  .site-nav li.has-subnav .subnav li a{
    padding-left:0.9rem;
    font-size:0.9rem;
    opacity:0.9;
  }
}


/* Contact page layout tweaks */
.page-contact .section--contact-hero{
  background-image: radial-gradient(circle at top left, rgba(148, 163, 184, 0.12), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 50%);
}

.page-contact .hero-media-card--contact{
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(15,23,42,0.85), rgba(15,23,42,0.95));
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,0.75);
}

.page-contact .hero-media-card--contact img{
  width: 100%;
  height: auto;
  display: block;
}

.page-contact .hero-media-card__meta{
  padding: 0.85rem 1.2rem 1.1rem;
  border-top: 1px solid rgba(148,163,184,0.4);
}

.page-contact .hero-media-card__label{
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.page-contact .hero-media-card__caption{
  font-size: 0.9rem;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.section--contact-channels .contact-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.75rem;
  margin-top: 1.75rem;
}

@media (max-width: 960px){
  .section--contact-channels .contact-grid{
    grid-template-columns: 1fr;
  }
}

.contact-card{
  background: rgba(15,23,42,0.97);
  border-radius: 1.25rem;
  padding: 1.4rem 1.5rem 1.5rem;
  box-shadow: 0 22px 45px rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.55);
}

.contact-card h3{
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.contact-card p{
  font-size: 0.94rem;
  line-height: 1.7;
  opacity: 0.9;
}

.contact-card ul{
  margin: 0.85rem 0 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.contact-card__cta{
  font-size: 0.9rem;
  margin-top: 0.3rem;
  color: #e5e7eb;
}

.section--contact-map .location-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

@media (max-width: 960px){
  .section--contact-map .location-grid{
    grid-template-columns: 1fr;
  }
}

.location-map-card__frame{
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15,23,42,0.7);
  border: 1px solid rgba(148,163,184,0.5);
}

.location-map-card__frame iframe{
  width: 100%;
  height: 320px;
  border: 0;
}

.location-map-card__note{
  font-size: 0.8rem;
  margin-top: 0.4rem;
  opacity: 0.85;
}

.section--contact-form .contact-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 960px){
  .section--contact-form .contact-layout{
    grid-template-columns: 1fr;
  }
}

.contact-details p{
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-highlights{
  margin-top: 0.8rem;
  padding-left: 1.1rem;
  font-size: 0.9rem;
}

.contact-form-panel{
  background: #020617;
  border-radius: 1.5rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 22px 50px rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.55);
}

.contact-form .field label{
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form .field input,
.contact-form .field select,
.contact-form .field textarea{
  margin-top: 0.3rem;
}

.section--contact-form .btn-full{
  width: 100%;
}

.page-contact .site-footer{
  margin-top: 2.5rem;
}


/* Extra polish for Contact page */
.page-contact main{
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(74,222,128,0.06), transparent 55%),
    linear-gradient(to bottom, #020617 0%, #020617 42%, #020617 100%);
}

.section--contact-hero .project-hero__title{
  font-size: clamp(2.1rem, 3vw, 2.6rem);
}

.section--contact-hero .project-hero__summary{
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-media-card--contact{
  position: relative;
  overflow: hidden;
}

.hero-media-card--contact::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top, rgba(15,23,42,0) 10%, rgba(15,23,42,0.85) 80%);
  pointer-events:none;
}

.hero-media-card--contact img{
  transform: scale(1.03);
  transition: transform 600ms ease-out;
}

.hero-media-card--contact:hover img{
  transform: scale(1.08);
}

.contact-card{
  position: relative;
  overflow: hidden;
}

.contact-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.12), transparent 60%);
  opacity:0;
  transition: opacity 260ms ease-out;
  pointer-events:none;
}

.contact-card:hover::before{
  opacity:1;
}

.contact-card:hover{
  transform: translateY(-2px);
  box-shadow:0 26px 55px rgba(15,23,42,0.9);
  transition: all 220ms ease-out;
}

.location-map-card__frame{
  position: relative;
}

.location-map-card__frame::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(148,163,184,0.4);
  pointer-events:none;
}

.contact-form-panel{
  position:relative;
}

.contact-form-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background: radial-gradient(circle at top left, rgba(56,189,248,0.16), transparent 55%);
  opacity:0.55;
  mix-blend-mode:screen;
  pointer-events:none;
}

.contact-form .field input:focus,
.contact-form .field select:focus,
.contact-form .field textarea:focus{
  outline: 2px solid rgba(56,189,248,0.8);
  outline-offset: 1px;
}

.contact-form .btn-full{
  position:relative;
  overflow:hidden;
}

.contact-form .btn-full::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(56,189,248,0.5), rgba(249,115,22,0.3));
  mix-blend-mode:screen;
  opacity:0;
  transition: opacity 220ms ease-out;
}

.contact-form .btn-full:hover::after{
  opacity:1;
}

@media (max-width: 720px){
  .section--contact-hero .project-hero__grid{
    row-gap: 1.75rem;
  }
}


/* Schedule Visit – Validation styles */
.field-error{
  outline: 2px solid #ef4444 !important;
  outline-offset: 2px;
}

.field-error::placeholder{
  color:#fecaca;
}

/* Captcha spacing fix */
.field--captcha{
  margin-bottom: 1.25rem;
}

.field--captcha .captcha-row{
  margin-top: 0.4rem;
}



/* Project pages – extra polish for Green Alpha, Landmark-V, Easy Town */

/* Landmark-V and Easy Town hero overlays */
.page-landmark-v .hero,
.page-easy-town .hero{
  position: relative;
  color: #f9fafb;
  overflow: hidden;
}

.page-landmark-v .hero::before,
.page-easy-town .hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top left, rgba(56,189,248,0.36), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,0.96), rgba(15,23,42,0.78));
  mix-blend-mode:multiply;
  pointer-events:none;
}

.page-landmark-v .hero .overlay,
.page-easy-town .hero .overlay{
  display:none; /* superseded by CSS overlay */
}

.page-landmark-v .hero-content,
.page-easy-town .hero-content{
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-landmark-v .hero h1,
.page-easy-town .hero h1{
  font-size: clamp(2.1rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
}

.page-landmark-v .hero .subtitle,
.page-easy-town .hero .subtitle{
  font-size: 0.98rem;
  opacity: 0.94;
  max-width: 40rem;
}

.page-landmark-v .hero ul,
.page-easy-town .hero ul{
  margin: 0.9rem 0 0.8rem;
  padding-left: 1.1rem;
  font-size: 0.92rem;
}

.page-landmark-v .hero .meta,
.page-easy-town .hero .meta{
  font-size: 0.9rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-top: 0.35rem;
}

.page-landmark-v .hero .actions .btn,
.page-easy-town .hero .actions .btn{
  border-radius: 999px;
}

.page-landmark-v .hero .btn.solid,
.page-easy-town .hero .btn.solid{
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.page-landmark-v .hero .btn.ghost,
.page-easy-town .hero .btn.ghost{
  border-color: rgba(148,163,184,0.7);
}

/* Green Alpha hero image hover */
.page-green-alpha .project-hero__logo img{
  transition: transform 0.5s ease, filter 0.5s ease;
}
.page-green-alpha .project-hero__logo img:hover{
  transform: translateY(-4px) scale(1.02);
  filter: saturate(1.05);
}

/* Slightly more breathing space around GA benefit cards */
.page-green-alpha .section--ga-vertical .benefits-grid{
  row-gap: 1.4rem;
}



/* ===== Footer (updated) ===== */
.site-footer{background:linear-gradient(180deg, rgba(8,14,16,.98), rgba(8,14,16,.92)); color:rgba(255,255,255,.86); padding:48px 0 24px; margin-top:64px;}
.site-footer a{color:rgba(255,255,255,.9); text-decoration:none;}
.site-footer a:hover{opacity:.9; text-decoration:underline;}
.footer-grid{display:grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap:28px; align-items:start;}
.footer-logo{width:180px; height:auto; display:block; margin-bottom:10px; border-radius:6px;}
.footer-tagline{margin:0; max-width:32ch; color:rgba(255,255,255,.75);}
.footer-col h3{margin:0 0 10px; font-size:16px; letter-spacing:.02em; color:rgba(255,255,255,.95);}
.footer-text{margin:0 0 10px; line-height:1.6; color:rgba(255,255,255,.78);}
.footer-links{list-style:none; padding:0; margin:0; display:grid; gap:8px;}
.footer-social{display:flex; flex-wrap:wrap; gap:10px;}
.social-pill{display:inline-flex; align-items:center; justify-content:center; padding:8px 12px; border:1px solid rgba(255,255,255,.16); border-radius:999px; background:rgba(255,255,255,.06);}
.social-pill:hover{background:rgba(255,255,255,.10); text-decoration:none;}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12); margin-top:24px; padding-top:16px; display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap;}
.footer-small{margin:12px 0 0; font-size:13px; color:rgba(255,255,255,.70);}
@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{grid-template-columns:1fr; }
  .footer-logo{width:160px;}
}


/* Unified media sizing */
.media-grid img,
.plans-grid img,
.gallery-grid img,
.project-gallery img{
  width:100%;
  height:auto;
  display:block;
}

.media-card,
.plan-card,
.gallery-card{
  overflow:hidden;
  border-radius:1rem;
}

.media-card img,
.plan-card img,
.gallery-card img{
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 500ms ease;
}

.media-card:hover img,
.plan-card:hover img,
.gallery-card:hover img{
  transform: scale(1.06);
}

/* Lightbox */
.tc-lightbox{
  position:fixed;
  inset:0;
  background:rgba(2,6,23,0.82);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:1.25rem;
}

.tc-lightbox.is-open{ display:flex; }

.tc-lightbox__img{
  max-width:min(1100px, 92vw);
  max-height:88vh;
  border-radius:1rem;
  box-shadow:0 24px 70px rgba(0,0,0,0.55);
  border:1px solid rgba(148,163,184,0.35);
}

.tc-lightbox__close{
  position:absolute;
  top:18px;
  right:18px;
  background:rgba(15,23,42,0.7);
  border:1px solid rgba(148,163,184,0.45);
  color:#fff;
  padding:0.55rem 0.75rem;
  border-radius:999px;
  cursor:pointer;
}


/* ===== Home hero main ===== */
.section--hero-main{
  padding-top:5.5rem;
  padding-bottom:4.5rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(56,189,248,0.16), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(34,197,94,0.12), transparent 60%),
    linear-gradient(180deg,#020617,#020617 55%,#020617 100%);
  color:#e5e7eb;
}

.hero-main-grid{
  display:grid;
  grid-template-columns:minmax(0,1.3fr) minmax(0,1fr);
  gap:3.2rem;
  align-items:center;
}

.hero-main-copy h1{
  font-size:clamp(2.2rem,3.3vw,2.9rem);
  line-height:1.1;
  margin-bottom:0.85rem;
}

.hero-main-copy .eyebrow{
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-size:0.78rem;
  color:rgba(148,163,184,0.98);
  margin-bottom:0.75rem;
}

.hero-main-copy .lead{
  font-size:1rem;
  max-width:36rem;
  margin-bottom:1.4rem;
  color:rgba(226,232,240,0.96);
}

.hero-main-actions{
  display:flex;
  flex-wrap:wrap;
  gap:0.9rem;
  margin-bottom:1.6rem;
}

.hero-main-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.2rem;
  margin:0;
}

.hero-main-stats dt{
  font-weight:600;
  font-size:1.05rem;
}

.hero-main-stats dd{
  margin:0.15rem 0 0;
  font-size:0.86rem;
  color:rgba(148,163,184,0.96);
}

.hero-main-visual{
  display:grid;
  gap:0.9rem;
}

.hero-main-card{
  padding:0.95rem 1.1rem;
  border-radius:1rem;
  border:1px solid rgba(148,163,184,0.35);
  background:linear-gradient(145deg,rgba(15,23,42,0.92),rgba(15,23,42,0.7));
  box-shadow:0 18px 50px rgba(15,23,42,0.7);
}

.hero-main-card--primary{
  border-color:rgba(52,211,153,0.8);
}

.hero-main-card .label{
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:rgba(110,231,183,0.96);
  margin-bottom:0.35rem;
}

.hero-main-card p{
  font-size:0.9rem;
  margin:0;
  color:rgba(226,232,240,0.98);
}

/* Projects portal intro + badges */
.projects-portal__intro{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:1.5rem;
  margin-bottom:1.25rem;
}

.projects-portal__intro h2{
  font-size:1.6rem;
  margin-bottom:0.35rem;
}

.projects-portal__intro p{
  max-width:34rem;
  font-size:0.95rem;
  color:rgba(55,65,81,0.96);
}

.projects-portal__legend{
  display:flex;
  flex-wrap:wrap;
  gap:0.55rem;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding:0.25rem 0.6rem;
  border-radius:999px;
  font-size:0.78rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  border:1px solid transparent;
}

.badge--completed{
  background:rgba(22,163,74,0.1);
  border-color:rgba(22,163,74,0.3);
  color:rgb(22,101,52);
}

.badge--ongoing{
  background:rgba(59,130,246,0.08);
  border-color:rgba(59,130,246,0.35);
  color:rgb(37,99,235);
}

.badge--upcoming{
  background:rgba(234,179,8,0.12);
  border-color:rgba(234,179,8,0.35);
  color:rgb(161,98,7);
}

.projects-portal__circle .badge{
  margin-top:0.4rem;
}

/* Small hover polish */
.projects-portal__item{
  transition:transform 320ms ease, box-shadow 320ms ease;
}

.projects-portal__item:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 55px rgba(15,23,42,0.22);
}

/* Responsive hero tweaks */
@media (max-width: 960px){
  .hero-main-grid{
    grid-template-columns:minmax(0,1fr);
    gap:2rem;
  }
  .hero-main-stats{
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  }
  .projects-portal__intro{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media (max-width: 640px){
  .hero-main-stats{
    grid-template-columns:minmax(0,1fr);
  }
}


/* Header scroll animation tweaks */
.site-header {
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    padding 220ms ease;
}

.site-header--scrolled {
  background: rgba(2, 6, 23, 0.98);
  box-shadow: var(--shadow-soft);
}

/* Nav link hover underline animation */
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #fbbf24);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

/* Mobile nav toggle micro interaction */
.nav-toggle {
  transition: transform 200ms ease, background-color 200ms ease;
}

.site-nav.is-open ~ .nav-toggle,
.nav-toggle.is-open {
  transform: rotate(90deg);
}


/* Key Communities elegance */
.projects-ribbon__card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.projects-ribbon__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 60px rgba(15,23,42,0.25);
}

.projects-ribbon__card img {
  transition: transform 300ms ease;
}

.projects-ribbon__card:hover img {
  transform: scale(1.06);
}

.projects-ribbon__card h3 {
  font-size: 1.1rem;
  letter-spacing: .3px;
}

/* Modern About section */
.section--about-modern {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.about-modern__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.about-modern__content h2 {
  margin-bottom: 1rem;
}

.about-modern__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-modern__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(15,23,42,0.2);
}

@media (max-width: 900px) {
  .about-modern__grid {
    grid-template-columns: 1fr;
  }
  .about-modern__media {
    grid-template-columns: 1fr;
  }
}

/* About Tripura imagery using real project visuals */
.feature-media__back--about {
  background-image: url("assets/images/hero/tripura-archive-banner-03.jpg");
}

.feature-media__front--about {
  background-image: none;
  background: radial-gradient(circle at top left, #1e293b 0, #020617 55%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 58%;
  min-width: 520px;
}




/* About section visible scroll animation */
.feature-media--animated { transition: transform .2s ease-out; }

/* Mini timeline aligned with About image */
.mini-timeline--about {
  position: static;
  width: 100%;
  height: 100%;
  padding: 1.4rem 1.6rem;
  border-radius: 1.25rem;
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}



.mini-timeline__year { color:#facc15; font-weight:600; margin-right:.4rem; }


/* === Mini Timeline width & layout tuning for About section === */
@media (max-width: 1200px) {
  .feature-media__front--about {
    width: 62%;
    min-width: 480px;
  }
}

@media (max-width: 900px) {
  .feature-media__front--about {
    width: 100%;
    min-width: auto;
  }
}

.mini-timeline--about {
  width: 100%;
  max-width: none;
  padding: 2.0rem 2.3rem;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
}

/* Use semantic sub-classes if present, fall back gracefully */
.mini-timeline--about .mini-timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 1.2rem;
  align-items: flex-start;
}

.mini-timeline--about .mini-timeline__year {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.mini-timeline--about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.mini-timeline--about .mini-timeline__item:not(:last-child) {
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
}


/* === Mini Timeline layout override: flex-based, prevents text escaping grid === */
.mini-timeline--about {
  display: flex !important;
  flex-direction: column;
  row-gap: 1.0rem;
  width: 100%;
  max-width: none;
  padding: 2.0rem 2.3rem;
}

.mini-timeline--about .mini-timeline__item {
  display: flex !important;
  align-items: flex-start;
  column-gap: 0.9rem;
}

.mini-timeline--about .mini-timeline__year {
  min-width: 3.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.mini-timeline--about .mini-timeline__item:not(:last-child) {
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
}


/* === Mini Timeline padding fix === */
.mini-timeline--about {
  padding: 0rem 0.5rem !important;
}


/* === Mini Timeline row-gap fix === */
.mini-timeline--about {
  row-gap: 0rem !important;
}


/* Portfolio (public listings) spacing + interactive cards */
.section--portfolio .portfolio-grid {
  margin-top: 1.75rem;
}

.section--portfolio .btn.btn-small {
  margin-top: 1.75rem;
}

.portfolio-card {
  position: relative;
  padding: 1.15rem 1.25rem;
  border-radius: 1.15rem;
  background: radial-gradient(circle at top left, rgba(15,23,42,0.96), rgba(15,23,42,0.9));
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 45px rgba(15,23,42,0.55);
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out,
    background 180ms ease-out;
  overflow: hidden;
}

.portfolio-card h3 {
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 0.55rem;
}

.portfolio-card ul {
  margin: 0;
  padding-left: 1.0rem;
  font-size: 0.9rem;
  color: #cbd5f5;
}

.portfolio-card li + li {
  margin-top: 0.25rem;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at calc(var(--px, 0.5) * 100%) calc(var(--py, 0.2) * 100%),
      rgba(74, 222, 128, 0.34),
      transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease-out;
  pointer-events: none;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 242, 100, 0.7);
  box-shadow: 0 24px 60px rgba(15,23,42,0.7);
}

.portfolio-card:hover::before {
  opacity: 1;
}

/* Fancy social icon buttons */
.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: #e5e7eb;
  z-index: 1;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(74,222,128,0.6), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 35px rgba(0,0,0,0.65);
}

.social-icon:hover::before {
  opacity: 1;
}


/* Portfolio right-side projects pillboard */
.portfolio-projects-pillboard {
  padding: 1.4rem 1.6rem;
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, rgba(15,23,42,0.98), rgba(15,23,42,0.92));
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 18px 50px rgba(15,23,42,0.75);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.portfolio-projects-label {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin: 0;
}

.portfolio-projects-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #e5e7eb;
}

.portfolio-projects-list li + li {
  margin-top: 0.4rem;
}

.portfolio-projects-list li::before {
  content: "●";
  font-size: 0.55rem;
  display: inline-block;
  margin-right: 0.4rem;
  color: #4ade80;
  transform: translateY(-1px);
}

/* Ensure portfolio layout stacks nicely on mobile */
@media (max-width: 900px) {
  .section--portfolio .feature-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}



/* Green Alpha hero - exact brochure-style banner */
.ga-hero, .lv-hero, .et-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.ga-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.45) 36%,
    rgba(0, 0, 0, 0.10) 68%,
    rgba(0, 0, 0, 0) 100%
  );
  display: flex;
  align-items: center;
}

.ga-hero-content {
  max-width: 640px;
  padding-left: 6rem;
  color: #ffffff;
}

.ga-hero-content h1 {
  font-size: 3.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.ga-subtitle {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.ga-highlights {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.2rem 0;
}

.ga-highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

.ga-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 1.4rem;
  line-height: 1;
  color: #4ade80;
}

.ga-meta {
  font-size: 1rem;
  opacity: 0.96;
  margin-bottom: 1.8rem;
}

.ga-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.ga-cta .btn {
  padding: 0.85rem 1.4rem;
  font-size: 0.95rem;
}

.page-green-alpha .site-main {
  padding-top: 0;
}

@media (max-width: 900px) {
  .ga-hero, .lv-hero, .et-hero {
    height: 80vh;
  }

  .ga-hero-content {
    padding: 2.2rem;
    max-width: 100%;
  }

  .ga-hero-content h1 {
    font-size: 2.8rem;
  }

  .ga-subtitle {
    font-size: 1.25rem;
  }
}


/* Projects subnav grouping */
.subnav.subnav--projects {
  min-width: 14rem;
}

.subnav-label {
  padding: 0.35rem 0.95rem 0.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.9);
  pointer-events: none;
}

/* Remove nav underline effect for Schedule a visit button */
.site-nav a.btn.btn-small::after {
  display: none;
}




.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.32), transparent),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.32), transparent),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.96));
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 80vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.96);
  margin-bottom: 0.85rem;
}

.hero-slide__content h1 {
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-slide__content p {
  max-width: 36rem;
  font-size: 0.98rem;
  color: rgba(226, 232, 240, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn--ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: rgba(226, 232, 240, 0.92);
}

.btn--ghost:hover {
  border-color: var(--accent);
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent);
  color: #ffffff;
}

.hero-slider__nav {
  position: absolute;
  inset-inline: 0;
  bottom: 1.8rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.hero-dot.is-active {
  background: var(--accent);
  border-color: var(--accent-soft);
  transform: scale(1.1);
}

.hero-slide__media--main {
  background-image: url("assets/images/hero/tripura-landing-hero.png");
}

.hero-slide__media--ga {
  background-image: url("assets/images/projects/green-alpha-hero.jpg");
}

.hero-slide__media--landmark {
  background-image: url("assets/images/projects/landmark-v/landmark-v-hero.jpg");
}

@media (max-width: 768px) {
  .hero-slide__content {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }

  .hero-slide__content h1 {
    font-size: 1.8rem;
  }

  .hero-slide__content p {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===================== */
/* HOME HERO VIDEO       */
/* ===================== */

.hero-video {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}


.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.28), transparent),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.28), transparent),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.95));
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  min-height: clamp(420px, 80vh, 620px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (max-width: 768px) {
  .hero-video__content {
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }
}


/* ============================================== */
/* PORTFOLIO (PUBLIC LISTINGS) – LIGHT & FULLWIDTH */
/* ============================================== */

.section.section--location-advantage.section--portfolio {
  background: #f8fafc;
  color: #0f172a;
}

.section.section--location-advantage.section--portfolio .eyebrow {
  color: #0f172a;
  opacity: 0.7;
}

.section.section--location-advantage.section--portfolio h2,
.section.section--location-advantage.section--portfolio h3 {
  color: #020617;
}

.section.section--location-advantage.section--portfolio p,
.section.section--location-advantage.section--portfolio li {
  color: #475569;
}

/* Layout: stack copy + grid, full width */
.section.section--location-advantage.section--portfolio .feature-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section.section--location-advantage.section--portfolio .feature-copy {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.section.section--location-advantage.section--portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

/* Cards: light, clean */
.section.section--location-advantage.section--portfolio .portfolio-card {
  border-radius: 14px;
  padding: 14px 14px 10px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.section.section--location-advantage.section--portfolio .portfolio-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #020617;
}

.section.section--location-advantage.section--portfolio .portfolio-card li {
  color: #475569;
}

/* Small screens: keep good spacing */
@media (max-width: 768px) {
  .section.section--location-advantage.section--portfolio .feature-layout {
    gap: 2rem;
  }
}


/* ============================================== */
/* STORIES SECTION – LIGHT THEME LIKE ABOUT TRIPURA */
/* ============================================== */

.section.section--location-advantage.stories.section--stories {
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  color: #0f172a;
}

.section.section--location-advantage.stories.section--stories .section-header .eyebrow {
  color: #0f172a;
  opacity: 0.7;
}

.section.section--location-advantage.stories.section--stories h2 {
  color: #020617;
}

.section.section--location-advantage.stories.section--stories p {
  color: #475569;
}

/* Story cards – light, clean */
.section.section--location-advantage.stories.section--stories .story-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.section.section--location-advantage.stories.section--stories .story-card__content,
.section.section--location-advantage.stories.section--stories .story-card__quote,
.section.section--location-advantage.stories.section--stories .story-card__meta {
  color: #0f172a;
}

.section.section--location-advantage.stories.section--stories .story-card__meta strong {
  color: #111827;
}



/* ================================= */
/* STORIES – SUBTLE SCROLL REVEAL     */
/* ================================= */

.section--stories .story-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section--stories .story-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* FIX: Schedule a Visit button should not be full width */
.contact-form button[type="submit"] {
  display: inline-flex;
  width: auto;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
}

.contact-form .form-row--actions {
  display: flex;
  justify-content: flex-start;
}



/* === Hero Parallax (Subtle) === */
.hero-parallax {
  position: relative;
  overflow: hidden;
}

.hero-parallax img,
.hero-parallax video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Responsiveness tweaks for footer, contact and form */
@media (max-width: 768px) {
  footer {
    padding: 32px 20px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .footer-location,
  .footer-social {
    width: 100%;
  }

  .footer-location iframe {
    height: 220px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .visit-us {
    padding: 0 10px;
  }

  .visit-us p {
    font-size: 14px;
    line-height: 1.6;
  }

  .visit-map iframe {
    height: 260px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 14px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 15px;
  }

  .contact-form .form-row--actions {
    justify-content: center;
  }

  .contact-form button {
    width: 100%;
    max-width: 320px;
  }
}

/* Footer social icon hover animation (subtle) */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social .social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-social .social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-social .social-icon:hover {
  background: #c9a45c;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
}



/* === LEGIBILITY FIXES: HEADINGS & TEXT ON DARK SECTIONS === */

/* Home testimonials heading */
.section--testimonials .section-header h2 {
  color: #f9fafb;
}

/* About page main content text */
.page .section .two-col h2,
.page .section .two-col h3,
.page .section .two-col p {
  color: #e5e7eb;
}

/* Blog hero title + copy */
.hero--blog .hero__content .eyebrow,
.hero--blog .hero__content h1,
.hero--blog .hero__content p {
  color: #f9fafb;
}

/* Contact – Ways to reach us: keep cards light & readable */
.section--contact-channels .section-header h2,
.section--contact-channels .section-header p {
  color: #0f172a;
}

.section--contact-channels .contact-card {
  background: #ffffff;
  color: #0f172a;
}

.section--contact-channels .contact-card h3 {
  color: #020617;
}

.section--contact-channels .contact-card p,
.section--contact-channels .contact-card li {
  color: #1f2933;
}

/* Contact – Visit us section text on dark map background */
.section--contact-map .location-copy .eyebrow,
.section--contact-map .location-copy h2,
.section--contact-map .location-copy p,
.section--contact-map .location-copy li {
  color: #f9fafb;
}



/* === ABOUT PAGE LEGIBILITY – STRONG OVERRIDES === */
.page .page-hero .eyebrow,
.page .page-hero h1,
.page .page-hero .lead {
  color: #f9fafb;
}

.page .section h2,
.page .section h3,
.page .section p,
.page .section li,
.page .section .muted {
  color: #e5e7eb;
}

/* Cards inside the alt band on About page */
.page .section.section-alt {
  background: #020617;
}

.page .section.section-alt .card {
  background: rgba(15, 23, 42, 0.92);
  border-radius: 1.4rem;
}

.page .section.section-alt .card h2,
.page .section.section-alt .card h3,
.page .section.section-alt .card p,
.page .section.section-alt .card li {
  color: #e5e7eb;
}



/* === Footer social icons: staggered entrance + brand hovers === */
.footer-social .social-icon {
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: footerIconIn 0.55s ease-out forwards;
}

.footer-social .social-icon:nth-child(1) {
  animation-delay: 0.0s;
}
.footer-social .social-icon:nth-child(2) {
  animation-delay: 0.08s;
}
.footer-social .social-icon:nth-child(3) {
  animation-delay: 0.16s;
}
.footer-social .social-icon:nth-child(4) {
  animation-delay: 0.24s;
}

@keyframes footerIconIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Brand color hovers */
.footer-social .social-icon--fb:hover {
  background: #1877f2;
  color: #ffffff;
}

.footer-social .social-icon--ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #ffffff;
}

.footer-social .social-icon--yt:hover {
  background: #ff0000;
  color: #ffffff;
}

.footer-social .social-icon--x:hover {
  background: #ffffff;
  color: #000000;
}
