/*
Theme Name: MMC Sťahovanie
Theme URI: https://example.com/mmc-stahovanie
Author: MMC Services
Author URI: https://example.com
Description: Čistá custom WordPress téma pre sťahovacie služby v Bratislave a okolí. Obsahuje responzívnu hlavičku, služby, cenník, lokálne SEO podstránky, Schema.org a bezpečný formulár s uploadom fotografií.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: mmc-stahovanie
*/

:root {
  --mmc-navy: #0b2545;
  --mmc-navy-soft: #123a63;
  --mmc-navy-deep: #071a31;
  --mmc-beige: #f4efe6;
  --mmc-beige-strong: #dbc39a;
  --mmc-white: #ffffff;
  --mmc-ink: #172236;
  --mmc-muted: #657184;
  --mmc-border: #e6e0d6;
  --mmc-success: #2d7d5f;
  --mmc-shadow: 0 18px 45px rgba(7, 26, 49, 0.12);
  --mmc-shadow-soft: 0 10px 28px rgba(7, 26, 49, 0.08);
  --mmc-radius: 8px;
  --mmc-radius-lg: 12px;
  --mmc-container: 1180px;
  --mmc-header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--mmc-ink);
  background: var(--mmc-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--mmc-navy);
  text-decoration: none;
}

a:hover {
  color: var(--mmc-navy-soft);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 1rem;
  color: var(--mmc-navy-deep);
  line-height: 1.16;
  font-weight: 800;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 4.0rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}

h3 {
  font-size: 1.25rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--mmc-container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--mmc-white);
  color: var(--mmc-navy);
  border-radius: 6px;
}

.skip-link:focus {
  left: 12px;
}

.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;
}

.screen-reader-text:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--mmc-white);
  color: var(--mmc-navy);
  z-index: 1000;
}

.button,
.wp-block-button__link,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 6px;
  background: var(--mmc-navy);
  color: var(--mmc-white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
  color: var(--mmc-white);
  background: var(--mmc-navy-soft);
  transform: translateY(-1px);
  box-shadow: var(--mmc-shadow-soft);
}

.button.button-secondary {
  background: var(--mmc-beige-strong);
  color: var(--mmc-navy-deep);
}

.button.button-secondary:hover,
.button.button-secondary:focus-visible {
  color: var(--mmc-navy-deep);
  background: #ead2a7;
}

.button.button-outline {
  background: transparent;
  color: var(--mmc-white);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.button.button-outline:hover,
.button.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 78px 0;
}

.section-muted {
  background: var(--mmc-beige);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-header p {
  color: var(--mmc-muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--mmc-header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(230, 224, 214, 0.8);
  backdrop-filter: saturate(160%) blur(14px);
  transition: box-shadow 180ms ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 26px rgba(7, 26, 49, 0.08);
}

.header-inner {
  min-height: var(--mmc-header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.custom-logo-link,
.site-logo-text {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  max-height: 46px;
  width: auto;
}

.site-logo-text {
  gap: 10px;
  color: var(--mmc-navy);
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.1;
}

.site-logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--mmc-navy);
  color: var(--mmc-white);
  font-size: 0.92rem;
}

.primary-navigation {
  justify-self: center;
}

.primary-menu,
.footer-menu,
.services-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.primary-menu > li {
  position: relative;
}

.primary-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--mmc-ink);
  font-weight: 750;
  font-size: 0.95rem;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  background: var(--mmc-beige);
  color: var(--mmc-navy);
}

.primary-menu .sub-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 285px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: var(--mmc-white);
  border: 1px solid var(--mmc-border);
  border-radius: var(--mmc-radius);
  box-shadow: var(--mmc-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-menu .sub-menu a {
  min-height: auto;
  padding: 10px 12px;
  font-size: 0.92rem;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: max-content;
}

.header-phone {
  color: var(--mmc-navy);
  font-weight: 900;
  white-space: nowrap;
}

.mobile-quote {
  display: none;
}

.mobile-phone {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--mmc-beige);
}

.mobile-phone svg,
.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--mmc-navy);
  color: var(--mmc-white);
  cursor: pointer;
}

.mobile-whatsapp-button {
  display: none;
}

