:root {
  --mv-ink: #14110f;
  --mv-ink-soft: #3b3531;
  --mv-cream: #f6efe6;
  --mv-sand: #e8dccb;
  --mv-gold: #c9a227;
  --mv-gold-deep: #9d7c12;
  --mv-terracotta: #b34a2a;
  --mv-olive: #4b5d3a;
  --mv-white: #ffffff;
  --mv-shadow-sm: 0 6px 18px rgba(20, 17, 15, 0.08);
  --mv-shadow-md: 0 18px 44px rgba(20, 17, 15, 0.14);
  --mv-shadow-lg: 0 30px 70px rgba(20, 17, 15, 0.22);
  --mv-radius-sm: 10px;
  --mv-radius-md: 18px;
  --mv-radius-lg: 32px;
  --mv-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --mv-font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --mv-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--mv-font-body);
  color: var(--mv-ink);
  background-color: var(--mv-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--mv-font-display);
  color: var(--mv-ink);
  letter-spacing: -0.01em;
  line-height: 1.18;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); }

p {
  color: var(--mv-ink-soft);
}

a {
  color: var(--mv-terracotta);
  text-decoration: none;
  transition: color 0.25s var(--mv-ease);
}

a:hover,
a:focus {
  color: var(--mv-gold-deep);
}

.mv-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

.mv-container--narrow {
  max-width: 880px;
}

.mv-section {
  position: relative;
  padding-block: clamp(56px, 8vw, 112px);
}

.mv-section--tight {
  padding-block: clamp(40px, 5vw, 72px);
}

.mv-section--dark {
  background-color: var(--mv-ink);
  color: var(--mv-cream);
}

.mv-section--dark h1,
.mv-section--dark h2,
.mv-section--dark h3,
.mv-section--dark h4,
.mv-section--dark p,
.mv-section--dark li {
  color: var(--mv-cream);
}

.mv-section--sand {
  background-color: var(--mv-sand);
}

.mv-section--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--mv-white);
}

.mv-section--photo h1,
.mv-section--photo h2,
.mv-section--photo h3,
.mv-section--photo p,
.mv-section--photo li {
  color: var(--mv-white);
}

.mv-section--photo a:not(.mv-btn) {
  color: var(--mv-cream);
  text-decoration: underline;
}

.mv-eyebrow {
  display: inline-block;
  font-family: var(--mv-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mv-gold-deep);
  margin-bottom: 14px;
}

.mv-section--dark .mv-eyebrow,
.mv-section--photo .mv-eyebrow {
  color: var(--mv-gold);
}

.mv-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--mv-ink-soft);
  max-width: 62ch;
}

.mv-section--dark .mv-lead,
.mv-section--photo .mv-lead {
  color: var(--mv-cream);
}

/* ---------- Buttons ---------- */
.mv-btn {
  --mv-btn-bg: var(--mv-gold);
  --mv-btn-fg: var(--mv-ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 2px solid transparent;
  background-color: var(--mv-btn-bg);
  color: var(--mv-btn-fg);
  cursor: pointer;
  transition: transform 0.28s var(--mv-ease), background-color 0.28s var(--mv-ease), color 0.28s var(--mv-ease), border-color 0.28s var(--mv-ease), box-shadow 0.28s var(--mv-ease);
  box-shadow: var(--mv-shadow-sm);
}

.mv-btn:hover,
.mv-btn:focus {
  transform: translateY(-3px);
  box-shadow: var(--mv-shadow-md);
  color: var(--mv-white);
  background-color: var(--mv-terracotta);
}

.mv-btn--ghost {
  --mv-btn-bg: transparent;
  --mv-btn-fg: var(--mv-white);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.mv-btn--ghost:hover,
.mv-btn--ghost:focus {
  background-color: var(--mv-white);
  color: var(--mv-ink);
  border-color: var(--mv-white);
}

.mv-btn--dark {
  --mv-btn-bg: var(--mv-ink);
  --mv-btn-fg: var(--mv-cream);
}

.mv-btn--dark:hover,
.mv-btn--dark:focus {
  background-color: var(--mv-gold);
  color: var(--mv-ink);
}

.mv-btn--block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.mv-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(246, 239, 230, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 17, 15, 0.08);
}

.mv-header__topbar {
  background-color: var(--mv-ink);
  color: var(--mv-cream);
  font-size: 0.84rem;
  padding-block: 7px;
}

.mv-header__topbar a,
.mv-header__topbar span {
  color: var(--mv-cream);
  font-weight: 500;
}

.mv-header__topbar a:hover,
.mv-header__topbar a:focus {
  color: var(--mv-gold);
}

.mv-header__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 26px;
  align-items: center;
}

