:root {
  --header-h: 78px;
  --navy: #123c69;
  --orange: #ef7f1a;
  --ink: #12263d;
  --muted: #4f647a;
  --line: #d5deea;
  --bg: #f7f9fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  height: var(--header-h);
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand-logo {
  height: clamp(42px, 6.2vh, 56px);
  width: auto;
  max-width: 240px;
  display: block;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 1.1rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.section-inner {
  width: min(1220px, 94vw);
  margin: 0 auto;
}

.full-screen {
  height: calc(100dvh - var(--header-h));
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18, 38, 61, 0.78), rgba(18, 38, 61, 0.32));
}

.hero-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr minmax(320px, 430px);
  align-items: center;
  gap: 1rem;
  padding-block: 0.6rem;
}

.hero-copy {
  color: var(--white);
  max-width: 640px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  font-weight: 700;
}

.kicker.dark {
  color: var(--navy);
}

.hero h1 {
  margin-top: 0.45rem;
  font-size: clamp(1.9rem, 5.3vw, 3.8rem);
  line-height: 1.04;
}

.hero-copy p {
  margin-top: 0.65rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  padding: 0.72rem 1.05rem;
  background: var(--orange);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.quote-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  max-height: calc(100dvh - var(--header-h) - 1.2rem);
  overflow: auto;
}

.quote-card h2 {
  margin-top: 0.3rem;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.quote-form {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.quote-form label {
  display: grid;
  gap: 0.24rem;
  font-size: 0.86rem;
  font-weight: 500;
}

.quote-form input,
.quote-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.52rem 0.62rem;
  font: inherit;
  background: var(--white);
}

.full-width {
  grid-column: 1 / -1;
}

.quote-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.quote-result {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 700;
}

.section {
  width: 100%;
  padding: 4rem 0;
}

.section-light {
  background: var(--white);
}

.section-accent {
  background: linear-gradient(180deg, #eaf2fb, #f7fafd);
}

.section h2 {
  margin-top: 0.38rem;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.services-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.service-card summary {
  list-style: none;
  cursor: pointer;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-card summary img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.service-card summary div {
  padding: 0.8rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
}

.service-card summary h3 {
  font-size: 1.02rem;
}

.service-card summary p {
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

.service-card > p {
  padding: 0 0.8rem 0.9rem;
  color: var(--muted);
}

.reviews-wrap {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  align-items: start;
}

.reviews-wrap iframe {
  width: 100%;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.reviews-wrap p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.review-preview-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.review-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.9rem;
}

.review-preview p {
  color: var(--muted);
  margin: 0;
}

.review-preview .stars {
  color: #f5a623;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.review-preview strong {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.9rem;
}

.contact {
  text-align: center;
}

.contact p {
  margin: 0.75rem 0 1rem;
  color: var(--muted);
}

.book-actions {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  font-weight: 600;
}

.site-footer {
  width: 100%;
  padding: 1.2rem 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  background: var(--white);
}

@media (max-width: 1140px) {
  .hero-shell {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0.7rem;
    padding-block: 0.4rem;
  }

  .hero-copy {
    max-width: 720px;
  }

  .quote-card {
    width: min(700px, 100%);
    justify-self: start;
    max-height: 46vh;
  }
}

@media (max-width: 980px) {
  .services-grid,
  .reviews-wrap,
  .review-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 70px;
  }

  .main-nav {
    display: none;
  }

  .full-screen {
    height: auto;
    min-height: calc(100dvh - var(--header-h));
  }

  .hero-shell {
    position: relative;
    padding: 1.2rem 0;
    align-content: end;
  }

  .quote-card {
    max-height: none;
    width: 100%;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}