.mobile-navigation {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: flex;
  align-items: center;
  background-color: var(--mmc-navy-deep);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 900ms ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 26, 49, 0.9) 0%, rgba(7, 26, 49, 0.78) 44%, rgba(7, 26, 49, 0.34) 100%),
    linear-gradient(0deg, rgba(7, 26, 49, 0.24), rgba(7, 26, 49, 0.24));
}

.hero-content {
  width: min(100% - 32px, var(--mmc-container));
  margin-inline: auto;
  padding: 84px 0 74px;
  color: var(--mmc-white);
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f6dfb8;
  font-weight: 800;
  font-size: 0.93rem;
}

.hero h1 {
  color: var(--mmc-white);
  max-width: 850px;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-points li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 750;
  font-size: 0.92rem;
}

.mobile-priority-services {
  display: none;
}

.service-grid,
.benefit-grid,
.pricing-grid,
.reviews-grid,
.post-grid,
.location-grid {
  display: grid;
  gap: 22px;
}

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

.service-card,
.benefit-card,
.price-card,
.review-card,
.post-card,
.location-card {
  background: var(--mmc-white);
  border: 1px solid var(--mmc-border);
  border-radius: var(--mmc-radius);
  box-shadow: var(--mmc-shadow-soft);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: var(--mmc-radius);
  background: var(--mmc-beige);
  color: var(--mmc-navy);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card p {
  color: var(--mmc-muted);
}

.service-card .button {
  align-self: flex-start;
  margin-top: auto;
}

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

.benefit-card {
  padding: 22px;
  box-shadow: none;
}

.benefit-card strong {
  display: block;
  color: var(--mmc-navy-deep);
  font-size: 1.02rem;
  margin-bottom: 5px;
}

.benefit-card span {
  color: var(--mmc-muted);
}

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 26px 20px;
  background: var(--mmc-white);
  border: 1px solid var(--mmc-border);
  border-radius: var(--mmc-radius);
  box-shadow: var(--mmc-shadow-soft);
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--mmc-navy);
  color: var(--mmc-white);
  font-weight: 900;
}

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

.price-card {
  padding: 26px 22px;
}

.price-card.is-featured {
  border-color: var(--mmc-beige-strong);
  box-shadow: var(--mmc-shadow);
}

.price-card .price {
  margin: 12px 0;
  color: var(--mmc-navy);
  font-size: 2rem;
  font-weight: 900;
}

.price-card p {
  color: var(--mmc-muted);
}

.pricing-note {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 16px 18px;
  border-left: 4px solid var(--mmc-beige-strong);
  background: rgba(244, 239, 230, 0.7);
  color: var(--mmc-ink);
}

.quote-section {
  background:
    linear-gradient(135deg, rgba(11, 37, 69, 0.96), rgba(18, 58, 99, 0.96)),
    var(--mmc-navy);
  color: var(--mmc-white);
}

.quote-section h2,
.quote-section .section-header h2 {
  color: var(--mmc-white);
}

.quote-section .section-header p {
  color: rgba(255, 255, 255, 0.82);
}

