/*
Theme Name: Mr. Woof Lean
Theme URI: https://mrwoofdenver.com/
Author: Mr. Woof
Description: Lightweight custom theme for Mr. Woof dog walking and pet sitting in Denver.
Version: 0.3.5
Requires at least: 6.0
Tested up to: 6.9
Text Domain: mrwoof-lean
*/
:root {
  --mw-navy: #0b1d63;
  --mw-navy-deep: #08164d;
  --mw-ink: #1f2430;
  --mw-copy: #4b5567;
  --mw-muted: #566072;
  --mw-line: rgba(11, 29, 99, 0.12);
  --mw-soft: #fffdf8;
  --mw-cream: #f8f1e6;
  --mw-yellow: #fddd30;
  --mw-shadow: 0 24px 60px rgba(11, 29, 99, 0.13);
  --mw-radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  color: var(--mw-ink);
  background: #ffffff;
  font-family: Assistant, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--mw-navy);
}

.mw-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.mw-main {
  background: #ffffff;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mw-topbar {
  background: #fafafa;
  color: #4c4c4c;
  font-size: 14px;
}

.mw-topbar-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 34px;
}

.mw-pin {
  color: var(--mw-navy);
}

.mw-header-main {
  background: #747473;
  color: #ffffff;
  padding: 22px 0 0;
}

.mw-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  text-decoration: none;
}

.mw-brand-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.mw-brand-mark img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.mw-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mw-brand-name {
  color: #ffffff;
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.mw-brand-name span {
  color: #10007a;
}

.mw-brand-subtitle {
  color: #ffffff;
  font-size: 21px;
  font-weight: 600;
}

.mw-menu-toggle {
  display: none;
}

.mw-nav {
  margin-top: 22px;
}

.mw-menu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-menu li {
  margin: 0;
}

.mw-menu a {
  display: block;
  padding: 16px 14px 20px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.mw-menu a:hover,
.mw-menu .current-menu-item > a,
.mw-menu .current_page_item > a {
  color: #ffffff;
  border-bottom-color: #eded00;
}

.mw-page {
  margin: 42px auto 56px;
}

.mw-hero,
.mw-section,
.mw-cta,
.mw-post-card,
.mw-article {
  border-radius: var(--mw-radius);
}

.mw-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(241, 214, 75, 0.22), transparent 28%),
    linear-gradient(135deg, var(--mw-soft) 0%, var(--mw-cream) 100%);
  box-shadow: var(--mw-shadow);
}

.mw-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 34px;
  align-items: center;
  padding: 48px;
}

.mw-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 29, 99, 0.08);
  color: var(--mw-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mw-hero h1,
.mw-hero-title,
.mw-page-title {
  display: block;
  margin: 0 0 18px;
  color: var(--mw-ink);
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.mw-hero p,
.mw-section p,
.mw-card p,
.mw-article p,
.mw-article li {
  color: var(--mw-copy);
  font-size: 18px;
  line-height: 1.7;
}

.mw-hero p,
.mw-section p,
.mw-card p {
  margin: 0;
}

.mw-hero p + p,
.mw-section p + p,
.mw-card p + p {
  margin-top: 12px;
}

.mw-lead {
  max-width: 640px;
}

.mw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.mw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.mw-btn:hover {
  transform: translateY(-2px);
}

.mw-btn-primary {
  background: var(--mw-navy);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 29, 99, 0.22);
}

.mw-btn-primary:hover {
  background: var(--mw-navy-deep);
  color: #ffffff;
}

.mw-btn-secondary {
  background: #ffffff;
  color: var(--mw-ink);
  border: 1px solid rgba(31, 36, 48, 0.12);
}

.mw-btn-secondary:hover {
  background: #fff4bd;
  color: var(--mw-ink);
}

.mw-photo-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(160deg, #10256f 0%, #1f327d 100%);
  box-shadow: 0 20px 50px rgba(11, 29, 99, 0.28);
}

.mw-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
}

.mw-photo-card.mw-frame-landscape .mw-photo-frame {
  aspect-ratio: 4 / 3;
}

.mw-photo-card.mw-frame-wide .mw-photo-frame {
  aspect-ratio: 16 / 10;
}

.mw-photo-card.mw-frame-square .mw-photo-frame {
  aspect-ratio: 1 / 1;
}

.mw-photo-frame img,
.mw-panel img,
.mw-gallery-item img,
.mw-post-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mw-photo-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.mw-photo-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--mw-ink);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.mw-photo-badge span {
  display: block;
  color: var(--mw-muted);
  font-size: 15px;
  line-height: 1.45;
}

.mw-points,
.mw-list-grid,
.mw-grid-2,
.mw-grid-3 {
  display: grid;
  gap: 16px;
}

