:root {
  --header-height: 80px;
  --navy: #144573;
  --navy-dark: #0d2e4d;
  --navy-light: #1a5590;
  --gold: #F7D126;
  --gold-dark: #d4b020;
  --gold-light: #fce76b;
  --white: #ffffff;
  --off-white: #FAFBFB;
  --light-gray: #f4f5f6;
  --mid-gray: #e0e2e6;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #8a8a9a;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(20, 69, 115, 0.08);
  --shadow: 0 8px 32px rgba(20, 69, 115, 0.12);
  --shadow-lg: 0 20px 60px rgba(20, 69, 115, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-tag.gold {
  color: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-header.text-center {
  text-align: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 209, 38, 0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: relative;
  z-index: 1000;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 69, 115, 0.08);
  transition: var(--transition);
}

.site-nav.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 10px;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  color: inherit;
}

.nav-toggle:focus {
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 32px 32px;
  border-bottom: 1px solid var(--mid-gray);
  z-index: 999;
  box-shadow: var(--shadow);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--mid-gray);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  margin-top: var(--header-height);
  /* From header bottom to viewport bottom (vh was full screen + margin = overflow) */
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  min-height: min(560px, calc(100vh - var(--header-height)));
  min-height: min(560px, calc(100svh - var(--header-height)));
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-has-picture {
  background-image: none !important;
}

.hero-slide-picture {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg,
      rgba(13, 46, 77, 0.75) 0%,
      rgba(13, 46, 77, 0.4) 50%,
      rgba(13, 46, 77, 0.15) 100%);
}

.hero-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  max-width: 620px;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 600;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.hero-dot.active {
  background: var(--gold);
  width: 48px;
}

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 10;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Hero reveal animations */
.hero-slide.active .reveal {
  animation: heroReveal 0.8s ease both;
}

.hero-slide.active .hero-eyebrow {
  animation-delay: 0.3s;
}

.hero-slide.active .hero-title {
  animation-delay: 0.5s;
}

.hero-slide.active .hero-subtitle {
  animation-delay: 0.7s;
}

.hero-slide.active .hero-actions {
  animation-delay: 0.9s;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 32px 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 16px 48px;
  animation-delay: var(--delay, 0s);
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-num small {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   THE SRIVATHSAN DIFFERENCE
   ============================================ */
.difference-section {
  padding: 100px 0;
  background: var(--off-white);
}

.difference-section .section-header {
  text-align: left;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.diff-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  animation-delay: var(--delay, 0s);
}

.diff-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.diff-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

.diff-img-hover {
  opacity: 0;
}

.diff-card:hover .diff-img:not(.diff-img-hover) {
  opacity: 0;
}

.diff-card:hover .diff-img-hover {
  opacity: 1;
}

/* ============================================
   PROJECT INTRO
   ============================================ */
.project-intro {
  padding: 48px 0 100px;
  background: var(--white);
}

/* Full-viewport-width strip (break out of any horizontal padding context) */
.project-intro-gallery {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 40px;
  padding: 0;
  background: var(--white);
}

.project-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin: 0 20px;
}

.project-intro-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation-delay: var(--delay, 0s);
}

.project-intro-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-intro-img:hover img {
  transform: scale(1.04);
}

.project-intro-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.badge-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.project-title-gold {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold-dark);
  letter-spacing: 8px;
  margin-bottom: 16px;
  line-height: 1;
}

.project-desc {
  font-size: 1.5rem;
  color: var(--gold-dark);
  line-height: 1.75;
  margin-bottom: 32px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.project-specs {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-specs li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

.project-specs li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}

.project-specs li strong {
  color: var(--navy);
  font-weight: 600;
  margin-right: 4px;
}

/* ============================================
   KEY HIGHLIGHTS
   ============================================ */
.highlights-section {
  padding: 100px 0;
  background: var(--off-white);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay, 0s);
}

.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: rgba(20, 69, 115, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--navy);
}

.highlight-card:hover .highlight-icon svg {
  color: var(--gold);
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.highlight-link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: color 0.25s;
}

.highlight-link:hover {
  color: var(--navy);
}

/* ============================================
   GALLERY STRIP
   ============================================ */
.gallery-strip {
  overflow: hidden;
  height: 320px;
}

.gallery-strip-inner {
  display: flex;
  height: 100%;
}

.gallery-strip-img {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.gallery-strip-img img {
  width: 100%;
  height: 20vh;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-strip-img:hover img {
  transform: scale(1.08);
}

.gallery-strip.gallery-strip--project-intro {
  width: 100%;
  height: min(240px, 28vw);
  max-height: 280px;
  border-radius: 0;
  box-shadow: none;
}

.gallery-strip.gallery-strip--project-intro .gallery-strip-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: none;
}

.gallery-strip.gallery-strip--project-intro .gallery-strip-img:hover img {
  transform: none;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--navy);
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-card {
  text-align: center;
  padding: 48px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  animation-delay: var(--delay, 0s);
}

.service-card:last-child {
  border-right: none;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.service-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
}

.service-card:hover .service-icon-wrap svg {
  color: var(--navy);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 46, 77, 0.92) 0%, rgba(20, 69, 115, 0.85) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation-delay: var(--delay, 0s);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 300;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-width: 0;
}

.contact-info,
.contact-form-wrap {
  min-width: 0;
  max-width: 100%;
}