.quote-form-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  border-radius: var(--mmc-radius-lg);
  background: var(--mmc-white);
  color: var(--mmc-ink);
  box-shadow: var(--mmc-shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.is-full {
  grid-column: 1 / -1;
}

.form-field label,
.consent-label {
  color: var(--mmc-navy-deep);
  font-weight: 800;
  font-size: 0.94rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #d9d3ca;
  border-radius: 6px;
  color: var(--mmc-ink);
  background: var(--mmc-white);
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-help {
  color: var(--mmc-muted);
  font-size: 0.88rem;
}

.consent-field {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 20px;
}

.form-message {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 750;
}

.form-message.is-success {
  background: #e9f7ef;
  color: #165a38;
  border: 1px solid #bce6cb;
}

.form-message.is-error {
  background: #fff1f1;
  color: #8a1f1f;
  border: 1px solid #f1c4c4;
}

.form-message ul {
  margin: 8px 0 0;
  padding-left: 20px;
}

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

.review-card {
  padding: 24px;
  box-shadow: none;
}

.stars {
  color: #c99635;
  font-weight: 900;
  margin-bottom: 12px;
}

.review-card blockquote {
  margin: 0 0 16px;
  color: var(--mmc-ink);
}

.review-card cite {
  color: var(--mmc-muted);
  font-style: normal;
  font-weight: 800;
}

.seo-copy {
  columns: 2 320px;
  column-gap: 42px;
}

.seo-copy p {
  break-inside: avoid;
}

.cta-band {
  padding: 54px 0;
  background: var(--mmc-navy);
  color: var(--mmc-white);
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band h2 {
  color: var(--mmc-white);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 58px 0;
  background: var(--mmc-beige);
}

.page-hero .container {
  max-width: 960px;
}

.breadcrumbs {
  margin-bottom: 14px;
  color: var(--mmc-muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--mmc-navy);
  font-weight: 750;
}

.page-content {
  padding: 64px 0;
}

.entry-content {
  max-width: 900px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 2rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.25rem;
}

.entry-content li + li {
  margin-top: 0.35rem;
}

.archive-header {
  padding: 58px 0 20px;
  background:
    linear-gradient(105deg, rgba(245, 239, 228, 0.96) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.82) 100%),
    repeating-linear-gradient(135deg, rgba(9, 35, 63, 0.035) 0 1px, transparent 1px 42px),
    var(--mmc-page-hero-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
}

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

.post-card {
  overflow: hidden;
}

.post-card-image {
  aspect-ratio: 16 / 10;
  background: var(--mmc-beige);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-content {
  padding: 22px;
}

.post-meta {
  color: var(--mmc-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.single-post .entry-content {
  margin-inline: auto;
}

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

.location-card {
  padding: 20px;
  box-shadow: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 30px;
  align-items: start;
}

.contact-panel,
.contact-form-panel {
  min-width: 0;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--mmc-border);
  border-radius: var(--mmc-radius);
  background: linear-gradient(180deg, #ffffff, #fffdf8);
  box-shadow: var(--mmc-shadow-soft);
}

.contact-list p {
  margin-bottom: 18px;
  color: var(--mmc-muted);
}

.contact-list strong {
  color: var(--mmc-navy-deep);
}

.contact-map {
  aspect-ratio: 4 / 3;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--mmc-border);
  border-radius: var(--mmc-radius);
  background: var(--mmc-beige);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-form-panel > p {
  color: var(--mmc-muted);
}

.contact-form-panel .quote-form-wrap {
  max-width: none;
  margin-top: 18px;
}

.site-footer {
  background: var(--mmc-navy-deep);
  color: rgba(255, 255, 255, 0.78);
}

.footer-main {
  padding: 58px 0 42px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.7fr 1.45fr;
  gap: 34px;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--mmc-white);
}

.footer-brand .site-logo-text {
  color: var(--mmc-white);
  margin-bottom: 16px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}

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

.footer-menu li {
  position: relative;
  padding-left: 16px;
}

.footer-menu li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mmc-beige-strong);
  box-shadow: 0 0 0 4px rgba(217, 189, 134, 0.1);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--mmc-white);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1240px) {
  .header-inner {
    gap: 16px;
  }

  .primary-menu a {
    padding-inline: 9px;
    font-size: 0.9rem;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 1180px) {
  :root {
    --mmc-header-height: 62px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .primary-navigation,
  .header-phone,
  .desktop-quote {
    display: none;
  }

  .header-actions {
    justify-self: end;
    gap: 8px;
  }

  .mobile-phone,
  .menu-toggle {
    display: inline-flex;
  }

  .mobile-quote {
    display: inline-flex;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .mobile-navigation {
    position: fixed;
    inset: var(--mmc-header-height) 0 0;
    z-index: 99;
    display: block;
    padding: 18px 16px 28px;
    background: var(--mmc-white);
    border-top: 1px solid var(--mmc-border);
    transform: translateX(100%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }

  .mobile-navigation.is-open {
    transform: translateX(0);
  }

  .mobile-navigation .primary-menu {
    display: block;
  }

  .mobile-navigation .primary-menu a {
    min-height: 48px;
    padding: 12px 10px;
    border-radius: 6px;
    font-size: 1rem;
  }

  .mobile-navigation .primary-menu .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 2px solid var(--mmc-beige-strong);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: 360px;
    align-items: flex-start;
  }

  .hero-content {
    padding: 34px 0 26px;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    margin: 18px 0 0;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 10px 14px;
  }

  .trust-points {
    display: none;
  }

  .mobile-priority-services {
    display: block;
    padding: 14px 0 4px;
    background: var(--mmc-white);
  }

  .mobile-priority-services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mobile-priority-services .service-card {
    padding: 14px;
    min-height: 155px;
    box-shadow: none;
  }

  .mobile-priority-services .service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .mobile-priority-services h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .mobile-priority-services p {
    display: none;
  }

  .mobile-priority-services .button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.88rem;
  }

  .section {
    padding: 54px 0;
  }

  .service-grid,
  .benefit-grid,
  .pricing-grid,
  .reviews-grid,
  .post-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, var(--mmc-container));
  }

  .site-logo-text {
    font-size: 0.95rem;
  }

  .site-logo-mark {
    width: 38px;
    height: 38px;
  }

  .mobile-quote {
    padding-inline: 10px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(7, 26, 49, 0.92) 0%, rgba(7, 26, 49, 0.76) 100%);
  }

  .service-grid,
  .benefit-grid,
  .pricing-grid,
  .reviews-grid,
  .post-grid,
  .location-grid,
  .process,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .mobile-priority-services .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-form-wrap {
    padding: 20px;
  }

  .seo-copy {
    columns: auto;
  }

  .page-hero {
    padding: 40px 0;
  }

  .page-content {
    padding: 46px 0;
  }
}

@media (max-width: 390px) {
  .mobile-quote {
    font-size: 0.82rem;
    padding-inline: 8px;
  }

  .mobile-phone,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-priority-services .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Premium visual refresh */
:root {
  --mmc-navy: #09233f;
  --mmc-navy-soft: #153f68;
  --mmc-navy-deep: #06182d;
  --mmc-beige: #f5efe4;
  --mmc-beige-strong: #d9bd86;
  --mmc-ink: #121c2c;
  --mmc-muted: #687586;
  --mmc-border: #e8ded0;
  --mmc-gold: #c9a05e;
  --mmc-surface: #fbfaf7;
  --mmc-shadow: 0 24px 70px rgba(6, 24, 45, 0.16);
  --mmc-shadow-soft: 0 14px 38px rgba(6, 24, 45, 0.08);
  --mmc-shadow-card: 0 18px 48px rgba(6, 24, 45, 0.1);
}

body {
  background:
    linear-gradient(180deg, rgba(245, 239, 228, 0.38) 0, rgba(255, 255, 255, 0) 420px),
    var(--mmc-white);
  color: var(--mmc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

h1 {
  font-weight: 900;
}

h2 {
  font-weight: 900;
}

p {
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--mmc-container));
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #f7f1e8 0%, #f4efe6 100%);
}

.section-header {
  max-width: 800px;
  margin-bottom: 44px;
}

.section-header::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mmc-gold), #ead7b4);
}