.mw-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.mw-point,
.mw-card,
.mw-list-item,
.mw-note {
  border: 1px solid var(--mw-line);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 20px;
}

.mw-point {
  padding: 14px 16px;
  color: var(--mw-ink);
  font-size: 15px;
  font-weight: 800;
}

.mw-section {
  margin-top: 28px;
  padding: 34px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(11, 29, 99, 0.1);
}

.mw-section.mw-soft {
  background:
    radial-gradient(circle at top left, rgba(241, 214, 75, 0.14), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #f8f1e6 100%);
}

.mw-section h2,
.mw-cta h2,
.mw-article h2 {
  margin: 0 0 12px;
  color: var(--mw-ink);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mw-section h3,
.mw-card h3,
.mw-article h3 {
  margin: 0 0 10px;
  color: var(--mw-ink);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 900;
}

.mw-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mw-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mw-card,
.mw-list-item,
.mw-note {
  padding: 24px;
}

.mw-compare-grid {
  margin-top: 22px;
}

.mw-check-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.mw-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--mw-copy);
  font-size: 17px;
  line-height: 1.5;
}

.mw-check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  content: "✓";
  color: var(--mw-navy);
  font-weight: 900;
}

.mw-no-list li::before {
  content: "No";
  top: 0.15em;
  color: #7a321f;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mw-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.mw-list-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--mw-navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mw-faq {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mw-faq details {
  border: 1px solid var(--mw-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px 20px;
}

.mw-faq summary {
  cursor: pointer;
  color: var(--mw-ink);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.mw-faq details[open] summary {
  margin-bottom: 10px;
}

.mw-faq p {
  margin: 0;
}

.mw-quote {
  border-left: 5px solid var(--mw-yellow);
  padding: 18px 0 18px 22px;
}

.mw-quote p {
  color: var(--mw-ink);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
}

.mw-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.mw-step {
  padding: 22px;
  border: 1px solid var(--mw-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.mw-step span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 50%;
  background: var(--mw-navy);
  color: #ffffff;
  font-weight: 900;
}

.mw-step h3 {
  font-size: 20px;
}

.mw-step p {
  font-size: 16px;
}

.mw-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mw-trust-row div {
  padding: 13px 16px;
  border: 1px solid var(--mw-line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  color: var(--mw-ink);
  font-size: 15px;
  font-weight: 900;
}

.mw-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mw-area-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--mw-line);
  color: var(--mw-ink);
  font-size: 14px;
  font-weight: 800;
}

.mw-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.mw-panel {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 3 / 2;
  background: #f4f0e8;
  box-shadow: 0 20px 50px rgba(11, 29, 99, 0.1);
}

.mw-panel.mw-frame-portrait {
  aspect-ratio: 4 / 5;
}

.mw-panel.mw-frame-square {
  aspect-ratio: 1 / 1;
}

.mw-panel.mw-frame-landscape {
  aspect-ratio: 4 / 3;
}

.mw-panel.mw-frame-wide {
  aspect-ratio: 16 / 10;
}

.mw-contact-form-section .wpcf7 {
  max-width: 760px;
}

.mw-contact-form-section .wpcf7 p {
  text-align: left;
}

.mw-cta {
  margin-top: 28px;
  padding: 40px 34px;
  text-align: center;
  background: linear-gradient(135deg, #0b1d63 0%, #1b2f82 100%);
  box-shadow: 0 24px 60px rgba(11, 29, 99, 0.24);
}

.mw-cta .mw-kicker {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.mw-cta h2,
.mw-cta p {
  color: #ffffff;
}

.mw-cta p {
  max-width: 760px;
  margin: 0 auto;
}

.mw-cta .mw-actions {
  justify-content: center;
}

.mw-cta .mw-btn-primary {
  background: #ffffff;
  color: var(--mw-navy);
  box-shadow: none;
}

.mw-cta .mw-btn-primary:hover {
  background: #fff3be;
  color: var(--mw-navy-deep);
}

.mw-cta .mw-btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.mw-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.mw-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  background: #f4f0e8;
  border: 1px solid var(--mw-line);
  cursor: zoom-in;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mw-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(11, 29, 99, 0.14);
}

.mw-gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1.15;
}

.mw-lightbox-open {
  overflow: hidden;
}

.mw-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(8, 12, 26, 0.88);
}

.mw-lightbox.is-open {
  display: flex;
}

.mw-lightbox-figure {
  margin: 0;
  max-width: min(1100px, 88vw);
  max-height: 88vh;
  text-align: center;
}

.mw-lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(88vh - 54px);
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.mw-lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  font: 700 16px/1.4 Assistant, sans-serif;
}

