/* ═══════════════════════════════════════════════
   Aurista Interiors — Main Stylesheet
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --cream: #faf8f4;
  --warm-white: #f5f2ec;
  --gold: #c8a96e;
  --gold-light: #e8d5b0;
  --gold-dark: #a0803a;
  --charcoal: #2c2c2c;
  --mid: #5a5550;
  --light-mid: #8a8480;
  --border: #e2dbd0;
  --accent-green: #7a8c6e;
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  transition: all 0.3s ease;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 2px;
}
.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
}

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

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 2px;
}

.nav-logo-text span:last-child {
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  display: block;
  padding: 26px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-dark);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown > a::before {
  content: '▾';
  margin-left: 5px;
  font-size: 0.7rem;
  color: var(--gold);
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  min-width: 220px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
  transition:
    background 0.2s,
    color 0.2s;
}
.dropdown-menu a:last-child {
  border-bottom: none;
}
.dropdown-menu a:hover {
  background: var(--warm-white);
  color: var(--gold-dark);
}
.dropdown-menu a::after {
  display: none;
}

.nav-cta {
  background: var(--gold);
  color: white !important;
  padding: 10px 22px !important;
  font-size: 0.72rem !important;
  letter-spacing: 2px;
  border: 1px solid var(--gold);
  transition:
    background 0.3s,
    color 0.3s !important;
}
.nav-cta:hover {
  background: transparent !important;
  color: var(--gold-dark) !important;
}
.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  padding: 20px 5%;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  padding: 12px 0;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.mobile-menu a:hover {
  color: var(--gold-dark);
}
.mobile-menu a:last-child {
  border-bottom: none;
}

/* ── PAGES ── */
.page {
  display: none;
  min-height: 100vh;
  padding-top: 72px;
}
.page.active {
  display: block;
}

/* ── SECTIONS COMMON ── */
section {
  padding: 90px 8%;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.section-label span {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.section-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
}
.section-desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 560px;
  margin-top: 16px;
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: white;
  padding: 14px 32px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.btn-white {
  background: white;
  color: var(--gold-dark);
  padding: 16px 36px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover {
  background: var(--charcoal);
  color: white;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3530 100%);
  padding: 80px 8% 60px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 14px;
  max-width: 500px;
  margin-inline: auto;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.breadcrumb span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}
.breadcrumb span.cur {
  color: var(--gold);
  cursor: default;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 70px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: white;
  font-weight: 400;
  max-width: 500px;
}

/* ── FOOTER ── */
footer {
  background: #1e1c1a;
  padding: 70px 8% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: white;
  letter-spacing: 2px;
}
.footer-brand .tagline {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  margin-bottom: 18px;
  display: block;
}
.footer-brand p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
}
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul li a:hover {
  color: var(--gold-light);
}
.footer-col p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  font-weight: 300;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-band {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }
  section {
    padding: 60px 5%;
  }
  .page-hero {
    padding: 60px 5% 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