.section-header p {
  max-width: 690px;
  margin-inline: auto;
  color: #667386;
  font-size: 1.08rem;
}

.button,
.wp-block-button__link,
button.button {
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--mmc-navy), var(--mmc-navy-soft));
  box-shadow: 0 12px 26px rgba(6, 24, 45, 0.16);
  font-size: 0.96rem;
  font-weight: 850;
  letter-spacing: 0;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
  background: linear-gradient(135deg, #123a63, #1a4b78);
  box-shadow: 0 18px 36px rgba(6, 24, 45, 0.2);
  transform: translateY(-2px);
}

.button.button-secondary {
  background: linear-gradient(135deg, #efd8a9, var(--mmc-beige-strong));
  color: var(--mmc-navy-deep);
  box-shadow: 0 16px 34px rgba(148, 111, 51, 0.22);
}

.button.button-secondary:hover,
.button.button-secondary:focus-visible {
  background: linear-gradient(135deg, #f4dfb8, #dfc28c);
  color: var(--mmc-navy-deep);
}

.button.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button.button-outline:hover,
.button.button-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(232, 222, 208, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  backdrop-filter: saturate(180%) blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 34px rgba(6, 24, 45, 0.11);
}

.header-inner {
  gap: 24px;
}

.site-logo-text {
  gap: 12px;
  color: var(--mmc-navy-deep);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #102f52 0%, var(--mmc-navy-deep) 100%);
  box-shadow: 0 12px 24px rgba(6, 24, 45, 0.18);
  font-size: 0.9rem;
}

.custom-logo {
  max-height: 48px;
  width: 130px;
  max-width: 130px;
  object-fit: contain;
}

.primary-menu {
  gap: 4px;
}

.primary-menu a {
  position: relative;
  min-height: 42px;
  padding: 8px 12px;
  color: #1d2b3e;
  font-size: 0.94rem;
  font-weight: 780;
}

.primary-menu a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: var(--mmc-gold);
  opacity: 0;
  transform: scaleX(0.36);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu a:hover,
.primary-menu a:focus-visible,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  background: rgba(245, 239, 228, 0.8);
  color: var(--mmc-navy-deep);
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.primary-menu .sub-menu {
  top: calc(100% + 14px);
  min-width: 310px;
  padding: 12px;
  border-color: rgba(232, 222, 208, 0.9);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(6, 24, 45, 0.16);
}

.primary-menu .sub-menu::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -7px;
  width: 14px;
  height: 14px;
  background: var(--mmc-white);
  border-left: 1px solid rgba(232, 222, 208, 0.9);
  border-top: 1px solid rgba(232, 222, 208, 0.9);
  transform: rotate(45deg);
}

.primary-menu .sub-menu a {
  padding: 11px 12px;
  font-weight: 750;
}

.primary-menu .sub-menu a::after {
  display: none;
}

.header-phone {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-height: 46px;
  padding-left: 18px;
  color: var(--mmc-navy-deep);
  line-height: 1.08;
}

.header-phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% + 8px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mmc-success);
  box-shadow: 0 0 0 4px rgba(45, 125, 95, 0.13);
  transform: translateY(-50%);
}

