/*
Theme Name: Kadence Child
Template:   kadence
Version:    1.0.0
Description: Upstate Movers – Kadence child theme
*/

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  --um-forest:  #1C3A2B;
  --um-green:   #3B7A4A;
  --um-accent:  #6BAF7A;
  --um-cream:   #F5F0E4;
  --um-sage:    #C8DDD0;
  --um-max-w:   1140px;
  --um-pad-v:   64px;
  --um-pad-v-m: 48px;

  /* Full brand token set */
  --um-card-dark:   #243F30;
  --um-dark-forest: #111E16;
  --um-footer-bar:  #0D1810;
  --um-sage-dark:   #8DB89A;
  --um-muted-green: #5A7A62;
  --um-light-cream: #F0EDE6;
  --um-light-green: #EAF3DE;
  --um-deep-green:  #27500A;
}

/* =========================================================
   BASE RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--um-cream) !important;
  color: var(--um-forest) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6,
.site-title {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.1 !important;
  color: var(--um-forest);
}

h1 { font-size: clamp(36px, 6vw, 64px) !important; }
h2 { font-size: clamp(28px, 4vw, 42px) !important; }
h3 { font-size: clamp(20px, 2.5vw, 28px) !important; }

p, li, label, input, select, textarea, button {
  font-family: 'DM Sans', sans-serif !important;
}

small, .um-caption {
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
}

a {
  color: var(--um-green);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.um-section {
  width: 100%;
  padding: var(--um-pad-v) 0;
}

.um-section--dark {
  background-color: var(--um-forest);
  color: var(--um-cream);
}

.um-section--dark h1,
.um-section--dark h2,
.um-section--dark h3 {
  color: var(--um-cream) !important;
}

.um-section--dark p,
.um-section--dark li {
  color: var(--um-cream);
}

.um-section--cream {
  background-color: var(--um-cream);
}

.um-section--green {
  background-color: var(--um-green);
  color: var(--um-cream);
}

.um-section--green h1,
.um-section--green h2,
.um-section--green h3,
.um-section--green p {
  color: var(--um-cream) !important;
}

.um-container {
  max-width: var(--um-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

.um-section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--um-accent);
  margin-bottom: 12px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.um-btn,
.wp-block-button__link {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  padding: 14px 32px !important;
  border-radius: 2px !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.um-btn--primary,
.wp-block-button.is-style-fill .wp-block-button__link {
  background-color: var(--um-accent) !important;
  color: var(--um-forest) !important;
  border: 2px solid var(--um-accent) !important;
}

.um-btn--primary:hover {
  background-color: var(--um-green) !important;
  border-color: var(--um-green) !important;
  color: var(--um-cream) !important;
  text-decoration: none !important;
}

.um-btn--secondary {
  background-color: transparent !important;
  color: var(--um-cream) !important;
  border: 2px solid var(--um-accent) !important;
}

.um-btn--secondary:hover {
  background-color: var(--um-accent) !important;
  color: var(--um-forest) !important;
  text-decoration: none !important;
}

.um-btn--dark {
  background-color: transparent !important;
  color: var(--um-forest) !important;
  border: 2px solid var(--um-forest) !important;
}

.um-btn--dark:hover {
  background-color: var(--um-forest) !important;
  color: var(--um-cream) !important;
  text-decoration: none !important;
}

/* =========================================================
   HEADER
   ========================================================= */
#masthead,
.site-header,
header.site-header {
  background-color: var(--um-forest) !important;
}

.header-navigation .nav-link,
.primary-menu-container .nav-link,
#site-navigation a,
.main-navigation a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: var(--um-cream) !important;
}

#site-navigation a:hover,
.main-navigation a:hover {
  color: var(--um-sage) !important;
  text-decoration: none !important;
}

/* Site title (text logo) */
.site-title a,
.site-branding .site-title a,
.header-site-branding .site-title a {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--um-cream) !important;
  text-decoration: none !important;
}

.site-title a .um-logo-arrow {
  color: var(--um-accent);
  margin: 0 4px;
}

/* Header CTA button */
.header-button .kt-button,
.header-button a.button,
.header-button-wrap a {
  background-color: var(--um-accent) !important;
  color: var(--um-forest) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  padding: 10px 20px !important;
}

/* Mobile hamburger */
.mobile-toggle-open-container button,
.popup-toggle-open-container button {
  color: var(--um-cream) !important;
}

/* =========================================================
   FOOTER
   ========================================================= */
#colophon,
.site-footer,
footer.site-footer {
  background-color: var(--um-forest) !important;
  color: var(--um-cream) !important;
}

