:root {
  --black: #050505;
  --charcoal: #151515;
  --gold: #b08945;
  --gold-light: #f0e1c3;
  --cream: #f8f5f0;
  --red: #a43d3d;
  --text: #2c2c2c;
  --muted: #666666;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
  background: var(--cream);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(176, 137, 69, 0.2);
  backdrop-filter: blur(14px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 42px;
}

.nav-logo span {
  display: block;
  line-height: 1.05;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.nav-menu a {
  color: var(--gold);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold-light);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid rgba(176, 137, 69, 0.35);
  color: var(--gold);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6.5rem 1.5rem 3rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.72) 100%),
    url('/assets/home-refresh/night-beacon-wide.jpg') center/cover no-repeat;
}

.hero-content {
  max-width: 820px;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 3.7rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.08;
  text-shadow: 0 4px 16px rgba(0,0,0,0.45);
}

.hero-logo {
  margin: 1.8rem auto;
}

.hero-logo img {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.6vw, 2.9rem);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.16;
  text-shadow: 0 3px 12px rgba(0,0,0,0.45);
}

.hero-buttons,
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 1rem 1.6rem;
  border-radius: 8px;
  border: 2px solid transparent;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary,
.btn-cta-primary {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.btn-primary:hover,
.btn-cta-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(176, 137, 69, 0.28);
}

.btn-secondary,
.btn-cta-secondary {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.btn-secondary:hover,
.btn-cta-secondary:hover {
  background: var(--gold);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(176, 137, 69, 0.24);
}

.features {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--cream) 100%);
  padding: 5rem 1.5rem;
}

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

.section-title,
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text);
}

.section-subtitle,
.cta-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #f7ecd7 6%, #ffffff 100%);
  padding: 2rem 1.5rem;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(176, 137, 69, 0.35);
}

.feature-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #3b2c16);
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-real-icon {
  width: 92px;
  height: 68px;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.feature-photo-icon img {
  object-fit: cover;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.38rem;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.feature-description {
  color: var(--muted);
  font-size: 1rem;
}

.cta {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.84)),
    url('/assets/home-refresh/rooftop-hero-twilight.jpg') center/cover no-repeat;
  padding: 5rem 1.5rem 2.25rem;
}

.cta-title,
.cta-subtitle {
  color: var(--gold-light);
}

.cta-footer {
  max-width: 1200px;
  margin: 2.75rem auto 0;
  padding: 2rem 0 0;
  text-align: center;
  border-top: 1px solid rgba(240, 225, 195, 0.22);
}

.footer-logo {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-text {
  color: var(--gold-light);
  opacity: 0.9;
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-logo {
    font-size: 1.2rem;
  }
}

@media (max-width: 760px) {
  .nav-container {
    padding: 0.9rem 1rem;
  }

  .nav-logo {
    font-size: 1.05rem;
    gap: 0.55rem;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(176, 137, 69, 0.25);
    border-radius: 16px;
    padding: 1rem;
  }

  .nav-menu.mobile-active {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 68vh;
    background-attachment: scroll;
    padding-top: 6.25rem;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }
}