.mv-header__contacts i {
  color: var(--mv-gold);
  margin-right: 7px;
}

.mv-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
}

.mv-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mv-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mv-ink);
}

.mv-header__brand:hover,
.mv-header__brand:focus {
  color: var(--mv-terracotta);
}

.mv-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mv-nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--mv-ink);
  padding-block: 6px;
}

.mv-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--mv-gold);
  transition: width 0.3s var(--mv-ease);
}

.mv-nav__link:hover::after,
.mv-nav__link:focus::after,
.mv-nav__link.is-active::after {
  width: 100%;
}

.mv-nav__link.is-active {
  color: var(--mv-terracotta);
}

.mv-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(20, 17, 15, 0.18);
  background-color: transparent;
  color: var(--mv-ink);
  font-size: 1.25rem;
  cursor: pointer;
}

.mv-burger:hover,
.mv-burger:focus {
  background-color: var(--mv-ink);
  color: var(--mv-cream);
}

@media (max-width: 992px) {
  .mv-nav--mobile {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 40px 32px;
    background-color: var(--mv-cream);
    box-shadow: var(--mv-shadow-lg);
    transform: translateX(105%);
    transition: transform 0.4s var(--mv-ease);
    z-index: 1055;
  }

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

  .mv-burger {
    display: inline-flex;
  }
}

/* ---------- Hero / Slider ---------- */
.mv-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--mv-white);
  overflow: hidden;
}

.mv-hero__slider {
  position: relative;
  width: 100%;
}

.mv-hero__slide {
  display: none;
  padding-block: clamp(64px, 10vw, 132px);
}

.mv-hero__slide.is-active {
  display: block;
  animation: mvFadeUp 0.8s var(--mv-ease);
}

.mv-hero__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  color: var(--mv-white);
  max-width: 18ch;
}

.mv-hero__text {
  color: var(--mv-cream);
  max-width: 56ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  margin-block: 22px 32px;
}

.mv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mv-hero__dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.mv-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s var(--mv-ease), transform 0.3s var(--mv-ease);
}

.mv-hero__dot.is-active {
  background-color: var(--mv-gold);
  border-color: var(--mv-gold);
  transform: scale(1.25);
}

@keyframes mvFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Cards ---------- */
.mv-grid {
  display: grid;
  gap: 26px;
}

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

@media (max-width: 992px) {
  .mv-grid--3,
  .mv-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .mv-grid--2,
  .mv-grid--3,
  .mv-grid--4 { grid-template-columns: 1fr; }
}

.mv-card {
  position: relative;
  background-color: var(--mv-white);
  border-radius: var(--mv-radius-md);
  overflow: hidden;
  box-shadow: var(--mv-shadow-sm);
  transition: transform 0.35s var(--mv-ease), box-shadow 0.35s var(--mv-ease);
  display: flex;
  flex-direction: column;
}

.mv-card:hover,
.mv-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--mv-shadow-md);
}

.mv-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--mv-sand);
  overflow: hidden;
}

.mv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--mv-ease);
}

.mv-card:hover .mv-card__media img {
  transform: scale(1.05);
}