.header-phone-label {
  display: block;
  color: #7a8595;
  font-size: 0.72rem;
  font-weight: 650;
  white-space: nowrap;
}

.header-phone-number {
  display: block;
  color: var(--mmc-navy-deep);
  font-size: 1rem;
  font-weight: 900;
  white-space: nowrap;
}

.desktop-quote {
  flex-direction: column;
  gap: 2px;
  min-height: 60px;
  padding-block: 10px;
  text-align: center;
  line-height: 1.08;
  white-space: nowrap;
}

.desktop-quote span {
  display: block;
}

.hero {
  min-height: 640px;
  background-color: var(--mmc-navy-deep);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(6, 24, 45, 0.86) 0%, rgba(6, 24, 45, 0.68) 43%, rgba(6, 24, 45, 0.22) 100%),
    linear-gradient(180deg, rgba(6, 24, 45, 0.04) 0%, rgba(6, 24, 45, 0.46) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
}

.hero-content {
  position: relative;
  padding: 104px 0 94px;
}

.hero-content::after {
  content: none;
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(34vw, 390px);
  height: 150px;
  border: 1px solid rgba(217, 189, 134, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(217, 189, 134, 0.13) 0 2px, transparent 2px 100%),
    linear-gradient(0deg, rgba(217, 189, 134, 0.1) 0 2px, transparent 2px 100%);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-side-media {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  width: min(38vw, 540px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transform: translateY(-46%);
}

.hero-side-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.hero-eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(217, 189, 134, 0.36);
  background: rgba(217, 189, 134, 0.14);
  color: #f2d8a6;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mmc-gold);
  box-shadow: 0 0 0 5px rgba(217, 189, 134, 0.15);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--mmc-white);
  text-wrap: balance;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  gap: 16px;
  margin-top: 34px;
}

.trust-points {
  gap: 12px;
  margin-top: 30px;
}

.trust-points li {
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px);
}

.trust-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--mmc-gold);
}

.service-grid,
.benefit-grid,
.pricing-grid,
.reviews-grid,
.post-grid,
.location-grid {
  gap: 26px;
}

.service-card,
.benefit-card,
.price-card,
.review-card,
.post-card,
.location-card,
.process-step {
  position: relative;
  border-color: rgba(232, 222, 208, 0.92);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  box-shadow: 0 14px 38px rgba(6, 24, 45, 0.07);
}

.service-card,
.price-card,
.review-card,
.post-card,
.location-card,
.process-step {
  overflow: hidden;
}

.service-card::before,
.price-card::before,
.process-step::after,
.review-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mmc-gold), rgba(217, 189, 134, 0));
  opacity: 0.9;
}

