/* ===== AURELIA HOME CSS ===== */
/* Aesthetic: Dark luxury editorial — obsidian + champagne gold + warm cream */

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

:root {
  --obsidian: #0d0c0b;
  --deep: #141210;
  --surface: #1a1714;
  --card: #201d19;
  --gold: #c9a96e;
  --gold-light: #e2c895;
  --gold-dark: #9e7d4a;
  --cream: #f5ede0;
  --cream-muted: #d4c4ae;
  --white: #ffffff;
  --text: #c8b99a;
  --text-dim: #7a6e60;
  --border: rgba(201,169,110,0.15);
  --ff-display: 'Cormorant Garamond', serif;
  --ff-body: 'Montserrat', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--obsidian);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(13,12,11,0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-text {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--gold);
  line-height: 1;
}
.logo-sub {
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-dim);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--obsidian);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 12px 28px;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 100%; height: 100vh;
  background: var(--deep);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { right: 0; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 20px 0; }
.mobile-menu ul li a {
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  transition: color 0.3s;
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mobile-menu .mob-cta {
  display: inline-block;
  margin-top: 20px;
  background: var(--gold);
  color: var(--obsidian) !important;
  font-family: var(--ff-body) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 40px;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 60px 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-grain {
  position: absolute;
  inset: 0;
  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='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,169,110,0.18) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(1000px) rotateX(60deg) scale(2);
  transform-origin: bottom;
  opacity: 0.6;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(0.97); }
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}
.dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}
.title-line { display: block; }
.italic { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--obsidian);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(201,169,110,0.3); }
.btn-primary.large { padding: 22px 48px; font-size: 12px; }

.btn-ghost {
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,169,110,0.3);
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 50px; left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: scrollHint 2s ease infinite;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
}