.mv-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: var(--mv-gold);
  color: var(--mv-ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.mv-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.mv-card__title {
  margin: 0;
  font-size: 1.3rem;
}

.mv-card__text {
  margin: 0;
  color: var(--mv-ink-soft);
}

.mv-card__price {
  font-family: var(--mv-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mv-terracotta);
}

.mv-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  font-size: 0.86rem;
  color: var(--mv-ink-soft);
}

.mv-card--dark {
  background-color: var(--mv-ink);
  color: var(--mv-cream);
}

.mv-card--dark h3,
.mv-card--dark p {
  color: var(--mv-cream);
}

.mv-card--featured {
  border: 2px solid var(--mv-gold);
}

/* ---------- Feature & Stats ---------- */
.mv-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.mv-feature__icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background-color: var(--mv-gold);
  color: var(--mv-ink);
  font-size: 1.3rem;
}

.mv-section--dark .mv-feature__icon {
  background-color: var(--mv-terracotta);
  color: var(--mv-white);
}

.mv-feature__title {
  margin: 4px 0 8px;
  font-size: 1.15rem;
}

.mv-feature__text {
  margin: 0;
  font-size: 0.95rem;
}

.mv-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .mv-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.mv-stats__item {
  text-align: center;
  padding: 26px 14px;
  border-radius: var(--mv-radius-md);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mv-section--sand .mv-stats__item {
  background-color: var(--mv-white);
  border-color: rgba(20, 17, 15, 0.08);
  box-shadow: var(--mv-shadow-sm);
}

.mv-stats__num {
  display: block;
  font-family: var(--mv-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--mv-gold);
  line-height: 1;
}

.mv-stats__label {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ---------- Steps / Process ---------- */
.mv-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: mv-step;
  display: grid;
  gap: 22px;
}

.mv-steps__item {
  position: relative;
  padding: 26px 26px 26px 92px;
  background-color: var(--mv-white);
  border-radius: var(--mv-radius-md);
  box-shadow: var(--mv-shadow-sm);
}

.mv-steps__item::before {
  counter-increment: mv-step;
  content: counter(mv-step);
  position: absolute;
  left: 24px;
  top: 26px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--mv-ink);
  color: var(--mv-gold);
  font-family: var(--mv-font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.mv-steps__title {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.mv-steps__text {
  margin: 0;
  color: var(--mv-ink-soft);
}

/* ---------- Gallery ---------- */
.mv-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 768px) {
  .mv-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .mv-gallery { grid-template-columns: 1fr; }
}

.mv-gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--mv-radius-md);
  overflow: hidden;
  background-color: var(--mv-sand);
}

.mv-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--mv-ease);
}

.mv-gallery__item:hover img {
  transform: scale(1.08);
}

.mv-gallery__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mv-white);
  background-image: linear-gradient(rgba(20, 17, 15, 0), rgba(20, 17, 15, 0.85));
}

/* ---------- Testimonials ---------- */
.mv-testimonial {
  background-color: var(--mv-white);
  border-radius: var(--mv-radius-md);
  padding: 30px;
  box-shadow: var(--mv-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.mv-testimonial__quote {
  margin: 0;
  font-style: italic;
  color: var(--mv-ink-soft);
}

.mv-testimonial__stars {
  color: var(--mv-gold);
  font-size: 0.92rem;
}

.mv-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.mv-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--mv-sand);
  flex: 0 0 auto;
}

.mv-testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-testimonial__name {
  font-weight: 700;
  color: var(--mv-ink);
}

.mv-testimonial__role {
  font-size: 0.84rem;
  color: var(--mv-ink-soft);
}

.mv-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.mv-logos img {
  max-height: 54px;
  width: auto;
  opacity: 0.65;
  filter: grayscale(1);
  transition: opacity 0.3s var(--mv-ease), filter 0.3s var(--mv-ease);
}

