:root {
  --gold: #d4a94f;
}

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

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #111;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: #000;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 70px;   /* controls size */
  width: auto;
  height: auto;
  display: block;
}

.logo {
  max-width: 350px;   /* prevents it from stretching too wide */
  overflow: hidden;
}

.menu a {
  color: rgba(255,255,255,0.9);
  margin: 0 10px;
  font-size: 13px;
  text-decoration: none;
}

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

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  background: rgba(0,0,0,0.25);
}

/* HERO */
.hero {
  background: url('hero.png') no-repeat right center / cover;
  padding: 180px 0 140px;
  margin-top: 80px;
}

.hero-content {
  max-width: 560px;
  color: white;
}

.tag {
  color: var(--gold);
  font-size: 13px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin: 20px 0;
}

.subtext {
  color: rgba(255,255,255,0.85);
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.btn-primary {
  background: var(--gold);
  color: black;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 14px;
  color: white;
}

/* SERVICES */
.services {
  padding: 100px 0;
  text-align: center;
}

.section-tag {
  color: var(--gold);
  font-size: 22px;
}

.services h2,
.why-choose h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin: 15px 0 50px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  padding: 35px 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}





/* WHY CHOOSE */
.why-choose {
  padding: 100px 0;
  background: #f9f9f9;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px 25px;
  border-radius: 10px;
  text-align: left;
}

.why-card h3 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu { display: none; }

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

@media (max-width: 600px) {
  .cards,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}