.service-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-media {
  display: block;
  aspect-ratio: 16 / 10;
  margin: -28px -28px 22px;
  overflow: hidden;
  background: var(--mmc-beige);
  border-bottom: 1px solid rgba(232, 222, 208, 0.92);
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.service-card:hover,
.post-card:hover,
.location-card:hover {
  border-color: rgba(217, 189, 134, 0.74);
  box-shadow: var(--mmc-shadow-card);
  transform: translateY(-4px);
}

.service-card:hover .service-media img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.055);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border: 1px solid rgba(217, 189, 134, 0.42);
  background:
    linear-gradient(135deg, rgba(245, 239, 228, 0.96), rgba(255, 255, 255, 0.72));
  color: var(--mmc-navy);
  box-shadow: 0 12px 24px rgba(6, 24, 45, 0.08);
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3,
.price-card h3,
.process-step h3 {
  margin-bottom: 10px;
  color: var(--mmc-navy-deep);
}

.service-card p,
.benefit-card span,
.price-card p,
.process-step p,
.review-card blockquote,
.location-card p {
  color: #637083;
}

.service-card .button {
  margin-top: 12px;
  min-height: 42px;
  padding: 10px 15px;
  box-shadow: none;
}

.benefit-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 239, 228, 0.7));
}

.benefit-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--mmc-gold);
}

.process {
  gap: 22px;
}

.process-step {
  padding: 30px 24px;
}

.process-step::before {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--mmc-navy), var(--mmc-navy-soft));
  box-shadow: 0 10px 22px rgba(6, 24, 45, 0.18);
}

.price-card {
  padding: 30px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card:hover {
  border-color: rgba(217, 189, 134, 0.74);
  box-shadow: var(--mmc-shadow-card);
  transform: translateY(-4px);
}

.price-card.is-featured {
  padding-top: 54px;
  border-color: rgba(201, 160, 94, 0.76);
  background:
    linear-gradient(180deg, #ffffff 0%, #fffaf1 100%);
  box-shadow: 0 22px 58px rgba(6, 24, 45, 0.13);
}

.price-card.is-featured::after {
  content: "Najčastejšia voľba";
  position: absolute;
  top: 16px;
  left: 24px;
  right: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(217, 189, 134, 0.22);
  color: var(--mmc-navy-deep);
  font-size: 0.75rem;
  font-weight: 850;
}

.price-card .price {
  margin: 16px 0 12px;
  color: var(--mmc-navy-deep);
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.pricing-note {
  max-width: 850px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 189, 134, 0.34);
  border-left: 4px solid var(--mmc-gold);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 10px 28px rgba(6, 24, 45, 0.06);
}

.quote-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 24, 45, 0.98), rgba(13, 47, 82, 0.96)),
    var(--mmc-navy);
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(217, 189, 134, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(217, 189, 134, 0.07) 0 1px, transparent 1px 100%);
  background-size: 54px 54px;
  opacity: 0.6;
  pointer-events: none;
}

.quote-section > .container {
  position: relative;
}

.quote-form-wrap {
  max-width: 1020px;
  padding: 34px;
  border: 1px solid rgba(232, 222, 208, 0.82);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 246, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.form-grid {
  gap: 20px;
}

.form-field {
  gap: 8px;
}

.form-field label,
.consent-label {
  color: var(--mmc-navy-deep);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  min-height: 50px;
  padding: 12px 14px;
  border-color: #ded3c4;
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
  min-height: 142px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--mmc-gold);
  background: var(--mmc-white);
  box-shadow: 0 0 0 4px rgba(217, 189, 134, 0.2);
}

.form-field input[type="file"] {
  padding: 10px;
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(245, 239, 228, 0.75), rgba(255, 255, 255, 0.92));
}

.form-field input[type="file"]::file-selector-button {
  min-height: 36px;
  margin-right: 12px;
  padding: 8px 12px;
  border: 0;
  border-radius: 7px;
  background: var(--mmc-navy);
  color: var(--mmc-white);
  font-weight: 800;
  cursor: pointer;
}

.form-help {
  color: #697587;
}

.consent-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(232, 222, 208, 0.82);
  border-radius: 8px;
  background: rgba(245, 239, 228, 0.46);
}

.quote-form .consent-field input[type="checkbox"] {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  min-height: 22px;
  margin: 2px 0 0;
  padding: 0;
  border: 1.5px solid #7b8491;
  border-radius: 4px;
  background: var(--mmc-white);
  box-shadow: none;
  accent-color: var(--mmc-navy);
}

