:root {
  --gold: #d4af37;
  --black: #111111;
  --white: #ffffff;
  --muted: #f5f5f5;
  --text: #222222;
  --soft-border: rgba(255,255,255,0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #ffffff;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #ececec;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  height: 72px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-dark {
  background: #222;
  color: #fff;
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e0e0e, #1f1f1f);
  color: white;
  padding: 72px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.80), rgba(0,0,0,0.72)),
    url("/logo.png") center center / 520px auto no-repeat;
  opacity: 1;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  margin: 0 0 18px;
  max-width: 700px;
}

.hero-text {
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 720px;
  color: #f1f1f1;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--soft-border);
  color: #f5e19c;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-card {
  background: rgba(255,255,255,0.98);
  color: var(--black);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.24);
  max-width: 430px;
  width: 100%;
  justify-self: end;
}

.hero-card h2 {
  margin: 0 0 6px;
  font-size: 2rem;
  line-height: 1.15;
}

.small {
  color: #666;
  margin: 0 0 20px;
  font-size: 0.98rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid .full-span {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #222;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.18);
}

.estimate-box,
.booking-summary {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #faf8ef;
  border: 1px solid #eee1a4;
}

.estimate-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.estimate-label {
  display: block;
  font-size: 0.86rem;
  color: #666;
  margin-bottom: 6px;
}

#estimateTotal,
#estimateDeposit,
#summaryTotal,
#summaryDeposit {
  font-size: 1.35rem;
}

.section {
  padding: 78px 0;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0;
  margin-bottom: 14px;
  text-align: center;
}

.section-copy,
.center p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.7;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

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

.booking {
  background: var(--muted);
}

.booking-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: start;
}

.booking-copy h2 {
  text-align: left;
}

.booking-copy p {
  line-height: 1.7;
}

.booking-form {
  background: #fff;
  color: var(--black);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.friendly-quote {
  font-size: 1.08rem;
  font-style: italic;
  color: #444;
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  margin-top: 22px;
}

.center {
  text-align: center;
}

.seo-block {
  background: #fffdf7;
}

.site-footer {
  background: var(--black);
  color: #fff;
  padding: 24px 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-card {
    justify-self: stretch;
    max-width: 100%;
  }

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

  .booking-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    min-height: 78px;
  }

  .logo {
    height: 60px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 54px 0;
  }

  .hero-bg {
    background:
      linear-gradient(rgba(0,0,0,0.84), rgba(0,0,0,0.78)),
      url("/logo.png") center center / 340px auto no-repeat;
  }

  .hero-copy h1 {
    font-size: 2.4rem;
  }

  .form-grid,
  .estimate-box,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}