.contact-info {
  animation-delay: var(--delay, 0s);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
  min-width: 0;
  max-width: 100%;
}

.contact-item>div:not(.contact-icon) {
  flex: 1;
  min-width: 0;
}

a.contact-item:hover {
  border-color: var(--navy);
  background: var(--off-white);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(20, 69, 115, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.contact-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--mid-gray);
  animation-delay: var(--delay, 0s);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  max-width: 100%;
}

.contact-form .btn-full {
  white-space: normal;
  text-wrap: balance;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-width: 0;
}

.form-row .form-group {
  min-width: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 14px 18px;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20, 69, 115, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a4a5a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0a0a12;
  color: var(--white);
}

.footer-main {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 60px;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 209, 38, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gold);
}

.footer-social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-address-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-address-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-address-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 990px) {
  .site-nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Portrait tiles + bottom-weighted art: avoid cropping headline text in narrow grids */
  .difference-section .diff-img,
  .difference-section .diff-img-hover {
    object-position: center bottom;
  }

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

  .project-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-intro-img {
    max-width: 560px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stat-item {
    padding: 16px 28px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    left: 5%;
    right: 5%;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats-grid {
    gap: 0;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 12px 20px;
    flex: 0 0 50%;
  }

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .service-card:last-child {
    border-bottom: none;
  }

  .project-intro-gallery {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 40px;
    padding: 0;
    box-sizing: border-box;
  }

  .gallery-strip {
    height: 200px;
  }

  .gallery-strip.gallery-strip--project-intro {
    height: min(220px, 48vw);
    max-width: none;
    max-height: none;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .project-intro-grid {
    margin: 0;
    gap: 36px;
  }

  .project-intro-content {
    padding: 0 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container-wide {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .hero-scroll-hint {
    display: none;
  }

  .footer-brand img {
    height: 40px;
  }
}

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

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .stat-divider {
    display: none;
  }

  .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

/* ============================================
   INNER PAGES (shared with /cla design system)
   ============================================ */
.subpage-main:not(.has-hero) {
  padding-top: 80px;
}

.subpage-main.has-hero .inner-page-hero {
  margin-top: 80px;
}

.inner-page-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy-dark);
}

.inner-page-hero-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: min(88vh, 900px);
}

@media (max-width: 768px) {
  .inner-page-hero-inner {
    aspect-ratio: 4 / 3;
    max-height: 70vh;
  }
}

.inner-page-hero-inner>picture,
.inner-page-hero-inner>img {
  display: block;
  width: 100%;
  height: 100%;
}

.inner-page-hero-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ph-stack {
  position: absolute;
  inset: 0;
}

.hero-ph {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s ease;
}

.hero-ph-hidden {
  opacity: 0;
  pointer-events: none;
}

.inner-section {
  padding: 64px 0;
}

.inner-section.compact {
  padding: 40px 0;
}

.inner-section.muted {
  background: var(--light-gray);
}

.inner-section.navy {
  background: var(--navy);
  color: var(--white);
}

.inner-section.paper {
  background: #f2f7fb;
}

.container.narrow {
  max-width: 760px;
}

.container.reading {
  max-width: 640px;
}

.inner-prose {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-body);
}

.inner-prose h2,
.inner-prose h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.inner-prose strong {
  color: #0047b2;
}

.inner-prose a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.inner-prose a:hover {
  color: var(--gold-dark);
}

.values-grid-inner {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.value-card-inner {
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.value-card-inner h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-card-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.value-card-light {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow-sm);
}

.value-card-light h3 {
  color: var(--navy);
}

.value-card-light p {
  color: var(--text-muted);
}

.founders-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founders-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.spec-row-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 0 20px;
}

.spec-cell {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  background: var(--white);
}

.spec-cell .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
}

.spec-cell .value {
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 800;
}

.gallery-grid-inner {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
  .gallery-grid-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-grid-inner img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* Projects page — east / west villa floor plan rows (reference: srivathsan.aasaan.app/pages/projects) */
.plan-showcase-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.plan-showcase-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.92fr) repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.plan-showcase-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.plan-showcase-lead {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.plan-showcase-lead-img {
  overflow: hidden;
  background: var(--light-gray);
}

.plan-showcase-lead-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.plan-showcase-plan {
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-showcase-plan img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .plan-showcase-grid:not(.plan-showcase-grid--four) {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .plan-showcase-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .plan-showcase-grid--four {
    grid-template-columns: 1fr;
  }
}

.dual-img-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .dual-img-grid {
    grid-template-columns: 1fr;
  }
}

.dual-img-grid img,
.dual-img-grid picture {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}

.dual-img-grid img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--mid-gray);
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
}

.map-wrap iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: min(70vh, 520px);
  border: 0;
}

.legal-prose {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
}

.legal-prose p+p {
  margin-top: 1rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 28px;
}

.footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.footer-policies a {
  font-size: 0.72rem;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.25s;
}

.footer-policies a:hover {
  color: var(--gold);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.inner-cta-navy {
  background: var(--navy);
  padding: 64px 0;
  text-align: center;
}

.inner-cta-navy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  font-weight: 600;
}

.inner-cta-navy p {
  max-width: 560px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.master-plan-img {
  display: block;
  width: 100%;
  max-height: 70vh;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.wide-banner-img {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: var(--radius-lg);
}