.mv-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ---------- FAQ ---------- */
.mv-faq .accordion-item {
  border: none;
  background-color: var(--mv-white);
  border-radius: var(--mv-radius-md) !important;
  margin-bottom: 14px;
  box-shadow: var(--mv-shadow-sm);
  overflow: hidden;
}

.mv-faq .accordion-button {
  font-family: var(--mv-font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--mv-ink);
  background-color: var(--mv-white);
  padding: 20px 24px;
}

.mv-faq .accordion-button:not(.collapsed) {
  color: var(--mv-terracotta);
  background-color: var(--mv-white);
  box-shadow: none;
}

.mv-faq .accordion-button:focus {
  box-shadow: none;
  border-color: var(--mv-gold);
}

.mv-faq .accordion-body {
  color: var(--mv-ink-soft);
  padding-top: 0;
}

/* ---------- Forms ---------- */
.mv-form {
  background-color: var(--mv-white);
  border-radius: var(--mv-radius-md);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--mv-shadow-md);
}

.mv-field {
  margin-bottom: 18px;
}

.mv-field__label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--mv-ink);
}

.mv-field__control {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.98rem;
  font-family: var(--mv-font-body);
  color: var(--mv-ink);
  background-color: var(--mv-cream);
  border: 1px solid rgba(20, 17, 15, 0.14);
  border-radius: var(--mv-radius-sm);
  transition: border-color 0.25s var(--mv-ease), box-shadow 0.25s var(--mv-ease), background-color 0.25s var(--mv-ease);
}

.mv-field__control:focus {
  outline: none;
  background-color: var(--mv-white);
  border-color: var(--mv-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.22);
}

textarea.mv-field__control {
  min-height: 140px;
  resize: vertical;
}

.mv-field__error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 0.82rem;
  color: var(--mv-terracotta);
  font-weight: 600;
}

.mv-field__control.is-invalid {
  border-color: var(--mv-terracotta);
  background-color: #fdf2ef;
}

.mv-form__note {
  font-size: 0.82rem;
  color: var(--mv-ink-soft);
  margin-top: 14px;
}

/* ---------- Newsletter ---------- */
.mv-newsletter {
  background-color: var(--mv-ink);
  border-radius: var(--mv-radius-lg);
  padding: clamp(28px, 5vw, 54px);
  color: var(--mv-cream);
}

.mv-newsletter h3 {
  color: var(--mv-white);
}

.mv-newsletter p {
  color: var(--mv-cream);
}

.mv-newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.mv-newsletter__form .mv-field__control {
  flex: 1 1 260px;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--mv-white);
}

.mv-newsletter__form .mv-field__control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.mv-newsletter__form .mv-field__control:focus {
  background-color: rgba(255, 255, 255, 0.14);
  color: var(--mv-white);
}

/* ---------- Map ---------- */
.mv-map {
  border-radius: var(--mv-radius-md);
  overflow: hidden;
  box-shadow: var(--mv-shadow-md);
  line-height: 0;
}

.mv-map iframe {
  width: 100%;
  height: clamp(320px, 45vw, 480px);
  border: 0;
}

/* ---------- Lists ---------- */
.mv-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.mv-checklist li {
  position: relative;
  padding-left: 34px;
  color: var(--mv-ink-soft);
}

.mv-section--dark .mv-checklist li,
.mv-section--photo .mv-checklist li {
  color: var(--mv-cream);
}

.mv-checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--mv-gold-deep);
}

.mv-section--dark .mv-checklist li::before,
.mv-section--photo .mv-checklist li::before {
  color: var(--mv-gold);
}

/* ---------- Blog ---------- */
.mv-post {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--mv-white);
  border-radius: var(--mv-radius-md);
  overflow: hidden;
  box-shadow: var(--mv-shadow-sm);
  transition: transform 0.35s var(--mv-ease), box-shadow 0.35s var(--mv-ease);
}

.mv-post:hover,
.mv-post:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--mv-shadow-md);
}

