/* ============================================
   FOREVER LUXURY — Design System & Styles
   Luxury White Glove Delivery, Las Vegas
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --black: #0a0a0a;
  --black-light: #111111;
  --black-lighter: #1a1a1a;
  --black-card: #141414;
  --gold: #c9a84c;
  --gold-light: #e5c76b;
  --gold-dark: #a8862f;
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e5c76b 50%, #c9a84c 100%);
  --white: #ffffff;
  --white-muted: #b0b0b0;
  --white-dim: #707070;
  --red: #c0392b;
  --green: #27ae60;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.15);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white-muted);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background-color: var(--black-light);
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section__title {
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--white-muted);
  max-width: 640px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* --- Grid --- */
.grid {
  display: grid;
  gap: 30px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--white:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--small {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header__logo-text span {
  display: block;
  font-size: 0.6rem;
  color: var(--white-muted);
  letter-spacing: 3px;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: all var(--transition);
}

.nav__dropdown a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  padding-left: 24px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__login {
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.header__login:hover {
  color: var(--white);
  border-color: var(--white);
}

.header__cta {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger__line {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger--active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger--active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger--active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.hero__title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--white-muted);
  margin-bottom: 16px;
  line-height: 1.7;
  max-width: 640px;
}

.hero__trust {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero__trust strong {
  color: var(--white-muted);
}

.hero__decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero__decoration::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(201, 168, 76, 0.05);
  border-radius: 50%;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  transition: all var(--transition);
}

.card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.card__text {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card__link:hover {
  gap: 10px;
}

/* Service card variant */
.card--service {
  text-align: center;
  padding: 50px 30px;
}

.card--service .card__icon {
  font-size: 3rem;
}

/* Audience card variant */
.card--audience {
  position: relative;
  padding: 50px 30px 40px;
  border-top: 2px solid var(--gold);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}

.process__step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  counter-increment: step;
}

.process__step:last-child {
  border-bottom: none;
}

.process__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.process__content h3 {
  margin-bottom: 8px;
}

.process__content p {
  color: var(--white-muted);
  font-size: 0.95rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold);
}

.faq-item__icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 24px;
  text-align: center;
  transition: all var(--transition);
}

.area-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-gold);
}

.area-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.area-card__name {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.area-card__desc {
  font-size: 0.85rem;
  color: var(--white-dim);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--black-light);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--white-muted);
  margin-bottom: 32px;
  position: relative;
}

.cta-banner .btn-group {
  justify-content: center;
  position: relative;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-light);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--white-dim);
  max-width: 300px;
  line-height: 1.7;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--white-dim);
}

.footer__contact li span:first-child {
  flex-shrink: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.modal-overlay--active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--black-light);
  border: 1px solid rgba(201, 168, 76, 0.2);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
  position: relative;
}

.modal-overlay--active .modal {
  transform: translateY(0);
}

.modal__header {
  padding: 30px 30px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.modal__header h2 {
  font-size: 1.5rem;
}

.modal__close {
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition);
}

.modal__close:hover {
  color: var(--white);
}

.modal__body {
  padding: 30px;
}

/* ============================================
   FORMS
   ============================================ */
.form__row {
  margin-bottom: 20px;
}

.form__row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--white-dim);
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23707070' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__submit {
  width: 100%;
  margin-top: 8px;
}

.form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.form__success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.form__success h3 {
  color: var(--gold);
  margin-bottom: 12px;
}

.form__success p {
  color: var(--white-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info__text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

/* ============================================
   PAGE HERO (Interior pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--black);
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero h1 {
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--white-dim);
  position: relative;
}

.breadcrumb a {
  color: var(--white-dim);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
}

/* ============================================
   SERVICE PAGE DETAIL
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__content h2 {
  margin-bottom: 20px;
}

.service-detail__content p {
  margin-bottom: 16px;
  color: var(--white-muted);
}

.service-detail__list {
  margin: 24px 0;
}

.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--white-muted);
  font-size: 0.95rem;
}

.service-detail__list li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__image {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-4px);
}

.blog-card__image {
  aspect-ratio: 16/9;
  background: var(--black-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 0.85rem;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.blog-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-heading);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.6;
}

/* ============================================
   LANDING PAGE SPECIFICS
   ============================================ */
.landing-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.landing-stat {
  padding: 30px 16px;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.landing-stat__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.landing-stat__label {
  font-size: 0.85rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.landing-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.landing-feature__icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-size: 1.3rem;
}

.landing-feature__text h4 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.landing-feature__text p {
  font-size: 0.9rem;
  color: var(--white-muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   404 PAGE
   ============================================ */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.page-404 h1 {
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404 h2 {
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--white-muted);
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  .hero__title { font-size: 2.75rem; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail--reverse { direction: ltr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .landing-stats { grid-template-columns: repeat(2, 1fr); }
  .landing-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__decoration { display: none; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  html { font-size: 15px; }

  .section { padding: 70px 0; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero__title { font-size: 2.2rem; }

  /* Mobile Nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--black-light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: right var(--transition);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
    z-index: 999;
  }

  .nav--open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0;
  }

  .nav__link {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    min-width: 0;
  }

  .nav__dropdown a {
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .header__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
  }

  .header__login,
  .header__cta {
    width: 100%;
    text-align: center;
    display: block;
  }

  .hamburger { display: flex; }

  /* Grid */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .blog-grid { grid-template-columns: 1fr; }
  .landing-stats { grid-template-columns: 1fr 1fr; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }

  .form__row--half { grid-template-columns: 1fr; }

  .process__step { flex-direction: column; gap: 16px; }

  .cta-banner { padding: 60px 0; }

  .page-404 h1 { font-size: 5rem; }

  .section__header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.8rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .landing-stats { grid-template-columns: 1fr; }
  .modal__body { padding: 20px; }
  .modal__header { padding: 20px 20px 0; }
}
