:root {
  --gold: #D4A017;
  --black: #0d0d0d;
  --surface: #141414;
  --text: #f0ece0;
  --text-muted: #888;
  --border: rgba(212,160,23,0.2);
  --surface2: #1c1c1c;
  --surface3: #242424;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: var(--black);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
}
nav{
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    padding: 0 5%;
    background: rgba(13,13,13,0.95);
    border-bottom: 1px solid var(--border);
    display:flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-phone {
  background: var(--gold);
  color: var(--black);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s;
}

.nav-phone:hover {
  background: #e8b820;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--black);
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}
/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 24px;
  white-space: nowrap;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #e8b820;
}

.btn-ghost {
  color: var(--text);
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-content {
  max-width: 680px;
}
.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Services Section */
#book {
  padding: 100px 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 480px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
}

.booking-form {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder {
  color: #555;
}

.form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 16px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #e8b820;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,160,23,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--gold);
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 14px;
}
/*services section*/
#services {
  padding: 100px 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 32px;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-price {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
/*coverage*/
#coverage {
  padding: 100px 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 48px auto 0;
}

.coverage-intro {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.coverage-areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.area-pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.coverage-cta {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.coverage-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
}

.coverage-cta p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.coverage-phone {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  margin-bottom: 8px;
}

.coverage-hours {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
/* Testimonials */
#reviews {
  padding: 100px 5%;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 48px auto 0;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: rgba(212,160,23,0.15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 16px;
}

.review-name {
  font-size: 14px;
  font-weight: 500;
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
}
/* Footer */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
  line-height: 1.8;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 1100px;
  margin: 0 auto;
}
#services {
  padding: 100px 5%;
  text-align: center;
}

#coverage {
  padding: 100px 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

#reviews {
  padding: 100px 5%;
  text-align: center;
}
.section-sub {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero-mobile-form {
  display: none;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .hero-grid-layout { grid-template-columns: 1fr; }
  .hero-form { display: none; }
  .hero-mobile-form { display: block; }
  .hero h1 { font-size: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 40px; white-space: normal; }
  .section-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .coverage-phone { font-size: 28px; }
}

@media (min-width: 1800px) {
  .services-grid,
  .coverage-layout,
  .reviews-grid,
  .footer-grid,
  .footer-bottom {
    max-width: 1600px;
  }
  .hero h1 { font-size: 100px; }
  .hero-grid-layout { max-width: 1600px; }
}