.consent-field .consent-label {
  margin: 0;
  line-height: 1.45;
}

.form-actions {
  margin-top: 24px;
}

.form-actions .button {
  min-width: 210px;
}

.review-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #fffdf8);
}

.stars {
  color: var(--mmc-gold);
  letter-spacing: 1px;
}

.review-card cite {
  color: var(--mmc-navy);
}

.seo-copy {
  color: #435064;
  font-size: 1.02rem;
}

.seo-copy p:first-child::first-letter {
  color: var(--mmc-navy);
  font-size: 2.65rem;
  line-height: 0.92;
  font-weight: 900;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(6, 24, 45, 0.98), rgba(15, 52, 87, 0.96)),
    var(--mmc-navy);
}

.cta-band-inner {
  padding: 8px 0;
}

.page-hero {
  background:
    linear-gradient(105deg, rgba(245, 239, 228, 0.96) 0%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.82) 100%),
    repeating-linear-gradient(135deg, rgba(9, 35, 63, 0.035) 0 1px, transparent 1px 42px),
    var(--mmc-page-hero-image, none);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover, auto, cover;
}

.page-hero .container {
  max-width: var(--mmc-container);
}

.breadcrumbs {
  font-weight: 750;
}

.entry-content {
  color: #3f4b5f;
  font-size: 1.02rem;
}

.page-content .entry-content {
  width: 100%;
  max-width: none;
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.service-detail-media {
  position: sticky;
  top: calc(var(--mmc-header-height) + 32px);
}

.service-detail-media-frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  border: 1px solid rgba(232, 222, 208, 0.9);
  border-radius: 12px;
  background: #d8dde3;
  box-shadow: var(--mmc-shadow-soft);
}

.service-detail-media-frame img,
.service-detail-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.service-detail-media-frame img {
  object-fit: cover;
}

.service-detail-placeholder {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0) 46%),
    #d7dce2;
}

.single-post .entry-content {
  max-width: 900px;
}

