/* ===== INNERSPACES - Tesla/Jesko Cinematic Stylesheet ===== */

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

:root {
  --gold: #c9a96e;
  --gold-light: #dfc89a;
  --gold-dark: #a68a4b;
  --dark: #0a0a0a;
  --dark-secondary: #111111;
  --dark-card: #181818;
  --dark-border: #2a2a2a;
  --text-primary: #f0ece4;
  --text-secondary: #a8a29e;
  --text-muted: #78716c;
  --white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', 'Helvetica Neue', sans-serif;
  --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scroll-snap for homepage only */
body.snap-scroll {
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  height: 100vh;
}

body.snap-scroll .snap-section {
  scroll-snap-align: start;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.02em; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; }

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title { margin-bottom: 20px; }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

.gold-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark) !important;
  background: var(--gold);
  padding: 10px 24px;
  border: 1px solid var(--gold);
  transition: all var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: transparent; color: var(--gold) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

/* --- Hero Section (Tesla-style fullscreen) --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.3) saturate(1.1);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.6) 60%, rgba(10,10,10,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content .section-label { margin-bottom: 24px; }

.hero-content h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 400;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.2), transparent);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
}

/* --- Sections --- */
.section {
  padding: 120px 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }
.section-header.center .gold-line { margin-left: auto; margin-right: auto; }

/* --- Full-viewport section (Tesla-style) --- */
.full-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.full-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.25) saturate(1.1);
}

.full-section-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.85) 100%);
}

.full-section-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.full-section-content h2 { color: var(--white); margin-bottom: 16px; }
.full-section-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* --- Bottom CTAs (Tesla-style) --- */
.hero-ctas-bottom {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 16px;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--dark-secondary);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-item p {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* --- Featured Projects --- */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all var(--transition-slow);
}

.featured-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.featured-card-image {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-card:hover .featured-card-image img { transform: scale(1.08); }

.featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.featured-card-content { padding: 32px; }
.featured-card-content h3 { margin-bottom: 8px; color: var(--white); }
.featured-card-content .location {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.featured-card-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1rem;
}

.featured-specs {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--dark-border);
}

.featured-specs .spec {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.featured-specs .spec strong {
  color: var(--text-primary);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

/* --- Project Grid --- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all var(--transition-slow);
}

.project-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.project-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-card-image img { transform: scale(1.08); }

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-card-overlay { opacity: 1; }

.project-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(10,10,10,0.7);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.project-status-badge.selling {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.project-card-info { padding: 24px; }
.project-card-info h4 { color: var(--white); margin-bottom: 4px; }
.project-card-info .location {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.project-card-info .meta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.about-image:hover img { transform: scale(1.05); }

.about-image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.9;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.value-item h4 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1rem;
}

.value-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-info-item p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: 1px solid var(--dark-border);
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: filter var(--transition);
}

.contact-map:hover { filter: grayscale(0) brightness(1) contrast(1); }

/* --- Footer --- */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  line-height: 1.8;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--dark-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* --- Page Hero (sub-pages) --- */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero .hero-bg {
  filter: brightness(0.25) saturate(1.1);
  background-attachment: fixed;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* --- Project Detail Page --- */
.project-hero {
  height: 80vh;
  min-height: 550px;
}

.project-detail { padding: 80px 0; }

.project-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--dark-border);
}

.project-detail-header h1 { margin-bottom: 8px; }
.project-detail-header .location {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.project-detail-specs {
  display: flex;
  gap: 40px;
  text-align: right;
}

.project-detail-specs .spec-label {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.project-detail-specs .spec-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}

.project-description {
  max-width: 800px;
  margin-bottom: 60px;
}

.project-description p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

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

.project-gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 1px solid var(--dark-border);
  transition: all var(--transition-slow);
  cursor: pointer;
}

.project-gallery img:hover {
  border-color: var(--gold-dark);
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.project-gallery img:first-child {
  grid-column: 1 / -1;
  height: 500px;
}

/* --- CTA Section --- */
.cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-secondary) 0%, #1a1510 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.cta-section h2 { margin-bottom: 16px; color: var(--white); }
.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* --- Cinematic Animations (Jesko-style) --- */
.reveal {
  opacity: 0;
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.from-bottom { transform: translateY(60px); }
.reveal.from-left { transform: translateX(-60px); }
.reveal.from-right { transform: translateX(60px); }
.reveal.from-scale { transform: scale(0.9); }

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.6s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.75s; }

/* Legacy fade-in support */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Parallax Image --- */
.parallax-img {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- Section Dots Nav (Tesla-style) --- */
.section-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-dots .dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.section-dots .dot:hover {
  background: rgba(255,255,255,0.5);
}

/* --- Mobile Navigation --- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 360px; }
  .about-image-border { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .project-detail-header { flex-direction: column; gap: 24px; }
  .project-detail-specs { text-align: left; }
  .section-dots { display: none; }
}

@media (max-width: 768px) {
  body.snap-scroll { scroll-snap-type: none; height: auto; overflow-y: auto; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .project-grid { grid-template-columns: 1fr 1fr; }
  .project-gallery { grid-template-columns: 1fr; }
  .project-gallery img:first-child { height: 300px; }
  .project-gallery img { height: 250px; }
  .section { padding: 80px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-bg, .full-section-bg, .page-hero .hero-bg { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .project-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .featured-specs { flex-wrap: wrap; gap: 16px; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-ctas-bottom { flex-direction: column; bottom: 40px; }
}