.mv-post__media {
  aspect-ratio: 16 / 10;
  background-color: var(--mv-sand);
  overflow: hidden;
}

.mv-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-post__body {
  padding: 0 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv-post__date {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mv-gold-deep);
}

.mv-post__title {
  margin: 0;
  font-size: 1.35rem;
}

.mv-post__excerpt {
  margin: 0;
  color: var(--mv-ink-soft);
}

/* ---------- Article content ---------- */
.mv-prose p,
.mv-prose li {
  color: var(--mv-ink-soft);
}

.mv-prose h2 {
  margin-top: 42px;
  margin-bottom: 16px;
}

.mv-prose h3 {
  margin-top: 30px;
  margin-bottom: 12px;
}

.mv-prose ul,
.mv-prose ol {
  padding-left: 22px;
  display: grid;
  gap: 8px;
}

.mv-prose blockquote {
  margin: 30px 0;
  padding: 22px 26px;
  border-left: 5px solid var(--mv-gold);
  background-color: var(--mv-white);
  border-radius: 0 var(--mv-radius-sm) var(--mv-radius-sm) 0;
  font-style: italic;
}

/* ---------- Footer ---------- */
.mv-footer {
  background-color: var(--mv-ink);
  color: var(--mv-cream);
  padding-top: clamp(48px, 7vw, 82px);
}

.mv-footer h4 {
  color: var(--mv-white);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.mv-footer p,
.mv-footer li,
.mv-footer address {
  color: var(--mv-cream);
  font-size: 0.95rem;
}

.mv-footer a {
  color: var(--mv-cream);
}

.mv-footer a:hover,
.mv-footer a:focus {
  color: var(--mv-gold);
}

.mv-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.mv-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mv-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--mv-white);
  margin-bottom: 18px;
}

.mv-footer__bottom {
  margin-top: clamp(36px, 5vw, 56px);
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
}

.mv-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mv-social {
  display: flex;
  gap: 12px;
}

.mv-social__link {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--mv-cream);
  font-size: 1.1rem;
  transition: background-color 0.28s var(--mv-ease), color 0.28s var(--mv-ease), transform 0.28s var(--mv-ease);
}

.mv-social__link:hover,
.mv-social__link:focus {
  background-color: var(--mv-gold);
  color: var(--mv-ink);
  transform: translateY(-3px);
}

/* ---------- Breadcrumbs ---------- */
.mv-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.88rem;
}

.mv-breadcrumbs li::after {
  content: "/";
  margin-left: 8px;
  color: var(--mv-ink-soft);
}

.mv-breadcrumbs li:last-child::after {
  content: "";
}

/* ---------- Cookie banner ---------- */
.mv-cookie {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 1080;
  width: min(960px, calc(100% - 32px));
  background-color: var(--mv-ink);
  color: var(--mv-cream);
  border-radius: var(--mv-radius-lg);
  box-shadow: var(--mv-shadow-lg);
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 26px clamp(22px, 4vw, 38px);
}

.mv-cookie__layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.mv-cookie__text {
  flex: 1 1 420px;
  margin: 0;
  color: var(--mv-cream);
  font-size: 0.95rem;
}

.mv-cookie__text a {
  color: var(--mv-gold);
  text-decoration: underline;
  font-weight: 600;
}

.mv-cookie__text a:hover,
.mv-cookie__text a:focus {
  color: var(--mv-white);
}

.mv-cookie__title {
  display: block;
  font-family: var(--mv-font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--mv-white);
  margin-bottom: 6px;
}

.mv-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mv-cookie__btn {
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.28s var(--mv-ease), color 0.28s var(--mv-ease), border-color 0.28s var(--mv-ease);
}

.mv-cookie__btn--accept {
  background-color: var(--mv-gold);
  color: var(--mv-ink);
  border: 2px solid var(--mv-gold);
}

