/* =============================================================================
   Countryside Manor — override stylesheet
   -----------------------------------------------------------------------------
   This file is loaded AFTER the app's compiled CSS, so rules here win on equal
   specificity (use a slightly more specific selector or, sparingly, !important
   when overriding inline/scoped styles).

   This is the safe, version-controlled place to tweak the LIVE site's styling
   without touching the original compiled bundle. Examples:

     // Nudge a section's spacing
     // .some-section { padding-top: 40px !important; }

     // Rebrand a button color
     // .cta-button { background: #3a6147 !important; }

   Keep changes small and documented. Group by section with comments.
   ============================================================================= */

/* Footer Fax row is cloned from the phone row at runtime, so it inherits the
   theme's icon color/size/spacing automatically (no custom styling needed). */
.cm-contact-label {
  margin-right: 0.35em;
}

/* --- Footer: Business Rate badge grouped with the existing award --- */
.footer-excellence {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cm-badge-businessrate {
  line-height: 0;
}
.cm-badge-businessrate img {
  width: auto;
  height: 150px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s ease;
}
.cm-badge-businessrate img:hover {
  transform: translateY(-2px) scale(1.02);
}

/* --- Landing page: prominent "Recognized for Excellence" award band --- */
.cm-awards-band {
  background: linear-gradient(180deg, #ffffff 0%, var(--surface, #f6f3ea) 100%);
  border-top: 1px solid rgba(74, 124, 89, 0.14);
  border-bottom: 1px solid rgba(74, 124, 89, 0.14);
  padding: clamp(36px, 6vw, 72px) 24px;
}
.cm-awards-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
  flex-wrap: wrap;
  text-align: left;
}
.cm-awards-trophy {
  width: auto;
  height: clamp(220px, 26vw, 320px);
  flex: 0 0 auto;
  filter: drop-shadow(0 16px 34px rgba(31, 51, 38, 0.28));
}
.cm-awards-copy {
  flex: 1 1 360px;
  max-width: 560px;
}
.cm-awards-eyebrow {
  display: block;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #4a7c59;
  margin-bottom: 8px;
}
.cm-awards-copy h2 {
  font-family: "Merriweather", Georgia, serif;
  color: #2f4d39;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 12px;
}
.cm-awards-copy p {
  color: #4b574f;
  font-size: 1.06rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.cm-awards-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}
.cm-awards-meta span {
  font-weight: 600;
  color: #3a6147;
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .cm-awards-inner {
    flex-direction: column;
    text-align: center;
  }
  .cm-awards-meta {
    justify-content: center;
  }
}
