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

:root {
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #A07D2E;
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-card: #141414;
  --white: #F5F5F5;
  --gray: #8A8A8A;
}

html { scroll-behavior: smooth; }

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

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-decoration: none;
}
.nav-logo span { color: var(--white); font-weight: 400; font-size: 0.85rem; letter-spacing: 3px; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 24px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ─── SHARED ─── */
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 1rem; }
section { padding: 6rem 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.section-header p { color: var(--gray); max-width: 500px; margin: 0 auto; font-weight: 300; }
.page-content { padding-top: 80px; min-height: 100vh; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid var(--gold);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  padding: 1rem 2.5rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-outline:hover { background: rgba(201,168,76,0.1); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="40" height="40"><path d="M0 20h40M20 0v40" stroke="rgba(201,168,76,0.04)" stroke-width="0.5"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 550px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.08);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }

/* ─── SERVICE DETAIL (full layout) ─── */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  align-items: center;
}
.service-detail.reverse .service-detail-img { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail-img {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
}
.service-detail-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.3s;
}
.service-detail-img:hover img { filter: brightness(1); }
.service-detail-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.service-detail-content p {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.service-detail-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.service-detail-content ul li {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.service-detail-content ul li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
.service-detail-content .btn-primary {
  padding: 0.8rem 2rem;
  font-size: 0.8rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--gold);
}
.service-card p { color: var(--gray); font-size: 0.95rem; font-weight: 300; }

/* ─── WHY / STATS ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.why-item h3 { font-size: 2.5rem; color: var(--gold); font-family: 'Playfair Display', serif; margin-bottom: 0.3rem; }
.why-item p { color: var(--gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }

/* ─── ABOUT ─── */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}
.about-text p {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}
.value-card h3 { color: var(--gold); font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.value-card p { color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ─── PROCESS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.process-steps h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-steps p { color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ─── CONTACT ─── */
.contact-section { text-align: center; }
.contact-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-section > p { color: var(--gray); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; font-weight: 300; }
.contact-info { display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: center; gap: 0.6rem; color: var(--gold); font-size: 1rem; }
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input, .contact-form textarea {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  background: var(--gold);
  color: var(--black);
  padding: 1rem;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--gold-light); }

/* ─── COMMITMENT / WHY CHOOSE US ─── */
.commitment-content {
  max-width: 700px;
  margin: 0 auto;
}
.commitment-intro {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: center;
}
.commitment-list {
  list-style: none;
  margin-bottom: 2rem;
}
.commitment-list li {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.commitment-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}
.commitment-list li strong {
  color: var(--white);
}
.commitment-mission {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 400;
  text-align: center;
  font-style: italic;
}

/* ─── PROCESS DETAILED ─── */
.process-steps-detailed {
  max-width: 700px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.process-step .step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  line-height: 1;
  min-width: 50px;
}
.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── SERVICES OVERVIEW ─── */
.services-overview {
  max-width: 700px;
  margin: 0 auto 4rem;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 2rem;
}
.overview-item {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.overview-item:last-child { border-bottom: none; }
.overview-item strong { color: var(--white); }

/* ─── WALKTHROUGH STEPS (contact) ─── */
.walkthrough-steps {
  list-style: none;
  max-width: 400px;
  margin: 1.5rem auto 1.5rem;
  text-align: left;
}
.walkthrough-steps li {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.walkthrough-steps li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}
.walkthrough-note {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.contact-section strong { color: var(--gold); }

/* ─── WHO WE SERVE ─── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.serve-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  transition: all 0.3s;
}
.serve-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.serve-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 0.8rem;
}
.serve-card h3 { font-family: 'Playfair Display', serif; color: var(--gold); margin-bottom: 0.5rem; }
.serve-card p { color: var(--gray); font-size: 0.95rem; font-weight: 300; }

/* ─── SERVICE AREAS ─── */
.areas-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 700px;
  margin: 0 auto;
}
.area-tag {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 2rem 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}
footer span { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.footer-logo span { display: block; color: var(--white); font-weight: 400; font-size: 0.75rem; letter-spacing: 3px; }
.footer-brand p { color: var(--gray); font-size: 0.85rem; font-weight: 300; line-height: 1.7; }
.footer-nav h4, .footer-contact h4 {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.5rem; }
.footer-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.badge {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
}
.footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--black-light);
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-banner p { color: var(--gray); margin-bottom: 2rem; font-weight: 300; }

/* ─── STATS ROW ─── */
.stats-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.stats-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}
.stat-pill {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  flex: 1;
  min-width: 150px;
  max-width: 220px;
}
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.stat-label {
  display: block;
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.stats-cta {
  text-align: center;
}
.stats-cta p {
  color: var(--gray);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 3px;
}
.testimonial-card p {
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ─── OVERLAY ─── */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
}
.nav-overlay.open { display: block; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .hero h1 { font-size: 2.2rem; }
  .contact-info { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .footer-nav { align-items: center; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse .service-detail-img { order: 0; }
  .service-detail.reverse .service-detail-content { order: 0; }
  .service-detail-img img { height: 220px; }
  .services-hub { grid-template-columns: 1fr; }
}

/* Services Hub Cards */
.services-hub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hub-card {
  display: block;
  text-decoration: none;
  color: var(--white);
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.hub-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.hub-card-content {
  padding: 2rem;
}

.hub-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hub-card-content p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.card-link:hover {
  border-bottom-color: var(--gold);
}

.hub-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