.mv-cookie__btn--accept:hover,
.mv-cookie__btn--accept:focus {
  background-color: var(--mv-white);
  border-color: var(--mv-white);
}

.mv-cookie__btn--decline {
  background-color: transparent;
  color: var(--mv-cream);
  border: 2px solid rgba(246, 239, 230, 0.55);
}

.mv-cookie__btn--decline:hover,
.mv-cookie__btn--decline:focus {
  background-color: rgba(246, 239, 230, 0.14);
  border-color: var(--mv-cream);
}

/* ---------- Utilities ---------- */
.mv-mb-0 { margin-bottom: 0; }
.mv-mt-0 { margin-top: 0; }
.mv-mt-32 { margin-top: 32px; }
.mv-mt-48 { margin-top: 48px; }
.mv-text-center { text-align: center; }
.mv-mx-auto { margin-inline: auto; }
.mv-hidden { display: none !important; }

.mv-divider {
  width: 68px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--mv-gold);
  margin-block: 20px 26px;
}

.mv-text-center .mv-divider {
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* ---------- QA accessibility overrides ---------- */
/* Hero uses a photo overlay only; give it an explicit dark background so
   text layers are evaluated against the dark ink color, not the page cream. */
.mv-hero {
  background-color: var(--mv-ink);
}

/* Eyebrow labels sitting on light (white) cards need a darker gold to reach 4.5:1 */
.mv-card:not(.mv-card--dark) .mv-eyebrow {
  color: #856312;
}

/* Links inside dark cards must be visible on the ink background */
.mv-card--dark .mv-footer__list a {
  color: var(--mv-gold);
}

/* Newsletter sits on the dark ink surface: keep labels and footnotes legible */
.mv-newsletter .mv-field__label {
  color: var(--mv-cream);
}

.mv-newsletter .mv-form__note {
  color: var(--mv-cream);
}

.mv-newsletter .mv-form__note a {
  color: var(--mv-gold);
}

/* ============================================================
   QA contrast fixes for /blog/
   ============================================================ */

/* Darker gold tone that still passes WCAG AA on light backgrounds */
:root {
  --mv-gold-ink: #6b5309;
}

/* Photo sections only had a background-image; add a solid dark
   background-color so light text always has a readable backdrop
   (and so contrast tooling resolves the correct background). */
.mv-section--photo {
  background-color: var(--mv-ink);
}

/* Eyebrow labels: use the darker gold on light surfaces so the
   small uppercase text reaches AA contrast. Keep the brighter gold
   on dark surfaces / dark cards / the dark newsletter block. */
.mv-eyebrow {
  color: var(--mv-gold-ink);
}

.mv-section--dark .mv-eyebrow,
.mv-section--photo .mv-eyebrow,
.mv-card--dark .mv-eyebrow,
.mv-newsletter .mv-eyebrow {
  color: var(--mv-gold);
}

/* Post date on white cards */
.mv-post__date {
  color: var(--mv-gold-ink);
}

/* Testimonials sit inside the dark section, but the testimonial
   card itself is white, so the quote text must be dark. */
.mv-section--dark .mv-testimonial__quote {
  color: var(--mv-ink-soft);
}

/* Newsletter block (dark background): make the hidden label and the
   inline privacy link readable against the dark surface. */
.mv-newsletter .mv-field__label {
  color: var(--mv-cream);
}

.mv-newsletter a,
.mv-newsletter .mv-form__note a {
  color: var(--mv-gold);
}

/* ---------- Contrast overrides (about page) ---------- */
/* Photo sections use an image + dark gradient overlay; give them an explicit
   dark background-color so text contrast is measured/computed against dark. */
.mv-section--photo {
  background-color: var(--mv-ink);
}

/* Darken the deep-gold accent so eyebrow labels / small captions keep >=4.5:1
   contrast on the light cream and sand backgrounds. */
:root {
  --mv-gold-deep: #6f550a;
}

/* Blog post cards sit inside a dark section; the excerpt must stay dark ink on
   the white card instead of inheriting the section's cream text color. */
.mv-section--dark .mv-post__excerpt,
.mv-section--dark .mv-post__body p {
  color: var(--mv-ink-soft);
}

/* Newsletter lives on the dark ink panel: keep the (visually hidden) field
   label and inline links readable against that dark background. */
.mv-newsletter .mv-field__label,
.mv-newsletter__form .mv-field__label {
  color: var(--mv-cream);
}

.mv-newsletter a,
.mv-form__note a {
  color: var(--mv-gold);
}

.mv-newsletter a:hover,
.mv-newsletter a:focus,
.mv-form__note a:hover,
.mv-form__note a:focus {
  color: var(--mv-white);
}

/* ---------- Contrast overrides (contacts page) ---------- */
/* FAQ cards live inside the dark section but the card surface is white,
   so their titles and body text must be dark ink, not inherited cream. */
.mv-section--dark .mv-card:not(.mv-card--dark) h3,
.mv-section--dark .mv-card:not(.mv-card--dark) .mv-card__title {
  color: var(--mv-ink);
}

.mv-section--dark .mv-card:not(.mv-card--dark) p,
.mv-section--dark .mv-card:not(.mv-card--dark) .mv-card__text {
  color: var(--mv-ink-soft);
}

/* The privacy link sits on the white form panel: use the darker gold tone
   so the small footnote text reaches WCAG AA contrast. */
.mv-form__note a {
  color: var(--mv-gold-ink);
}

.mv-form__note a:hover,
.mv-form__note a:focus {
  color: var(--mv-terracotta);
}

/* ---------- Contrast overrides (catering-eventi-aziendali-t7) ---------- */
/* Process step cards sit on white surfaces even inside .mv-section--photo,
   so the forced-white text must be reset to dark ink for AA contrast. */
.mv-section--photo .mv-steps__title {
  color: var(--mv-ink);
}

.mv-section--photo .mv-steps__text {
  color: var(--mv-ink-soft);
}

/* Gallery captions sit over the sand-coloured media area; give the caption
   its own solid dark backdrop so the white text always has enough contrast. */
.mv-gallery__caption {
  color: var(--mv-white);
  background-color: #14110f;
  background-image: linear-gradient(rgba(20, 17, 15, 0.2), rgba(20, 17, 15, 0.92));
}

/* Inline links inside dark sections (e.g. the email address) need a lighter
   accent than terracotta to stay legible on the ink background. */
.mv-section--dark a:not(.mv-btn) {
  color: var(--mv-gold);
}

.mv-section--dark a:not(.mv-btn):hover,
.mv-section--dark a:not(.mv-btn):focus {
  color: var(--mv-white);
}

/* The quote form is a white card even though it lives in a dark section, so
   the small print note must be dark ink, not the section cream colour. */
.mv-section--dark .mv-form__note {
  color: var(--mv-ink-soft);
}

.mv-section--dark .mv-form__note a {
  color: var(--mv-terracotta);
}

/* ============================================================
   QA contrast fixes for /catering-matrimoni-italia-k4/
   ============================================================ */

/* Process step cards are white surfaces, but they sit inside a .mv-section--photo
   wrapper whose h3/p rule forces white text. Restore dark text on the cards. */
.mv-section--photo .mv-steps__title,
.mv-section--dark .mv-steps__title,
.mv-section--photo .mv-steps__item h3,
.mv-section--dark .mv-steps__item h3 {
  color: var(--mv-ink);
}

.mv-section--photo .mv-steps__text,
.mv-section--dark .mv-steps__text,
.mv-section--photo .mv-steps__item p,
.mv-section--dark .mv-steps__item p {
  color: var(--mv-ink-soft);
}

/* Gallery captions: the gradient overlay starts transparent, so the computed
   background stayed the sand tone behind the photo. Give the caption a solid
   dark backdrop so the white label always clears AA contrast. */
.mv-gallery__caption {
  background-color: #14110f;
  background-image: linear-gradient(rgba(20, 17, 15, 0), rgba(20, 17, 15, 0.85));
}

/* Plain text links placed directly on the dark ink section (e.g. the e-mail
   address in the quote block) were using the default terracotta, which is too
   low-contrast. Use the gold accent on dark surfaces. */
.mv-section--dark a:not(.mv-btn):not(.dropdown-item) {
  color: var(--mv-gold);
}

.mv-section--dark a:not(.mv-btn):not(.dropdown-item):hover,
.mv-section--dark a:not(.mv-btn):not(.dropdown-item):focus {
  color: var(--mv-white);
}

/* The contact form is a white panel even though it lives in the dark section,
   so its footnote must stay dark instead of inheriting the section's cream. */
.mv-section--dark .mv-form__note {
  color: var(--mv-ink-soft);
}

/* ============================================================
   QA contrast fix (homepage) — email link on sand section
   ============================================================ */
/* The "Dove ci trovate" section uses the sand background; the plain
   terracotta link colour only reaches ~3.9:1 there. Darken links that
   sit directly on sand surfaces so they clear WCAG AA (>= 4.5:1). */
.mv-section--sand a:not(.mv-btn) {
  color: #8a3418;
}

.mv-section--sand a:not(.mv-btn):hover,
.mv-section--sand a:not(.mv-btn):focus {
  color: #6f550a;
}

/* ============================================================
   QA contrast fix (/menu-matrimonio-emilia-romagna-r8/)
   ============================================================ */
/* The blog newsletter block sits inside a .mv-section--sand wrapper, but the
   .mv-newsletter panel itself is dark ink. The late ".mv-section--sand a:not(.mv-btn)"
   rule was winning the specificity tie and forcing the terracotta/gold-ink tone
   (#8a3418) onto the privacy link, which is unreadable on rgb(20,17,15).
   Restore the bright gold accent for links inside the dark newsletter panel. */
.mv-section--sand .mv-newsletter a,
.mv-section--sand .mv-newsletter .mv-form__note a,
.mv-newsletter .mv-form__note a {
  color: var(--mv-gold);
}

.mv-section--sand .mv-newsletter a:hover,
.mv-section--sand .mv-newsletter a:focus,
.mv-section--sand .mv-newsletter .mv-form__note a:hover,
.mv-section--sand .mv-newsletter .mv-form__note a:focus,
.mv-newsletter .mv-form__note a:hover,
.mv-newsletter .mv-form__note a:focus {
  color: var(--mv-white);
}

/* ============================================================
   QA contrast fixes for /thank-you/
   ============================================================ */

/* The two blog post cards are white surfaces but they live inside a
   .mv-section--dark wrapper. The generic
   ".mv-section--dark a:not(.mv-btn)" rule was forcing the bright gold
   accent onto the card titles, which only reaches ~2.4:1 on white.
   Force the card titles back to dark ink. */
.mv-section--dark .mv-post__title a,
.mv-section--dark .mv-post__body a:not(.mv-btn) {
  color: var(--mv-ink);
}

.mv-section--dark .mv-post__title a:hover,
.mv-section--dark .mv-post__title a:focus,
.mv-section--dark .mv-post__body a:not(.mv-btn):hover,
.mv-section--dark .mv-post__body a:not(.mv-btn):focus {
  color: var(--mv-terracotta);
}

/* The "Contatti diretti" panel is a dark ink card inside a light section,
   so links inside it keep the default terracotta colour and only reach
   ~3.5:1 on rgb(20,17,15). Use the bright gold accent on that surface. */
.mv-card--dark a:not(.mv-btn) {
  color: var(--mv-gold);
}

.mv-card--dark a:not(.mv-btn):hover,
.mv-card--dark a:not(.mv-btn):focus {
  color: var(--mv-white);
}