.hero-card {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.hero-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.hero-card-text {
  padding: 20px;
}
.card-rating { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.hero-card-text p {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.5;
}
.hero-card-text span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
}

/* IMG PLACEHOLDERS */
.img-placeholder {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.gold { background: linear-gradient(135deg, #2a2218 0%, #1e1a14 100%); }
.warm { background: linear-gradient(135deg, #231d15 0%, #2e2318 100%); }
.nude { background: linear-gradient(135deg, #1e1a15 0%, #28221a 100%); }
.gp-tone-1 { background: linear-gradient(135deg, #1a1614 0%, #251f18 100%); }
.gp-tone-2 { background: linear-gradient(135deg, #181614 0%, #221c16 100%); }
.gp-tone-3 { background: linear-gradient(135deg, #171512 0%, #201a14 100%); }
.gp-tone-4 { background: linear-gradient(135deg, #1b1712 0%, #271f17 100%); }
.gp-tone-5 { background: linear-gradient(135deg, #161411 0%, #1e1913 100%); }

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--obsidian);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 140px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.phi-image-wrap {
  position: relative;
  height: 620px;
}
.phi-img {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
}
.phi-img-1 {
  width: 75%; height: 75%;
  top: 0; left: 0;
}
.phi-img-2 {
  width: 55%; height: 55%;
  bottom: 0; right: 0;
  border: 4px solid var(--card);
}
.phi-badge {
  position: absolute;
  bottom: 100px; left: -20px;
  background: var(--gold);
  color: var(--obsidian);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 5;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  animation: badgePulse 3s ease infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.section-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 1px;
  background: var(--gold);
}
.section-tag.light { color: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 30px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }

.section-body {
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  font-weight: 300;
}

.btn-underline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  margin-top: 16px;
  transition: gap 0.3s;
}
.btn-underline:hover { gap: 18px; }

/* ANIMATIONS */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  animation: revealRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealRight {
  to { opacity: 1; transform: translateX(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }
.scroll-reveal.delay-5 { transition-delay: 0.5s; }

/* ---- SERVICES PREVIEW ---- */
.services-preview {
  padding: 100px 80px 120px;
  background: var(--deep);
}
.services-header { text-align: center; margin-bottom: 70px; }
.services-header .section-tag { justify-content: center; }
.services-header .section-tag::before { display: none; }
.section-tag.centered::before { display: none; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  display: block;
  text-decoration: none;
  background: var(--surface);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover { border-color: var(--border); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }

.sc-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 30px;
  transition: transform 0.4s;
}
.service-card:hover .sc-icon { transform: scale(1.2) rotate(-5deg); }
.sc-num {
  position: absolute;
  top: 24px; right: 30px;
  font-family: var(--ff-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.08);
  line-height: 1;
  transition: color 0.4s;
}
.service-card:hover .sc-num { color: rgba(201,169,110,0.15); }
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.service-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 300;
}
.sc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  color: var(--gold);
  margin-top: 24px;
  font-size: 14px;
  transition: var(--transition);
}
.service-card:hover .sc-arrow {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}

.services-cta { text-align: center; margin-top: 60px; }

/* ---- GALLERY PREVIEW ---- */
.gallery-preview {
  padding: 100px 80px;
  text-align: center;
}
.gp-header { margin-bottom: 60px; }

.gp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 240px 240px;
  gap: 6px;
  max-width: 1300px;
  margin: 0 auto 50px;
}
.gp-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gp-item.tall { grid-row: span 2; }
.gp-item .img-placeholder {
  height: 100%;
  transition: transform 0.6s ease;
}
.gp-item:hover .img-placeholder { transform: scale(1.07); }
.gp-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  transform: translateY(100%);
  transition: transform 0.4s;
}
.gp-item:hover .gp-label { transform: translateY(0); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: var(--transition);
}
.btn-ghost-light:hover {
  background: var(--gold);
  color: var(--obsidian);
  border-color: var(--gold);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: 120px 80px;
  background: var(--surface);
  text-align: center;
}
.testi-header { margin-bottom: 60px; }
.testi-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.testi-overall .testi-stars { color: var(--gold); font-size: 16px; }
.testi-overall span { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }

.testi-track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 40px;
  position: relative;
}
.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--card);
  padding: 50px 40px;
  text-align: left;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-4px); }
.tq { color: var(--gold); font-size: 24px; margin-bottom: 20px; }
.testi-card p {
  font-family: var(--ff-display);
  font-size: 19px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 30px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.ta-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.tn-btn {
  width: 48px; height: 48px;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.tn-btn:hover { background: var(--gold); color: var(--obsidian); border-color: var(--gold); }

/* ---- TRUST BAR ---- */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 50px 80px;
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 50px;
}
.trust-item i { color: var(--gold); font-size: 20px; }
.trust-item span { font-size: 12px; letter-spacing: 1.5px; color: var(--cream-muted); }
.trust-divider { width: 1px; height: 50px; background: var(--border); }

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 140px 80px;
  text-align: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.1) 0%, transparent 70%);
}
.cta-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.1);
  animation: ctaOrb 6s ease infinite;
}
.cta-orb::before, .cta-orb::after {
  content: '';
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.06);
}
.cta-orb::after { inset: 120px; }
@keyframes ctaOrb {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.05); }
}

.cta-banner-content { position: relative; z-index: 2; }
.cta-banner-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin: 20px 0 24px;
}
.cta-banner-content p { color: var(--text); max-width: 480px; margin: 0 auto 40px; }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.btn-call:hover { color: var(--gold); }
.btn-call i { color: var(--gold); }

/* ---- FOOTER ---- */
.footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  padding: 80px 80px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 13px;
  transition: color 0.3s;
}
.footer-links ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-links ul li a { transition: color 0.3s, padding-left 0.3s; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact p i { color: var(--gold); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 80px;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .nav { padding: 20px 40px; }
  .nav.scrolled { padding: 14px 40px; }
  .hero { padding: 140px 40px 80px; }
  .hero-card { right: 40px; width: 240px; }
  .philosophy { grid-template-columns: 1fr; gap: 60px; padding: 100px 40px; }
  .phi-image-wrap { height: 400px; }
  .services-preview { padding: 80px 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-preview { padding: 80px 40px; }
  .gp-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: auto; }
  .gp-item.tall { grid-row: span 1; }
  .testimonials { padding: 80px 40px; }
  .trust-bar { padding: 40px 40px; }
  .trust-item { padding: 0 24px; }
  .cta-banner { padding: 100px 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; padding: 60px 40px 40px; }
  .footer-bottom { padding: 20px 40px; }
}

@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 120px 24px 80px; }
  .hero-card { display: none; }
  .hero-title { font-size: 44px; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .gp-grid { grid-template-columns: repeat(2,1fr); }
  .testi-card { flex: 0 0 100%; }
  .trust-bar { flex-direction: column; gap: 24px; }
  .trust-divider { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .phi-image-wrap { height: 320px; }
  .phi-badge { left: 0; }
  .cta-actions { flex-direction: column; }
  .hero-scroll-hint { display: none; }
}