#colophon a,
.site-footer a,
footer.site-footer a {
  color: var(--um-sage) !important;
}

#colophon a:hover,
.site-footer a:hover {
  color: var(--um-cream) !important;
  text-decoration: underline !important;
}

.site-footer .footer-html p,
.footer-navigation a,
.footer-bottom-section,
.footer-bottom-section p {
  color: var(--um-cream) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
}

/* =========================================================
   CONTENT AREA — ensure custom sections can go full width
   ========================================================= */
.content-style-unboxed .entry-content > *,
.page .entry-content > * {
  max-width: 100%;
}

/* Kadence full-width page override */
.page-layout-fullwidth .entry-content,
.content-style-unboxed .entry-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
}

/* Remove default entry-content padding on full-width pages */
body.post-type-page .entry-content .um-section {
  margin-left: 0;
  margin-right: 0;
}

/* =========================================================
   PAGE TITLE — hide on all pages (we handle in content)
   ========================================================= */
.entry-header.title-align-above,
.entry-header.title-align-normal,
.entry-header,
.kadence-above-page-title {
  display: none !important;
}

/* =========================================================
   HOME PAGE — HERO
   ========================================================= */
.um-hero {
  min-height: 540px;
  display: flex;
  align-items: center;
  text-align: center;
}

.um-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px) !important;
  color: var(--um-cream) !important;
  margin-bottom: 20px !important;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.um-hero__sub {
  font-size: clamp(16px, 1.8vw, 20px) !important;
  color: var(--um-sage) !important;
  max-width: 600px;
  margin: 0 auto 32px !important;
}

.um-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--um-sage);
}

.um-trust-bar .sep {
  opacity: 0.4;
}

/* =========================================================
   HOW IT WORKS — STEPS
   ========================================================= */
.um-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

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

.um-step__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--um-accent);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.um-step h3 {
  color: var(--um-forest) !important;
  margin-bottom: 12px !important;
}

.um-step p {
  color: var(--um-forest);
  font-size: 15px;
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */
.um-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.um-card {
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,221,208,0.2);
  border-radius: 4px;
  padding: 28px 24px;
}

.um-card h3 {
  color: var(--um-cream) !important;
  font-size: 20px !important;
  margin-bottom: 12px !important;
}

.um-card p {
  color: var(--um-sage);
  font-size: 14px;
  margin: 0;
}

.um-card--light {
  background-color: #fff;
  border: 1px solid var(--um-sage);
}

.um-card--light h3 {
  color: var(--um-forest) !important;
}

.um-card--light p {
  color: var(--um-forest);
}

/* =========================================================
   WHY US — VALUE PROPS
   ========================================================= */
.um-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.um-value__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.um-value h3 {
  color: var(--um-forest) !important;
  font-size: 22px !important;
  margin-bottom: 10px !important;
}

.um-value p {
  font-size: 15px;
  color: var(--um-forest);
}

/* =========================================================
   SERVICE AREAS STRIP
   ========================================================= */
.um-areas-strip {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--um-cream);
  padding: 28px 0;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.um-service-block {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 24px 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--um-sage);
}

.um-service-block:last-of-type {
  border-bottom: none;
}

.um-service-block h3 {
  color: var(--um-forest) !important;
  font-size: 24px !important;
  margin: 0 !important;
}

.um-service-block p {
  margin: 0;
  color: var(--um-forest);
  font-size: 15px;
}

/* =========================================================
   PRICING PAGE
   ========================================================= */
.um-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.um-pricing-card {
  background: #fff;
  border: 2px solid var(--um-sage);
  border-radius: 4px;
  padding: 40px 32px;
  text-align: center;
}

.um-pricing-card.is-featured {
  border-color: var(--um-accent);
}

.um-pricing-card__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--um-green);
  margin-bottom: 8px;
}

.um-pricing-card__price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--um-forest);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  margin: 8px 0;
}

.um-pricing-card__price .um-tbd {
  font-size: 28px;
  color: var(--um-green);
}

.um-pricing-card__meta {
  font-size: 14px;
  color: var(--um-forest);
  margin-bottom: 24px;
}

.um-pricing-card h3 {
  color: var(--um-forest) !important;
  font-size: 26px !important;
  margin-bottom: 4px !important;
}

.um-included-box,
.um-excluded-box {
  margin-top: 48px;
  padding: 32px;
  border-radius: 4px;
}

.um-included-box {
  background: #e9f3ec;
  border-left: 4px solid var(--um-accent);
}

.um-excluded-box {
  background: #f9f5ef;
  border-left: 4px solid var(--um-sage);
}

