/* ============================================================
   ARYA NAIR INTERIORS — HOME.CSS
   Palette: Bone (#F7F4EF), Stone (#E8E0D4), Brass (#B8935A), 
            Espresso (#1C1410), Warm White (#FDFAF6)
   Mood: Refined luxury editorial
============================================================ */

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

:root {
  --bone: #F7F4EF;
  --stone: #E8E0D4;
  --brass: #B8935A;
  --brass-light: #D4AD78;
  --espresso: #1C1410;
  --espresso-mid: #2E1F17;
  --warm-white: #FDFAF6;
  --ink: #3D2B1F;
  --muted: #7A6A5E;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'Jost', sans-serif;
  --ff-accent: 'Cormorant', Georgia, serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--warm-white); color: var(--ink); overflow-x: hidden; }

em { font-style: italic; }
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 60px;
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(253, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  padding: 18px 60px;
  box-shadow: 0 1px 0 rgba(28,20,16,0.08);
}
.nav-logo a { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 600; color: var(--warm-white); letter-spacing: 0.02em; transition: color 0.4s; }
.logo-sub { font-family: var(--ff-body); font-size: 0.6rem; font-weight: 300; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-light); margin-top: 2px; transition: color 0.4s; }
.nav.scrolled .logo-main { color: var(--espresso); }
.nav.scrolled .logo-sub { color: var(--brass); }

.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-family: var(--ff-body); font-size: 0.78rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(253,250,246,0.85); transition: color 0.3s; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover, .nav-links a.active { color: var(--brass-light); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--brass); }
.nav-links .nav-cta {
  background: var(--brass); color: var(--warm-white) !important;
  padding: 10px 22px; border-radius: 2px;
  font-weight: 500; transition: background 0.3s !important;
}
.nav-links .nav-cta:hover { background: var(--brass-light) !important; }
.nav.scrolled .nav-links .nav-cta { background: var(--brass); color: var(--warm-white) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--warm-white); transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--espresso); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ---- HERO ---- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end; padding-bottom: 10vh;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1C1410 0%, #2E1F17 40%, #3D2B1F 70%, #1C1410 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,147,90,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(184,147,90,0.08) 0%, transparent 50%);
}
.hero-lines {
  position: absolute; inset: 0; display: flex;
  justify-content: space-around; overflow: hidden;
}
.hero-lines span {
  display: block; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(184,147,90,0.15), transparent);
  animation: lineReveal 2s ease forwards;
  opacity: 0;
}
.hero-lines span:nth-child(1) { animation-delay: 0.2s; }
.hero-lines span:nth-child(2) { animation-delay: 0.4s; }
.hero-lines span:nth-child(3) { animation-delay: 0.6s; }
.hero-lines span:nth-child(4) { animation-delay: 0.8s; }
.hero-lines span:nth-child(5) { animation-delay: 1.0s; }
@keyframes lineReveal { to { opacity: 1; } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px; max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 300;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--brass-light); margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--ff-display); font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 400; line-height: 1.08; color: var(--warm-white);
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.hero-headline em { color: var(--brass-light); font-style: italic; }
.hero-sub {
  font-family: var(--ff-body); font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: rgba(253,250,246,0.65); margin-bottom: 48px;
  max-width: 580px;
}
.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brass); color: var(--warm-white);
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--brass-light); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(253,250,246,0.8); border-bottom: 1px solid rgba(184,147,90,0.4);
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding-bottom: 4px; transition: color 0.3s, border-color 0.3s;
}
.btn-ghost:hover { color: var(--brass-light); border-color: var(--brass-light); }
.btn-ghost i { transition: transform 0.3s; }
.btn-ghost:hover i { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 48px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span {
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(253,250,246,0.4); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(184,147,90,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}

.hero-badge {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  width: 100px; height: 100px; border-radius: 50%;
  border: 1px solid rgba(184,147,90,0.35);
  display: flex; align-items: center; justify-content: center;
  animation: rotateBadge 20s linear infinite;
}
.badge-inner { text-align: center; }
.badge-num { display: block; font-family: var(--ff-display); font-size: 1.6rem; font-weight: 500; color: var(--brass-light); line-height: 1; }
.badge-label { display: block; font-size: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(253,250,246,0.5); margin-top: 4px; }
@keyframes rotateBadge {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--brass); overflow: hidden;
  padding: 14px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 32px; align-items: center;
  animation: marqueeRoll 22s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-white);
}
.marquee-track .dot { color: rgba(253,250,246,0.5); }
@keyframes marqueeRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- BUTTONS ---- */
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass);
  border-bottom: 1px solid rgba(184,147,90,0.4); padding-bottom: 4px;
  transition: gap 0.3s, border-color 0.3s;
}
.btn-line:hover { gap: 16px; border-color: var(--brass); }
.btn-line-small {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  transition: color 0.3s, gap 0.3s;
}
.btn-line-small:hover { color: var(--brass); gap: 14px; }