.mw-lightbox-close,
.mw-lightbox-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--mw-navy);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.mw-lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  font-size: 34px;
  line-height: 1;
}

.mw-lightbox-arrow {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 44px;
  transform: translateY(-50%);
}

.mw-lightbox-prev {
  left: 18px;
}

.mw-lightbox-next {
  right: 18px;
}

.mw-lightbox-close:focus,
.mw-lightbox-arrow:focus {
  outline: 3px solid #fddd30;
  outline-offset: 3px;
}

.mw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.mw-blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: center;
}

.mw-blog-hero h1 {
  margin: 0 0 14px;
  color: var(--mw-ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mw-blog-hero-note {
  padding: 24px;
  border: 1px solid var(--mw-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.mw-blog-hero-note strong,
.mw-blog-hero-note span {
  display: block;
}

.mw-blog-hero-note strong {
  margin-bottom: 8px;
  color: var(--mw-ink);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.mw-blog-hero-note span {
  color: var(--mw-copy);
  font-size: 17px;
  line-height: 1.55;
}

.mw-post-card {
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(11, 29, 99, 0.1);
}

.mw-post-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: #f4f0e8;
  text-decoration: none;
}

.mw-post-body {
  padding: 22px;
}

.mw-post-body h2 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.1;
}

.mw-post-meta {
  color: var(--mw-muted);
  font-size: 13px;
  font-weight: 800;
}

.mw-post-thumb-fallback {
  color: var(--mw-navy);
  font-size: 22px;
  font-weight: 900;
}

.mw-read-more {
  display: inline-flex;
  margin-top: 8px;
  color: var(--mw-navy);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mw-copy-block {
  max-width: 78ch;
}

.mw-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mw-area-list li {
  padding: 10px 14px;
  border: 1px solid var(--mw-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--mw-ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.mw-article {
  max-width: 920px;
  margin: 42px auto 70px;
  padding: 42px;
  background:
    radial-gradient(circle at top left, rgba(241, 214, 75, 0.12), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f8f1e6 100%);
  box-shadow: var(--mw-shadow);
}

.mw-article h1 {
  margin: 0 0 14px;
  color: var(--mw-ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mw-article p {
  margin: 0 0 18px;
}

.mw-article img {
  display: block;
  margin: 28px auto;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(11, 29, 99, 0.12);
}

.mw-footer {
  background: #141414;
  color: #ffffff;
}

.mw-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  padding: 62px 0 54px;
}

.mw-footer h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mw-footer p,
.mw-footer li {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.65;
}

.mw-footer a {
  color: #ffffff;
  text-decoration: none;
}

.mw-footer a:hover {
  color: var(--mw-yellow);
}

.mw-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-footer-menu li + li {
  margin-top: 8px;
}

.mw-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 20px;
  text-align: center;
}

.mw-mobile-sticky-cta {
  display: none;
}

.mw-copyright p {
  margin: 0;
  color: #858484;
  font-size: 14px;
}

.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  border: 1px solid var(--mw-line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  width: auto;
  min-width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
}

.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  margin: 0;
}

.wpcf7 .wpcf7-list-item label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mw-copy);
  font-size: 17px;
  line-height: 1.35;
  text-align: left;
}

.wpcf7 .wpcf7-list-item-label {
  display: block;
}

.wpcf7 input[type="submit"],
.wpcf7 button[type="submit"] {
  width: auto;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  background: var(--mw-navy);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .mw-split,
  .mw-grid-2,
  .mw-grid-3,
  .mw-blog-hero,
  .mw-footer-grid {
    grid-template-columns: 1fr;
  }

  .mw-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
    gap: 28px;
    padding: 40px;
  }

  .mw-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .mw-header-main {
    padding-top: 22px;
  }

  .mw-header-main .mw-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
  }

  .mw-brand-name {
    font-size: 44px;
  }

  .mw-brand-subtitle {
    font-size: 18px;
  }

  .mw-brand-mark {
    width: 62px;
    height: 62px;
  }

  .mw-brand-mark img {
    width: 46px;
    height: 46px;
  }

  .mw-menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: transparent;
  }

  .mw-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
  }

  .mw-nav {
    display: none;
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .mw-nav.is-open {
    display: block;
  }

  .mw-menu {
    display: block;
    padding: 10px 0 16px;
  }

  .mw-menu a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    white-space: normal;
  }

  .mw-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mw-container {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .mw-page {
    margin: 20px auto 34px;
  }

  .mw-hero,
  .mw-section,
  .mw-cta,
  .mw-article {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
  }

  .mw-hero-inner,
  .mw-section,
  .mw-cta,
  .mw-article {
    padding: 22px;
  }

  .mw-hero h1,
  .mw-hero-title,
  .mw-page-title,
  .mw-blog-hero h1,
  .mw-article h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .mw-section h2,
  .mw-cta h2,
  .mw-article h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .mw-hero p,
  .mw-section p,
  .mw-card p,
  .mw-article p,
  .mw-article li {
    font-size: 17px;
    line-height: 1.65;
  }

  .mw-kicker {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mw-points,
  .mw-list-grid,
  .mw-compare-grid,
  .mw-steps,
  .mw-blog-grid,
  .mw-gallery {
    grid-template-columns: 1fr;
  }

  .mw-gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .mw-lightbox {
    padding: 16px;
  }

  .mw-lightbox-figure {
    max-width: 100%;
    max-height: 84vh;
  }

  .mw-lightbox-img {
    max-height: calc(84vh - 48px);
    border-radius: 14px;
  }

  .mw-lightbox-arrow {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    font-size: 38px;
    transform: none;
  }

  .mw-lightbox-prev {
    left: 18px;
  }

  .mw-lightbox-next {
    right: 18px;
  }

  .mw-photo-badge {
    display: none;
  }

  .mw-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .mw-btn {
    width: 100%;
    min-height: 52px;
    padding-right: 18px;
    padding-left: 18px;
    white-space: normal;
    text-align: center;
  }

  .mw-card,
  .mw-note,
  .mw-point,
  .mw-step,
  .mw-list-item,
  .mw-blog-hero-note {
    min-width: 0;
    padding: 18px;
  }

  .mw-trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mw-trust-row div {
    border-radius: 16px;
  }

  .mw-footer {
    padding-bottom: 74px;
  }

  .mw-mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 999;
    display: grid;
    grid-template-columns: 0.65fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(11, 29, 99, 0.14);
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: 0 14px 34px rgba(11, 29, 99, 0.22);
    backdrop-filter: blur(10px);
  }

  .mw-mobile-sticky-cta a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--mw-navy);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-decoration: none;
  }

  .mw-mobile-sticky-cta a:first-child {
    background: #ffffff;
    color: var(--mw-navy);
    border: 1px solid var(--mw-line);
  }

  .mw-note .wp-block-columns {
    display: block !important;
    gap: 0 !important;
  }

  .mw-note,
  .mw-note * {
    box-sizing: border-box !important;
    min-width: 0 !important;
  }

  .mw-note > *,
  .mw-note div,
  .mw-note section,
  .mw-note article,
  .mw-note [class*="wp-block"],
  .mw-note [class*="column"],
  .mw-note [class*="grid"],
  .mw-note [class*="row"] {
    width: 100% !important;
    max-width: 100% !important;
  }

  .mw-note [class*="columns"],
  .mw-note [class*="grid"],
  .mw-note [class*="row"] {
    display: block !important;
  }

  .mw-note .wp-block-column {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mw-note .wp-block-column + .wp-block-column {
    margin-top: 14px !important;
  }

  .mw-note .wp-block-group,
  .mw-note .wp-block-column,
  .mw-note [style*="width"],
  .mw-note [style*="max-width"],
  .mw-note [style*="flex-basis"] {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }

  .mw-note .wp-block-group {
    padding: 18px !important;
  }

  .mw-note h2,
  .mw-note h3,
  .mw-note h4 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .mw-note h3 {
    font-size: 24px;
    line-height: 1.08;
  }

  .mw-note p,
  .mw-note li {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .mw-photo-card {
    min-width: 0;
    padding: 12px;
  }

  .mw-post-thumb,
  .mw-article-featured {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .mw-container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .mw-hero-inner,
  .mw-section,
  .mw-cta,
  .mw-article {
    padding: 18px;
  }

  .mw-section:has(.mw-note) {
    padding: 16px 12px;
  }

  .mw-section:has(.mw-note) .mw-note {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .mw-hero h1,
  .mw-hero-title,
  .mw-page-title,
  .mw-blog-hero h1,
  .mw-article h1 {
    font-size: clamp(29px, 10vw, 36px);
  }

  .mw-section h2,
  .mw-cta h2,
  .mw-article h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .mw-note .wp-block-group {
    padding: 16px !important;
  }

  .mw-note h3 {
    font-size: 21px;
  }

  .wpcf7 p {
    text-align: left;
  }

  .wpcf7 .wpcf7-checkbox,
  .wpcf7 .wpcf7-radio {
    gap: 12px;
  }

  .wpcf7 .wpcf7-list-item label {
    font-size: 16px;
  }

  .wpcf7 input[type="submit"],
  .wpcf7 button[type="submit"] {
    width: 100%;
  }
}

