:root {
  --navy: #071a3d;
  --navy-2: #0d234f;
  --gold: #b08a44;
  --gold-light: #d0b06e;
  --cream: #f8f5ef;
  --white: #ffffff;
  --text: #17233b;
  --muted: #6f7684;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-height: 64px;
  width: auto;
  background: rgba(255,255,255,0.92);
  padding: 8px 14px;
  border-radius: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-btn {
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 18px;
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(5, 18, 46, 0.55), rgba(5, 18, 46, 0.72)),
url("../images/hero-house.jpg") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,26,61,0.78) 0%, rgba(7,26,61,0.38) 45%, rgba(7,26,61,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 0 90px;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  font-weight: 600;
  margin: 0 0 24px;
  max-width: 760px;
}

.hero-text {
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.92);
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-gold {
  background: linear-gradient(180deg, #c39a52 0%, #9d7738 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-gold:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(208,176,110,0.12), transparent 22%),
    radial-gradient(circle at bottom right, rgba(208,176,110,0.12), transparent 20%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 90px 0;
}

.section-light {
  background: var(--cream);
  padding: 90px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 42px;
  text-align: center;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
  font-weight: 600;
  color: inherit;
}

.line {
  width: 90px;
  height: 1px;
  background: rgba(255,255,255,0.45);
}

.light-heading .line {
  background: rgba(176,138,68,0.55);
}

.light-heading h2 {
  color: var(--navy);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.service-icon {
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  margin: 0 0 14px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.about-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 24px;
  max-width: 500px;
}

.about-text p {
  margin: 0 0 18px;
  color: #24314b;
  max-width: 580px;
}

.about-highlight {
  font-weight: 600;
  color: var(--navy);
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  background: rgba(10, 31, 68, 0.4);
  box-shadow: var(--shadow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.trust-item {
  background: var(--white);
  border: 1px solid rgba(176,138,68,0.22);
  color: var(--navy);
  padding: 22px 18px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 22px rgba(10, 20, 40, 0.06);
}

.contact-wrap {
  max-width: 980px;
}

.contact-subtext {
  text-align: center;
  max-width: 640px;
  margin: -10px auto 34px;
  color: rgba(255,255,255,0.88);
}

.contact-form {
  max-width: 920px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 16px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  color: var(--text);
  background: #fff;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  margin-bottom: 22px;
}

.contact-form button {
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .site-nav {
    gap: 14px;
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    min-height: 360px;
    background: rgba(10, 31, 68, 0.4);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-header {
    position: relative;
    background: var(--navy);
  }

  .nav-wrap {
    flex-direction: column;
    gap: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 80px 0 70px;
  }

  .service-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-dark,
  .section-light {
    padding: 70px 0;
  }

  .line {
    width: 45px;
  }
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 31, 68, 0.9);
  color: #B08A44;
  border: 1px solid #B08A44;
  padding: 12px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  z-index: 1000;
  transition: all 0.3s ease;
}

#backToTop:hover {
  background: #B08A44;
  color: #0A1F44;
  transform: translateY(-3px);
}