/* ---- SECTION TYPOGRAPHY ---- */
.section-label {
  font-family: var(--ff-body); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--brass);
  margin-bottom: 16px; display: block;
}
.section-label.light { color: var(--brass-light); }
.section-heading {
  font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15; color: var(--espresso);
  letter-spacing: -0.01em; margin-bottom: 28px;
}
.section-heading.light { color: var(--warm-white); }
.section-heading em { font-style: italic; color: var(--brass); }
.section-heading.light em { color: var(--brass-light); }

/* ---- REVEAL ANIMATIONS ---- */
.reveal-up { opacity: 0; transform: translateY(32px); }
.reveal-up.visible { animation: revealUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s !important; }
.delay-2 { animation-delay: 0.3s !important; }
.delay-3 { animation-delay: 0.45s !important; }
.delay-4 { animation-delay: 0.6s !important; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.snap-card, .test-card, .pp-step, .proj-card, .stat-item {
  opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.snap-card.visible, .test-card.visible, .pp-step.visible, .proj-card.visible, .stat-item.visible {
  opacity: 1; transform: translateY(0);
}

/* ---- INTRO ---- */
.intro { padding: 100px 60px; }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto;
}
.intro-image-wrap { position: relative; }
.intro-image {
  height: 580px; border-radius: 2px;
  background: linear-gradient(135deg, #C5A882 0%, #8B6C4F 40%, #6B4F3B 80%, #4A3228 100%);
  position: relative; overflow: hidden;
}
.intro-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top right, rgba(28,20,16,0.3), transparent);
}
.img-warm { background: linear-gradient(145deg, #C8A882 0%, #9B7B5E 35%, #7A5E4A 65%, #5A4035 100%); }
.intro-image-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 200px; height: 200px; border-radius: 2px;
  border: 1px solid var(--brass); background: var(--stone);
  z-index: -1;
}
.intro-right { padding: 20px 0; }
.intro-body {
  font-family: var(--ff-body); font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: var(--muted); margin-bottom: 20px;
}

/* ---- PROJECTS ---- */
.projects { padding: 80px 60px; background: var(--bone); }
.projects-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 40px; max-width: 1200px; margin-left: auto; margin-right: auto;
  flex-wrap: wrap; gap: 16px;
}
.projects-header .section-heading { margin-bottom: 0; }
.projects-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px; max-width: 1200px; margin: 0 auto;
}
.proj-card {
  position: relative; border-radius: 2px; overflow: hidden;
  cursor: pointer;
}
.proj-large { grid-column: 1; grid-row: 1; }
.proj-tall { grid-column: 2; grid-row: 1 / 3; }
.proj-wide { grid-column: 1; grid-row: 2; }
.proj-img {
  width: 100%; transition: transform 0.6s ease;
}
.proj-large .proj-img { height: 360px; }
.proj-tall .proj-img { height: 100%; min-height: 740px; }
.proj-wide .proj-img { height: 360px; }

