:root {
  --blue-deep: #24304a;
  --blue: #3a5c86;
  --sand: #f4f1ec;
  --mist: #f7f6f3;
  --gold: #b88954;
  --text-dark: #1f2328;
  --text-muted: #5f6773;
  --white: #ffffff;
  --border: #e6e3dd;
  --shadow: 0 8px 20px rgba(32, 38, 45, 0.06);
  --radius: 14px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  display: block;
}

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

.header {
  background: var(--blue-deep);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.85rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav a:hover,
.nav a:focus-visible {
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.call-button {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 70vh;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 100%;
}

.hero-media img {
  width: 100vw;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero-content .container {
  display: grid;
  gap: 12px;
  color: var(--white);
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--white);
}

.hero h2 {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 600;
}

.hero-tagline {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero .button {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  display: inline-block;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-phone {
  font-weight: 700;
  font-size: 1.2rem;
}

.services-section {
  background: var(--mist);
  padding: 60px 0;
}

.services-layout {
  display: grid;
  gap: 24px;
}

.services-heading {
  text-align: left;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--blue-deep);
  font-weight: 700;
  margin-bottom: 6px;
}

.services-row {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.services-content {
  width: 420px;
  max-width: 100%;
}

.service-list {
  display: grid;
  gap: 20px;
}

.service-block h3 {
  font-size: 1.2rem;
  color: var(--blue-deep);
  margin-bottom: 4px;
}

.service-subtitle {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.service-text {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.service-bullets {
  margin-top: 10px;
  padding-left: 20px;
  color: var(--text-muted);
}

.service-bullets li {
  padding: 4px 0;
}


.services-image {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.services-image img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.section {
  padding: 70px 0;
}

.section-muted {
  background: var(--sand);
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--blue-deep);
  margin-bottom: 26px;
}

.center-muted {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 22px;
}


.about-copy {
  display: grid;
  gap: 14px;
  color: var(--text-muted);
  max-width: 920px;
  margin: 0 auto 24px;
}

.pricing-details {
  margin-top: 18px;
  color: var(--text-muted);
}

.pricing-details h3,
.pricing-details h4 {
  color: var(--blue-deep);
  margin: 18px 0 8px;
}

.pricing-details ul {
  list-style: none;
  padding-left: 0;
}

.pricing-details li {
  padding: 4px 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.gallery img {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
}

.quote-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.quote-section ul {
  list-style: none;
  color: var(--text-muted);
  margin-top: 14px;
}

.quote-section li {
  padding: 6px 0;
}

.quote-card {
  background: var(--white);
  color: var(--text-dark);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.footer {
  background: var(--blue-deep);
  color: var(--white);
  padding: 36px 0;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer-nav {
  display: flex;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.sticky-call {
  display: none;
}

@media (max-width: 900px) {
  .header-inner {
    flex-direction: column;
    justify-items: center;
    text-align: center;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .services-row {
    flex-direction: column;
  }

  .services-content {
    width: 100%;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-media img {
    min-height: 60vh;
  }

  .hero-content {
    text-align: center;
    justify-content: center;
  }

  .hero-content .container {
    align-items: center;
  }

  .services-image {
    justify-content: center;
    height: auto;
  }

  .services-image img {
    width: 100%;
    max-height: none;
    height: auto;
    object-fit: cover;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .brand img {
    height: 38px;
  }

  .sticky-call {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    justify-content: center;
    background: var(--blue);
    color: var(--white);
    padding: 14px 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 50;
  }

  body {
    padding-bottom: 70px;
  }
}