.um-included-box h3,
.um-excluded-box h3 {
  color: var(--um-forest) !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
}

.um-included-box ul,
.um-excluded-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.um-included-box li {
  padding: 4px 0;
  font-size: 15px;
  color: var(--um-forest);
}

.um-included-box li::before {
  content: '✓ ';
  color: var(--um-accent);
  font-weight: 700;
}

.um-excluded-box li {
  padding: 4px 0;
  font-size: 15px;
  color: var(--um-forest);
}

.um-excluded-box li::before {
  content: '✗ ';
  color: var(--um-sage);
  font-weight: 700;
}

/* Pricing FAQ */
.um-pricing-faq {
  margin-top: 48px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.um-values-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.um-values-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--um-sage);
  color: var(--um-forest);
}

.um-values-list li::before {
  content: '→ ';
  color: var(--um-accent);
  font-weight: 700;
}

/* =========================================================
   SERVICE AREAS PAGE
   ========================================================= */
.um-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  margin-top: 48px;
}

.um-area h3 {
  color: var(--um-forest) !important;
  font-size: 24px !important;
  border-bottom: 2px solid var(--um-accent);
  padding-bottom: 8px;
  margin-bottom: 12px !important;
}

.um-area p {
  font-size: 15px;
  color: var(--um-forest);
  margin: 0;
}

/* =========================================================
   FAQ PAGE — ACCORDION (details/summary)
   ========================================================= */
.um-faq {
  margin-top: 32px;
}

.um-faq details {
  border-bottom: 1px solid var(--um-sage);
}

.um-faq details summary {
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--um-forest);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.um-faq details summary::-webkit-details-marker { display: none; }

.um-faq details summary::after {
  content: '+';
  font-size: 28px;
  font-weight: 400;
  color: var(--um-accent);
  flex-shrink: 0;
  line-height: 1;
}

.um-faq details[open] summary::after {
  content: '−';
}

.um-faq details summary:hover {
  color: var(--um-green);
}

.um-faq .um-faq__answer {
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--um-forest);
  line-height: 1.7;
  max-width: 720px;
}

/* =========================================================
   BOOK NOW / FORM PAGE
   ========================================================= */
.um-form-intro {
  font-size: 18px;
  color: var(--um-forest);
  margin-bottom: 40px;
  max-width: 600px;
}

.wpforms-container {
  max-width: 700px;
}

.wpforms-field-label {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--um-forest) !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

.wpforms-field input,
.wpforms-field select,
.wpforms-field textarea {
  border: 1.5px solid var(--um-sage) !important;
  border-radius: 2px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
  color: var(--um-forest) !important;
  background: #fff !important;
  padding: 10px 14px !important;
}

.wpforms-field input:focus,
.wpforms-field select:focus,
.wpforms-field textarea:focus {
  border-color: var(--um-green) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(59,122,74,0.15) !important;
}