.img-proj1 { background: linear-gradient(135deg, #C8B49A 0%, #A08060 50%, #7A6048 100%); }
.img-proj2 { background: linear-gradient(160deg, #8B7355 0%, #6B5540 40%, #4A3830 80%, #2E2320 100%); }
.img-proj3 { background: linear-gradient(120deg, #B0A090 0%, #8A7868 40%, #6A5848 100%); }
.img-proj4 { background: linear-gradient(150deg, #D4C0A8 0%, #B89878 50%, #9A7858 100%); }

.proj-card:hover .proj-img { transform: scale(1.04); }
.proj-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 28px 28px;
  background: linear-gradient(to top, rgba(28,20,16,0.85) 0%, transparent 100%);
  transform: translateY(8px); transition: transform 0.4s ease;
}
.proj-card:hover .proj-info { transform: translateY(0); }
.proj-tag {
  font-family: var(--ff-body); font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-light); display: block; margin-bottom: 6px;
}
.proj-info h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 400; color: var(--warm-white); margin-bottom: 4px; }
.proj-info p { font-family: var(--ff-body); font-size: 0.78rem; font-weight: 300; color: rgba(253,250,246,0.6); }
.proj-link { position: absolute; inset: 0; z-index: 2; }

/* ---- SERVICES SNAP ---- */
.services-snap { background: var(--espresso); padding: 100px 60px; }
.services-snap-inner { max-width: 1200px; margin: 0 auto; }
.snap-header { margin-bottom: 60px; }
.snap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.snap-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(184,147,90,0.12);
  padding: 40px 32px; transition: background 0.3s, border-color 0.3s;
}
.snap-card:hover { background: rgba(184,147,90,0.06); border-color: rgba(184,147,90,0.3); }
.snap-icon {
  width: 48px; height: 48px; border-radius: 2px;
  border: 1px solid rgba(184,147,90,0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.snap-icon i { font-size: 1.1rem; color: var(--brass-light); }
.snap-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 400; color: var(--warm-white); margin-bottom: 12px; }
.snap-card p { font-family: var(--ff-body); font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: rgba(253,250,246,0.5); margin-bottom: 20px; }
.snap-link {
  font-family: var(--ff-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass-light); display: inline-flex; align-items: center; gap: 8px;
  transition: gap 0.3s;
}
.snap-link:hover { gap: 14px; }

/* ---- STATS ---- */
.stats { background: var(--stone); padding: 80px 60px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; max-width: 1200px; margin: 0 auto;
  border: 1px solid rgba(184,147,90,0.2);
}
.stat-item {
  padding: 48px 40px; display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid rgba(184,147,90,0.2);
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display); font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 500; color: var(--espresso); line-height: 1;
}
.stat-label {
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}

/* ---- TESTIMONIALS ---- */
.testimonials { padding: 100px 60px; background: var(--warm-white); }
.test-header { max-width: 1200px; margin: 0 auto 56px; }
.test-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px; max-width: 1200px; margin: 0 auto 40px;
}
.test-card {
  padding: 40px 36px; border: 1px solid var(--stone); border-radius: 2px;
  transition: border-color 0.3s, transform 0.3s;
}
.test-card:hover { border-color: rgba(184,147,90,0.4); transform: translateY(-4px); }
.test-featured { background: var(--bone); }
.test-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.test-stars i { color: var(--brass); font-size: 0.8rem; }
.test-card blockquote {
  font-family: var(--ff-accent); font-size: 1rem; font-weight: 300;
  font-style: italic; line-height: 1.75; color: var(--ink);
  margin-bottom: 24px;
}
.test-featured blockquote { font-size: 1.1rem; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #C8A882, #9B7B5E); }
.av2 { background: linear-gradient(135deg, #8B6C4F, #6B4F3B); }
.av3 { background: linear-gradient(135deg, #B09070, #8A7060); }
.test-author strong { display: block; font-family: var(--ff-body); font-size: 0.88rem; font-weight: 500; color: var(--espresso); }
.test-author span { font-family: var(--ff-body); font-size: 0.75rem; font-weight: 300; color: var(--muted); }
.test-trust {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto;
  font-family: var(--ff-body); font-size: 0.82rem; font-weight: 300; color: var(--muted);
  padding-top: 24px; border-top: 1px solid var(--stone);
}
.test-trust i { color: var(--brass); }
.test-trust em { font-style: italic; color: var(--ink); }

/* ---- PRESS ---- */
.press { padding: 60px; background: var(--bone); border-top: 1px solid var(--stone); }
.press-label {
  font-family: var(--ff-body); font-size: 0.65rem; font-weight: 400;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  text-align: center; margin-bottom: 32px;
}
.press-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.press-logo {
  font-family: var(--ff-display); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; color: rgba(61,43,31,0.3);
  text-transform: uppercase; line-height: 1.3; text-align: center;
  transition: color 0.3s;
}
.press-logo:hover { color: var(--brass); }

/* ---- PROCESS PREVIEW ---- */
.process-preview { padding: 100px 60px; background: var(--espresso-mid); }
.process-preview-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start;
}
.pp-left .section-heading { color: var(--warm-white); }
.pp-left .section-heading em { color: var(--brass-light); }
.pp-left .section-label { color: var(--brass-light); }
.pp-left p { font-family: var(--ff-body); font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(253,250,246,0.6); margin-bottom: 32px; }
.pp-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid rgba(184,147,90,0.1);
  transition-delay: calc(var(--i, 0) * 0.12s);
}
.pp-step:first-child { padding-top: 0; }
.pp-num {
  font-family: var(--ff-display); font-size: 1.8rem; font-weight: 400;
  color: rgba(184,147,90,0.25); line-height: 1; flex-shrink: 0; width: 48px;
}
.pp-text h4 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 400; color: var(--warm-white); margin-bottom: 8px; }
.pp-text p { font-family: var(--ff-body); font-size: 0.88rem; font-weight: 300; line-height: 1.7; color: rgba(253,250,246,0.5); }

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative; padding: 120px 60px;
  background: linear-gradient(135deg, #B8935A 0%, #9A7A48 50%, #7A5E38 100%);
  overflow: hidden; text-align: center;
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-headline {
  font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400; color: var(--warm-white); line-height: 1.12;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.cta-headline em { font-style: italic; color: rgba(253,250,246,0.8); }
.cta-sub { font-family: var(--ff-body); font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(253,250,246,0.75); margin-bottom: 40px; }
.btn-primary-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--warm-white); color: var(--brass);
  font-family: var(--ff-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 18px 44px; border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary-light:hover { background: var(--bone); transform: translateY(-2px); }
.cta-bg-lines {
  position: absolute; inset: 0; display: flex;
  justify-content: space-around; overflow: hidden;
}
.cta-bg-lines span {
  display: block; width: 1px;
  background: rgba(253,250,246,0.1);
}

/* ---- FOOTER ---- */
.footer { background: var(--espresso); padding: 80px 60px 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; max-width: 1200px; margin: 0 auto 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(184,147,90,0.1);
}
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 20px; }
.footer-brand .logo-main { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; color: var(--warm-white); }
.footer-brand .logo-sub { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-light); margin-top: 3px; }
.footer-brand p { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 300; line-height: 1.75; color: rgba(253,250,246,0.45); margin-bottom: 24px; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 2px; border: 1px solid rgba(184,147,90,0.25); display: flex; align-items: center; justify-content: center; color: rgba(253,250,246,0.5); font-size: 0.85rem; transition: border-color 0.3s, color 0.3s; }
.footer-social a:hover { border-color: var(--brass-light); color: var(--brass-light); }
.footer-nav h5 { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-family: var(--ff-body); font-size: 0.85rem; font-weight: 300; color: rgba(253,250,246,0.45); transition: color 0.3s; }
.footer-nav a:hover { color: var(--warm-white); }
.footer-contact h5 { font-family: var(--ff-body); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px; }
.footer-contact p { font-family: var(--ff-body); font-size: 0.82rem; font-weight: 300; color: rgba(253,250,246,0.45); line-height: 1.6; display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact i { color: var(--brass); margin-top: 2px; flex-shrink: 0; font-size: 0.75rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; max-width: 1200px; margin: 0 auto;
  font-family: var(--ff-body); font-size: 0.75rem; font-weight: 300;
  color: rgba(253,250,246,0.25); flex-wrap: wrap; gap: 8px;
}

/* ---- RESPONSIVE ---- */
.break-lg { display: none; }
@media (min-width: 1024px) { .break-lg { display: block; } }

@media (max-width: 1024px) {
  .nav { padding: 24px 40px; }
  .nav.scrolled { padding: 16px 40px; }
  .hero-content { padding: 0 40px; }
  .hero-badge { display: none; }
  .intro { padding: 80px 40px; }
  .intro-grid { gap: 48px; }
  .projects { padding: 80px 40px; }
  .services-snap { padding: 80px 40px; }
  .snap-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { padding: 60px 40px; }
  .testimonials { padding: 80px 40px; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .test-featured { grid-column: 1 / -1; }
  .press { padding: 60px 40px; }
  .process-preview { padding: 80px 40px; }
  .cta-banner { padding: 80px 40px; }
  .footer { padding: 60px 40px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--espresso); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--warm-white) !important; }
  .nav-links .nav-cta { padding: 14px 40px; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero-content { padding: 0 24px; }
  .hero-scroll { display: none; }
  .hero-sub br { display: none; }

  .marquee-strip { display: none; }
  .intro { padding: 60px 24px; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image { height: 340px; }
  .intro-image-accent { display: none; }

  .projects { padding: 60px 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .proj-large, .proj-tall, .proj-wide, .proj-mid { grid-column: 1; grid-row: auto; }
  .proj-large .proj-img, .proj-tall .proj-img, .proj-wide .proj-img { height: 280px; min-height: auto; }

  .services-snap { padding: 60px 24px; }
  .snap-grid { grid-template-columns: 1fr; }

  .stats { padding: 48px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(184,147,90,0.2); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(184,147,90,0.2); }

  .testimonials { padding: 60px 24px; }
  .test-grid { grid-template-columns: 1fr; }
  .test-featured { grid-column: 1; }

  .press { padding: 40px 24px; }
  .press-logos { gap: 24px; }

  .process-preview { padding: 60px 24px; }
  .process-preview-inner { grid-template-columns: 1fr; gap: 48px; }

  .cta-banner { padding: 60px 24px; }
  .footer { padding: 48px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