.page-content .pricing-note {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.page-content .pricing-grid,
.page-content .service-grid,
.page-content .benefit-grid,
.page-content .reviews-grid,
.page-content .location-grid {
  width: 100%;
}

.entry-content h2 {
  color: var(--mmc-navy-deep);
}

.entry-content ul li::marker,
.entry-content ol li::marker {
  color: var(--mmc-gold);
  font-weight: 900;
}

.post-card,
.location-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.post-card-content {
  padding: 24px;
}

.site-footer {
  background:
    linear-gradient(180deg, #071a31, #051323);
}

.footer-main {
  padding-top: 68px;
}

.site-footer a {
  transition: color 160ms ease;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 1240px) {
  .primary-menu a {
    padding-inline: 10px;
    font-size: 0.9rem;
  }

  .desktop-quote {
    padding-inline: 15px;
  }
}

@media (max-width: 1180px) {
  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .header-inner {
    gap: 12px;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    gap: 7px;
  }

  .mobile-phone,
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .mobile-phone {
    background: rgba(245, 239, 228, 0.92);
    color: var(--mmc-navy);
  }

  .menu-toggle {
    background: linear-gradient(135deg, var(--mmc-navy), var(--mmc-navy-soft));
  }

  .mobile-quote {
    min-height: 42px;
    border-radius: 8px;
    font-weight: 850;
  }

  .mobile-navigation {
    left: 0;
    right: 0;
    padding: 18px;
    width: 100%;
    height: calc(100dvh - var(--mmc-header-height));
    min-height: calc(100dvh - var(--mmc-header-height));
    background:
      linear-gradient(180deg, #ffffff, #fffaf2);
    box-shadow: 0 24px 70px rgba(6, 24, 45, 0.16);
  }

  .mobile-navigation .primary-menu a {
    border-bottom: 1px solid rgba(232, 222, 208, 0.72);
    border-radius: 0;
  }

  .mobile-navigation .primary-menu a::after,
  .mobile-navigation .primary-menu .sub-menu::before {
    display: none;
  }

  .mobile-navigation .primary-menu .menu-item-has-children {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    border-bottom: 1px solid rgba(232, 222, 208, 0.72);
  }

  .mobile-navigation .primary-menu .menu-item-has-children > a {
    border-bottom: 0;
  }

  .mobile-navigation .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 8px;
    background: rgba(217, 189, 134, 0.24);
    color: var(--mmc-navy);
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
  }

  .mobile-navigation .submenu-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 180ms ease;
  }

  .mobile-navigation .menu-item-has-children.is-submenu-open > .submenu-toggle {
    background: rgba(217, 189, 134, 0.42);
  }

  .mobile-navigation .menu-item-has-children.is-submenu-open > .submenu-toggle svg {
    transform: rotate(180deg);
  }

  .mobile-navigation .primary-menu .sub-menu {
    grid-column: 1 / -1;
    display: block;
    margin: 0 0 0 14px;
    padding: 0 0 0 14px;
    border: 0;
    border-left: 2px solid var(--mmc-beige-strong);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-navigation .primary-menu .sub-menu[hidden] {
    display: none;
  }

  .mobile-navigation .primary-menu .sub-menu a {
    min-height: 46px;
    padding: 11px 10px;
    font-size: 0.95rem;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding: 42px 0 32px;
  }

  .hero-content::after {
    display: none;
  }

  .hero-side-media {
    display: none;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.05rem, 7vw, 3.4rem);
  }

  .mobile-priority-services {
    padding: 16px 0 8px;
    background: linear-gradient(180deg, #ffffff, #fffaf2);
  }

  .mobile-priority-services .service-card {
    min-height: 164px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(6, 24, 45, 0.06);
  }

  .mobile-priority-services .service-media {
    display: none;
  }

  .mobile-priority-services .service-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 68px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .price-card.is-featured::after {
    position: static;
    display: inline-flex;
    margin-bottom: 14px;
  }

  .price-card.is-featured {
    padding-top: 30px;
  }

  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-detail-media {
    position: static;
  }

  .service-detail-media-frame,
  .service-detail-media-frame img,
  .service-detail-placeholder {
    min-height: 240px;
  }

  .service-detail-media-frame {
    aspect-ratio: 16 / 10;
  }

  .mobile-whatsapp-button {
    position: fixed;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 980;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #25d366;
    color: var(--mmc-white);
    box-shadow: 0 16px 36px rgba(6, 24, 45, 0.24);
  }

  .mobile-whatsapp-button svg {
    width: 31px;
    height: 31px;
  }

  .mobile-whatsapp-button:hover,
  .mobile-whatsapp-button:focus-visible {
    color: var(--mmc-white);
    background: #1fbd5b;
    transform: translateY(-2px);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--mmc-container));
  }

  .site-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .custom-logo {
    width: 112px;
    max-width: 112px;
    max-height: 42px;
  }

  .site-logo-text span:last-child {
    max-width: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-phone,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-quote {
    min-height: 40px;
    padding-inline: 10px;
  }

  .hero {
    min-height: 360px;
  }

  .hero-content {
    padding: 30px 0 24px;
  }

  .hero-eyebrow {
    margin-bottom: 12px;
    padding: 7px 11px;
    font-size: 0.86rem;
  }

  .hero h1 {
    margin-bottom: 12px;
    font-size: 2rem;
  }

  .hero p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.91rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-header {
    text-align: left;
  }

  .section-header::before {
    margin-inline: 0;
  }

  .section-header p {
    margin-inline: 0;
  }

  .service-card,
  .benefit-card,
  .price-card,
  .review-card,
  .process-step,
  .location-card {
    padding: 22px;
  }

  .mobile-priority-services .service-grid {
    gap: 12px;
  }

  .mobile-priority-services .service-card {
    padding: 14px;
  }

  .service-media {
    margin: -22px -22px 18px;
  }

  .mobile-priority-services .service-card h3 {
    font-size: 0.96rem;
  }

  .mobile-priority-services .service-card .button {
    min-height: 36px;
    font-size: 0.82rem;
  }

  .quote-form-wrap {
    padding: 20px;
    border-radius: 10px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .form-actions .button {
    width: 100%;
  }

  .cta-band-inner {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  .header-actions {
    gap: 5px;
  }

  .mobile-quote {
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .mobile-phone,
  .menu-toggle {
    width: 38px;
    height: 38px;
  }

  .mobile-whatsapp-button {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .hero h1 {
    font-size: 1.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
