/* ─── FONT AWESOME ICON FIX ─── */
.fa-solid, .fa-regular, .fa-brands { font-size: inherit; }

/* ─── CSS VARIABLES ─── */
:root {
  --bg:          #0d0d0f;
  --bg2:         #111114;
  --bg3:         #18181d;
  --surface:     #1e1e25;
  --border:      #2a2a35;
  --gold:        #c9a84c;
  --gold-light:  #e8c96d;
  --gold-dark:   #9a7a30;
  --text:        #f0ede8;
  --text-muted:  #8b8792;
  --text-dim:    #5a5660;
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ─── */
.gold       { color: var(--gold); }
.container  { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.hidden     { display: none !important; }
.w-full     { width: 100%; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
}
.navbar.scrolled {
  background: rgba(13,13,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}
.logo-icon { font-size: 1.6rem; }
.logo-text  { background: linear-gradient(135deg,var(--gold-light),var(--gold)); -webkit-background-clip:text;-webkit-text-fill-color:transparent; }
.nav-links  { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 25px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGES ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,15,0.92) 0%, rgba(13,13,15,0.6) 60%, rgba(13,13,15,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  backdrop-filter: blur(10px);
  width: fit-content;
  gap: 1.5rem;
}
.badge { display: flex; flex-direction: column; align-items: center; }
.badge-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.badge-lbl { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.badge-sep { width: 1px; height: 2.5rem; background: var(--border); }
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(1); opacity:1; }
  100% { transform: scaleY(0.3); opacity:0; }
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
  border-bottom: 1px solid var(--border);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08), transparent 70%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0d0d0f;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #f5d97a, var(--gold));
  box-shadow: 0 6px 30px rgba(201,168,76,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ─── TICKER ─── */
.ticker {
  background: var(--gold);
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 22s linear infinite;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d0d0f;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg2); }
.section-super {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.2;
  color: var(--white);
}
.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ─── SERVICE CARDS ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { border-color: var(--gold-dark); transform: translateY(-5px); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--white); }
.card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ─── GALLERY ─── */
.gallery-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.gallery-img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover .gallery-img { transform: scale(1.04); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.gallery-caption h3 { font-family: 'Playfair Display',serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.3rem; }
.gallery-caption p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ─── BRANDS ─── */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.brand-pill {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  transition: var(--transition);
  cursor: default;
}
.brand-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--surface), var(--bg3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 1.5rem;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { font-family: 'Playfair Display',serif; font-size: 2rem; font-weight: 700; }
.cta-inner p  { color: var(--text-muted); margin-top: 0.4rem; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title { margin-top: 0.5rem; }
.about-p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.97rem; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family:'Playfair Display',serif; font-size: 2rem; font-weight:700; color: var(--gold); }
.stat-lbl { font-size: 0.78rem; text-transform:uppercase; letter-spacing:0.1em; color: var(--text-muted); }
.about-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.about-img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.about-img-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: #0d0d0f;
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.badge-icon { font-size: 1.2rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.value-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.value-item:hover { border-color: var(--gold-dark); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-item p  { font-size: 0.88rem; color: var(--text-muted); }

/* ─── REVIEWS ─── */
.rating-summary {
  text-align: center;
  margin-bottom: 3rem;
}
.rating-big { font-size: 3rem; font-weight: 700; font-family: 'Playfair Display',serif; }
.rating-sub { color: var(--text-muted); margin-top: 0.3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.review-card:hover { border-color: var(--gold-dark); transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--gold-dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; }
.review-loc { font-size: 0.78rem; color: var(--text-muted); }
.review-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
}

/* ─── FORMS ─── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-input, .form-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter',sans-serif;
  outline: none;
  transition: var(--transition);
  margin-bottom: 1rem;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 130px; }
.star-picker {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.star-btn {
  font-size: 1.6rem;
  color: var(--border);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.star-btn.active { color: var(--gold); }
.star-picker:hover .star-btn { color: var(--border); }
.star-picker .star-btn:hover,
.star-picker .star-btn:hover ~ .star-btn { color: var(--border); }

/* ─── LEGACY BAND ─── */
.legacy-band {
  background: linear-gradient(135deg, #1a1505, #0d0d0f);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 2rem 1.5rem;
}
.legacy-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.legacy-icon {
  font-size: 2.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.legacy-text { flex: 1; }
.legacy-text strong { color: var(--gold-light); font-size: 1.05rem; }
.legacy-text p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.3rem; }
.legacy-badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0d0d0f;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius);
  line-height: 1.2;
  flex-shrink: 0;
}

/* ─── CARD FEATURED ─── */
.card-featured {
  background: linear-gradient(135deg, #1a1505, var(--surface));
  border-color: rgba(201,168,76,0.35);
  position: relative;
}
.card-featured::before { opacity: 1 !important; }
.card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0d0d0f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

/* ─── EXPERTISE GRID ─── */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.expertise-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.expertise-item:hover { border-color: var(--gold-dark); transform: translateY(-4px); }
.expertise-ico {
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.expertise-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.expertise-item p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ─── FOOTER LOGO ROW ─── */
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
}
.review-success {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
  color: var(--gold-light);
  font-weight: 500;
}
.review-form { text-align: left; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.info-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.info-icon { font-size: 1.4rem; margin-top: 0.1rem; flex-shrink:0; }
.info-block h4 { font-size: 0.95rem; font-weight: 600; color: var(--gold); margin-bottom: 0.3rem; }
.info-block p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form .form-input,
.contact-form .form-textarea { margin-bottom: 1rem; }
.map-section { padding: 3rem 0 5rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; align-items: center; }
.footer-link { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition); cursor: pointer; }
.footer-link:hover { color: var(--gold); }
.footer-addr { text-align: right; }
.footer-addr p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }
.footer-copy {
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-addr { text-align: center; }
  .about-img-badge { left: 50%; transform: translateX(-50%); bottom: -1.5rem; }
  .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,13,15,0.98); justify-content: center; align-items: center; gap: 2.5rem; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.4rem; }
  .hamburger { display: flex; z-index: 1001; }
  .hero-scroll-hint { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-badges { gap: 1rem; }
  .badge-sep { display: none; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero-title { font-size: 2.2rem; }
  .hero-content { padding-top: 100px; }
}
