/* Interior Pages Shared Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --navy-light: #162036;
  --navy-medium: #1a2744;
  --gold: #c9a96e;
  --gold-light: #dfc291;
  --gold-dark: #a68b4d;
  --white: #ffffff;
  --cream: #faf9f7;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

html { overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.text-gold { color: var(--gold); }
.text-muted { opacity: 0.7; }

/* Navigation with Dropdowns */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
}
.nav.scrolled {
  padding: 1rem 4rem;
}
.logo img {
  height: 40px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-item {
  position: relative;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link .arrow {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.nav-item:hover .arrow {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  min-width: 200px;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}
.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(255,255,255,0.05);
}
.nav-cta {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

/* Interior Hero */
.interior-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.interior-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.interior-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10,22,40,0.4) 0%, rgba(10,22,40,0.8) 100%);
}
.interior-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}
.interior-hero .breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.interior-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.interior-hero .breadcrumb a:hover {
  color: var(--gold);
}
.interior-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.interior-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 80px 4rem;
}
.section-light {
  background: var(--cream);
  color: var(--navy);
}
.section-dark {
  background: var(--navy-light);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.05rem;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Cards */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-light {
  background: white;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.card-light:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}
.card-image {
  height: 200px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-image img {
  transform: scale(1.1);
}
.card-content {
  padding: 1.5rem;
}
.card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.card-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}
.card-light .card-content h3,
.card-light .card-content h4 {
  color: var(--navy);
}
.card-light .card-content p {
  color: #64748b;
}

/* Feature Boxes */
.feature-box {
  text-align: center;
  padding: 2rem;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-box p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  padding: 80px 4rem;
}
.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
footer {
  background: #050d18;
  padding: 60px 4rem 30px;
  text-align: center;
}
.footer-logo img {
  height: 50px;
  margin-bottom: 1.5rem;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 2rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-legal {
  font-size: 0.8rem;
  opacity: 0.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr; gap: 30px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-item {
    width: 100%;
  }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.05);
    margin-top: 0.5rem;
  }
  .mobile-toggle {
    display: flex;
  }
  .section {
    padding: 60px 1.5rem;
  }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .interior-hero {
    height: 50vh;
    min-height: 350px;
  }
  footer {
    padding: 40px 1.5rem 20px;
  }
}
