:root {
  --black: #0c0b0a;
  --charcoal: #1a1817;
  --cream: #faf6ef;
  --gold: #c9a227;
  --gold-light: #e6c866;
  --gold-gradient: linear-gradient(135deg, #b8860b, #e6c866, #b8860b);
  --text-muted: #6b645a;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  font-weight: 300;
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--black);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold {
  background: var(--gold-gradient);
  background-size: 200% 200%;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201, 162, 39, 0.5); }
.btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: #fff; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 11, 10, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,162,39,0.25);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand-logo { height: 52px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  color: #f3ede0;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; color: var(--gold-light); }
.header-cta { padding: 10px 24px; font-size: 0.75rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(10,9,8,0.55) 0%, rgba(10,9,8,0.75) 60%, rgba(10,9,8,0.95) 100%), url('https://images.pexels.com/photos/7750114/pexels-photo-7750114.jpeg');
  background-size: cover;
  background-position: center;
  padding: 140px 24px 100px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-logo {
  width: 130px;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
}
.hero h1 {
  font-family: 'Tangerine', cursive;
  font-size: clamp(4.5rem, 12vw, 8rem);
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-tagline {
  color: #fff;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 400;
}
.hero-sub {
  color: #e9e3d6;
  max-width: 480px;
  margin: 18px auto 34px;
  font-size: 1.05rem;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  font-size: 1.4rem;
  animation: bob 2s infinite;
  z-index: 2;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* Trust bar */
.trust-bar {
  background: var(--black);
  color: var(--cream);
  padding: 18px 24px;
  text-align: center;
}
.trust-inner {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.stars { color: var(--gold-light); letter-spacing: 3px; }

/* Section heading */
.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  padding: 0 24px;
}
.section-heading h2 { font-size: clamp(2rem, 4vw, 2.6rem); }
.section-sub { color: var(--text-muted); margin-top: 12px; }
.section-heading.light .eyebrow { color: var(--gold-light); }
.section-heading.light h2, .section-heading.light .section-sub { color: #fff; }

/* Services */
.services { padding: 110px 24px 90px; max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20,15,5,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,15,5,0.14); }
.service-card img { height: 240px; width: 100%; object-fit: cover; }
.service-card-body { padding: 26px 24px 30px; }
.service-card-body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: 0.95rem; }
.services-cta { text-align: center; margin-top: 50px; }

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--black);
}
.about-image { min-height: 420px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.about-content {
  color: var(--cream);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content h2 { color: #fff; margin-bottom: 20px; }
.about-content p { color: #d8d1c2; margin-bottom: 16px; font-weight: 300; }
.about-content .btn { margin-top: 12px; align-self: flex-start; border-color: var(--gold-light); color: var(--gold-light); }
.about-content .btn:hover { background: var(--gold-light); color: var(--black); }

/* Reviews */
.reviews { padding: 100px 24px; max-width: 1200px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.review-card {
  background: #fff;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
}
.review-card .stars { display: block; margin-bottom: 14px; }
.review-card p { color: var(--charcoal); font-style: italic; }

/* Location */
.location { background: var(--black); padding: 100px 24px 90px; }
.map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,162,39,0.35);
}
.location-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Footer */
.site-footer {
  background: var(--black);
  color: #cfc8b8;
  text-align: center;
  padding: 60px 24px 40px;
  border-top: 1px solid rgba(201,162,39,0.25);
}
.footer-logo { width: 90px; margin: 0 auto 14px; }
.footer-tagline { letter-spacing: 2px; text-transform: uppercase; font-size: 0.75rem; color: var(--gold-light); margin-bottom: 18px; }
.footer-social {
  display: inline-block;
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 8px 22px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.footer-social:hover { background: var(--gold-light); color: var(--black); }
.footer-copy { font-size: 0.75rem; color: #8a8377; }

/* Responsive */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 280px; }
  .about-content { padding: 50px 28px; }
}
