@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Handlee&display=swap");

:root {
  color-scheme: light;
  --sage: #537055;
  --rose: #db596b;
  --cream: #f8f2e7;
  --soft-border: rgba(197, 211, 162, 0.3);
}

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

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--sage);
  line-height: 1.6;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.site-header {
  padding: 3rem 0 2rem;
}

.logo {
  height: clamp(6rem, 10vw, 9rem);
  width: auto;
}

.site-main {
  flex: 1;
  padding: 1.5rem 0 4rem;
}

.intro {
  margin-bottom: 4.5rem;
}

.intro-lead {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.contact-block {
  border-top: 2px solid rgba(83, 112, 85, 0.25);
  padding-top: 2rem;
}

.contact-title {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-phone {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--rose);
  transition: opacity 0.2s ease;
}

.contact-email {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
}

.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}

.coverage-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.coverage-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.coverage-subtitle {
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  color: var(--rose);
  opacity: 0.9;
}

.script {
  font-family: "Handlee", cursive;
}

.coverage-card {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--soft-border);
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 40px rgba(83, 112, 85, 0.12);
  display: flex;
  justify-content: center;
}

.coverage-image {
  max-height: 500px;
  height: auto;
}

.site-footer {
  border-top: 1px solid var(--soft-border);
  background: rgba(255, 255, 255, 0.3);
  padding: 2.5rem 0 3rem;
  margin-top: 3rem;
}

.footer-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
}

.footer-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--rose);
  opacity: 0.8;
}

@media (max-width: 720px) {
  .container {
    padding: 0 1.5rem;
  }

  .site-header {
    padding: 2.5rem 0 1.5rem;
  }

  .site-main {
    padding: 1rem 0 3rem;
  }

  .intro {
    margin-bottom: 3.5rem;
  }
}