.wpforms-submit-container .wpforms-submit {
  background-color: var(--um-accent) !important;
  color: var(--um-forest) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  border-radius: 2px !important;
  padding: 14px 40px !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.wpforms-submit-container .wpforms-submit:hover {
  background-color: var(--um-green) !important;
  color: var(--um-cream) !important;
}

/* =========================================================
   SECTION HEADING STYLE
   ========================================================= */
.um-section-head {
  margin-bottom: 0;
}

.um-section-head h2 {
  margin-bottom: 16px;
}

.um-section-head p {
  font-size: 17px;
  max-width: 640px;
}

.um-section-head.center {
  text-align: center;
}

.um-section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.um-cta-section {
  text-align: center;
}

.um-cta-section h2 {
  color: var(--um-cream) !important;
  margin-bottom: 16px !important;
}

.um-cta-section p {
  color: var(--um-sage);
  font-size: 18px;
  margin-bottom: 32px;
}

/* =========================================================
   INLINE DIVIDER / FOOTER NOTE
   ========================================================= */
.um-footer-note {
  font-size: 13px;
  color: var(--um-sage);
  text-align: center;
  margin-top: 40px;
  font-style: italic;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .um-steps,
  .um-values { grid-template-columns: 1fr; gap: 32px; }
  .um-cards  { grid-template-columns: repeat(2, 1fr); }
  .um-service-block { grid-template-columns: 1fr; gap: 12px; }
  .um-pricing-grid { grid-template-columns: 1fr; }
  .um-area-grid { grid-template-columns: 1fr; }
  .um-values-list { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root {
    --um-pad-v: var(--um-pad-v-m);
  }
  .um-cards { grid-template-columns: 1fr; }
  .um-section { padding: var(--um-pad-v-m) 0; }
  h1 { font-size: 36px !important; }
  h2 { font-size: 28px !important; }
  h3 { font-size: 20px !important; }
}

/* =========================================================
   SPEC EXACT CLASSES — brand token aliases
   ========================================================= */

/* Eyebrow labels */
.section-eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.eyebrow-green  { color: #6BAF7A; }
.eyebrow-forest { color: #3B7A4A; }

/* Section backgrounds */
.section-dark        { background: #1C3A2B; }
.section-cream       { background: #F5F0E4; }
.section-green-strip { background: #3B7A4A; }

/* Primary CTA button */
.btn-primary {
  background: #6BAF7A;
  color: #1C3A2B;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover {
  background: #3B7A4A;
  color: #F5F0E4;
}

/* Outline CTA on dark backgrounds */
.btn-outline-light {
  background: transparent;
  color: #F5F0E4;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid #6BAF7A;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none !important;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-light:hover {
  background: #6BAF7A;
  color: #1C3A2B;
}

/* Outline CTA on light backgrounds */
.btn-outline-dark {
  background: transparent;
  color: #1C3A2B;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 2px solid #6BAF7A;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover {
  background: #6BAF7A;
  color: #1C3A2B;
}

/* =========================================================
   HOME PAGE — ADDITIONAL EXACT STYLES
   ========================================================= */

/* Trust bar dots */
.um-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BAF7A;
  display: inline-block;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: middle;
}

/* Pricing cards */
.um-price-card {
  background: #ffffff;
  border: 1px solid #C8DDD0;
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
}
.um-price-card.featured {
  border: 2px solid #3B7A4A;
}
.um-price-divider {
  width: 40px;
  height: 2px;
  background: #C8DDD0;
  margin: 0 auto 16px;
}

/* Why cards — border-left accent */
.um-why-card {
  padding: 24px;
  border-left: 3px solid #6BAF7A;
}
.um-why-card h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  color: #F5F0E4 !important;
  margin-bottom: 8px !important;
  letter-spacing: 1px !important;
}
.um-why-card p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #8DB89A !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Service area strip */
.um-areas-strip-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #F5F0E4;
  margin: 0;
}

/* Service cards on dark */
.um-service-card {
  background: #243F30;
  border: 1px solid #3B7A4A;
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}
.um-service-card svg {
  margin-bottom: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.um-service-card h3 {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  color: #F5F0E4 !important;
  margin-bottom: 8px !important;
  letter-spacing: 1px !important;
}
.um-service-card p {
  font-size: 12px !important;
  color: #8DB89A !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* Math callout box */
.um-math-callout {
  background: #EAF3DE;
  border-radius: 4px;
  padding: 14px 20px;
  text-align: center;
  margin-bottom: 16px;
}
.um-math-callout p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  color: #27500A !important;
  margin: 0 !important;
}

/* Fine print */
.um-fine-print {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #5A7A62;
  text-align: center;
  margin: 0;
}

/* =========================================================
   FOOTER — EXACT SPEC
   ========================================================= */
.um-footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F5F0E4;
  text-decoration: none !important;
  display: inline-block;
  margin-bottom: 8px;
}
.um-footer-logo .arrow {
  color: #6BAF7A;
}
.um-footer-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8DB89A;
  line-height: 1.6;
  margin: 0;
}
.um-footer-col-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #6BAF7A;
  margin-bottom: 12px;
  display: block;
}

/* Footer bar */
.um-footer-bar {
  background: #0D1810 !important;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.um-footer-bar span,
.um-footer-bar p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 1px !important;
  color: #5A7A62 !important;
  margin: 0 !important;
}

/* =========================================================
   NAV — Book Now button
   ========================================================= */
.menu-book-now > a,
#site-navigation .menu-book-now a,
.main-navigation .menu-book-now a {
  background-color: #6BAF7A !important;
  color: #1C3A2B !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 8px 18px !important;
  border-radius: 2px !important;
  text-decoration: none !important;
}
.menu-book-now > a:hover,
#site-navigation .menu-book-now a:hover {
  background-color: #3B7A4A !important;
  color: #F5F0E4 !important;
}

/* =========================================================
   RESPONSIVE — additional breakpoints
   ========================================================= */
@media (max-width: 768px) {
  .um-why-cards-grid,
  .um-service-cards-grid,
  .um-pricing-cards-grid { grid-template-columns: 1fr !important; }
  .um-areas-strip-text { font-size: 14px !important; letter-spacing: 2px !important; }
  .btn-outline-light { margin-left: 0; margin-top: 12px; }
}
