/* MyVortexa — professional studio
   Pine #1B4332 · Sage #52796F · Fog #F7F9F8 · Soft #EEF2F0 · Ink #1C2B26 */

:root {
  --mvx-pine: #1B4332;
  --mvx-pine-deep: #12291F;
  --mvx-sage: #52796F;
  --mvx-sage-light: #84A98C;
  --mvx-fog: #F7F9F8;
  --mvx-soft: #EEF2F0;
  --mvx-ink: #1C2B26;
  --mvx-ink-soft: #3D524A;
  --mvx-muted: #6B7F76;
  --mvx-line: rgba(28, 43, 38, 0.1);
  --mvx-line-strong: rgba(28, 43, 38, 0.16);
  --mvx-white: #ffffff;
  --mvx-font-display: "Outfit", "Noto Sans JP", sans-serif;
  --mvx-font-body: "Noto Sans JP", "Outfit", system-ui, sans-serif;
  --mvx-max: 1120px;
  --mvx-header-h: 76px;
  --mvx-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --mvx-radius: 10px;
  --mvx-radius-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--mvx-font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mvx-ink);
  background: var(--mvx-fog);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button, input, textarea { font: inherit; color: inherit; }
strong { font-weight: 600; }

h1, h2, h3, h4 {
  font-family: var(--mvx-font-display);
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--mvx-ink);
}

.mvx-wrap {
  width: min(var(--mvx-max), calc(100% - 2.75rem));
  margin-inline: auto;
}

.mvx-sr {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mvx-skip {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--mvx-pine);
  color: var(--mvx-white);
  border-radius: 8px;
}
.mvx-skip:focus { top: 1rem; }

/* —— Header —— */
.mvx-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--mvx-header-h);
  transition: background 0.35s var(--mvx-ease), box-shadow 0.35s var(--mvx-ease);
}
.mvx-header.is-scrolled {
  background: rgba(247, 249, 248, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--mvx-line);
}
.mvx-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.mvx-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.mvx-logo__leaf {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--mvx-pine);
  position: relative;
  flex-shrink: 0;
}
.mvx-logo__leaf::after {
  content: "";
  position: absolute;
  inset: 7px 10px 8px;
  border-radius: 50% 50% 45% 55%;
  background: var(--mvx-sage-light);
  transform: rotate(-18deg);
}
.mvx-logo__name {
  display: block;
  font-family: var(--mvx-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mvx-logo__tag {
  display: block;
  font-size: 0.68rem;
  color: var(--mvx-muted);
  line-height: 1.35;
  max-width: 14.5rem;
}
.mvx-nav {
  display: none;
  margin-left: auto;
  gap: 1.5rem;
}
.mvx-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mvx-ink-soft);
  transition: color 0.25s;
}
.mvx-nav__link:hover,
.mvx-nav__link.is-active { color: var(--mvx-pine); }
.mvx-header__cta {
  display: none;
  padding: 0.55rem 1.15rem;
  background: var(--mvx-pine);
  color: var(--mvx-white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.25s, transform 0.25s;
}
.mvx-header__cta:hover {
  background: var(--mvx-sage);
  transform: translateY(-1px);
}
.mvx-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mvx-burger span {
  display: block;
  height: 2px;
  background: var(--mvx-ink);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mvx-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mvx-burger.is-open span:nth-child(2) { opacity: 0; }
.mvx-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.mvx-nav-open .mvx-header { z-index: 350; }
.mvx-nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}
.mvx-nav-mobile.is-open { pointer-events: auto; }
.mvx-nav-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--mvx-white);
  padding: calc(var(--mvx-header-h) + 1.25rem) 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--mvx-ease);
  box-shadow: -12px 0 40px rgba(18, 41, 31, 0.12);
}
.mvx-nav-mobile.is-open .mvx-nav-mobile__panel { transform: translateX(0); }
.mvx-nav-mobile__link {
  font-family: var(--mvx-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-nav-mobile__link.is-active { color: var(--mvx-sage); }
.mvx-nav-mobile__cta {
  margin-top: 1.25rem;
  text-align: center;
  padding: 0.9rem;
  background: var(--mvx-pine);
  color: var(--mvx-white);
  font-weight: 600;
  border-radius: 8px;
}
.mvx-nav-veil {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(18, 41, 31, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.mvx-nav-veil.is-open {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 960px) {
  .mvx-nav { display: flex; }
  .mvx-header__cta { display: inline-block; }
  .mvx-burger { display: none; }
}

/* —— Type utilities —— */
.mvx-brand {
  font-family: var(--mvx-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mvx-sage-light);
  margin-bottom: 0.75rem;
}
.mvx-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mvx-sage);
  margin-bottom: 0.7rem;
}
.mvx-label--spaced { margin-top: 2rem; }
.mvx-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--mvx-ink-soft);
  max-width: 36em;
  margin-bottom: 1.5rem;
}
.mvx-prose {
  color: var(--mvx-ink-soft);
  max-width: 40em;
  margin-bottom: 1.25rem;
}
.mvx-meta { font-size: 0.85rem; color: var(--mvx-muted); }
.mvx-note { font-size: 0.82rem; color: var(--mvx-muted); margin-top: 0.75rem; }
.mvx-subhead {
  font-family: var(--mvx-font-display);
  font-size: 1.2rem;
  margin: 0.4rem 0 1rem;
}
.mvx-num {
  font-family: var(--mvx-font-display);
  font-size: 0.85rem;
  color: var(--mvx-sage);
  letter-spacing: 0.08em;
}
.mvx-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--mvx-pine);
  border-bottom: 1px solid var(--mvx-sage-light);
  transition: color 0.25s, border-color 0.25s;
}
.mvx-link:hover {
  color: var(--mvx-sage);
  border-color: var(--mvx-sage);
}
.mvx-chip {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--mvx-sage);
  color: var(--mvx-white);
  border-radius: 6px;
}
.mvx-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mvx-sage);
  color: var(--mvx-white);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mvx-pullquote {
  font-family: var(--mvx-font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--mvx-pine);
  margin: 1.5rem 0;
  padding-left: 1.15rem;
  border-left: 3px solid var(--mvx-sage-light);
}
.mvx-pullquote--small { font-size: clamp(1.05rem, 2vw, 1.3rem); }
.mvx-pullquote--feature {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  border-left: none;
  padding-left: 0;
  margin: 1.75rem auto 2rem;
  max-width: 14em;
}

.mvx-head { margin-bottom: 2.5rem; max-width: 38em; }
.mvx-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  margin-bottom: 0.65rem;
}
.mvx-head p { color: var(--mvx-muted); }

/* —— Buttons —— */
.mvx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.mvx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.mvx-btn--primary {
  background: var(--mvx-pine);
  color: var(--mvx-white);
}
.mvx-btn--primary:hover {
  background: var(--mvx-sage);
  transform: translateY(-1px);
}
.mvx-btn:active {
  transform: translateY(1px) scale(0.98);
}
.mvx-btn--ghost {
  background: transparent;
  color: var(--mvx-white);
  border-color: rgba(255, 255, 255, 0.45);
}
.mvx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.mvx-btn--lg {
  padding: 0.95rem 1.75rem;
  font-size: 0.95rem;
}

/* —— Hero —— */
.mvx-main { padding-top: 0; }
.mvx-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--mvx-pine-deep);
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
  color: var(--mvx-white);
  isolation: isolate;
}
.mvx-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.mvx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 52%;
  transform: scale(1.06);
  will-change: transform;
  animation: mvx-hero-drift 28s ease-out both;
}
.mvx-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(18, 41, 31, 0.78) 0%,
      rgba(18, 41, 31, 0.5) 34%,
      rgba(18, 41, 31, 0.18) 58%,
      transparent 82%
    ),
    linear-gradient(
      to top,
      rgba(18, 41, 31, 0.72) 0%,
      rgba(18, 41, 31, 0.22) 40%,
      transparent 70%
    ),
    linear-gradient(to bottom, rgba(18, 41, 31, 0.35) 0%, transparent 20%);
  pointer-events: none;
}
.mvx-hero__bloom { display: none; }
.mvx-hero__horizon { display: none; }
.mvx-hero__content {
  position: relative;
  z-index: 2;
  max-width: min(36rem, 100%);
  padding-top: calc(var(--mvx-header-h) + 1.5rem);
}
.mvx-hero__brand {
  font-family: var(--mvx-font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--mvx-white);
  margin-bottom: clamp(0.9rem, 2vw, 1.35rem);
  opacity: 0;
  transform: translateY(1.1rem);
  animation: mvx-hero-rise 0.9s var(--mvx-ease) 0.1s forwards;
}
.mvx-hero__title {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.85rem;
  max-width: 12em;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: mvx-hero-rise 0.9s var(--mvx-ease) 0.25s forwards;
}
.mvx-hero__lead {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28em;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: mvx-hero-rise 0.9s var(--mvx-ease) 0.38s forwards;
}
.mvx-hero__actions {
  margin-top: 1.75rem;
  opacity: 0;
  transform: translateY(1.1rem);
  animation: mvx-hero-rise 0.9s var(--mvx-ease) 0.5s forwards;
}
.mvx-hero .mvx-btn--primary {
  background: var(--mvx-white);
  color: var(--mvx-pine);
  border-color: var(--mvx-white);
}
.mvx-hero .mvx-btn--primary:hover {
  background: var(--mvx-soft);
  color: var(--mvx-pine);
}

@media (max-width: 640px) {
  .mvx-hero {
    min-height: 100svh;
    padding-bottom: 3rem;
  }
  .mvx-hero__media img { object-position: 60% 48%; }
  .mvx-hero__veil {
    background: linear-gradient(
      180deg,
      rgba(18, 41, 31, 0.3) 0%,
      rgba(18, 41, 31, 0.15) 35%,
      rgba(18, 41, 31, 0.55) 65%,
      rgba(18, 41, 31, 0.88) 100%
    );
  }
  .mvx-hero__title { max-width: none; }
  .mvx-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .mvx-hero__actions .mvx-btn { width: 100%; }
}

@keyframes mvx-hero-drift {
  from { transform: scale(1.06); }
  to { transform: scale(1.01); }
}
@keyframes mvx-hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-logo__name,
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-nav__link {
  color: var(--mvx-white);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-logo__tag {
  color: rgba(255, 255, 255, 0.7);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-nav__link:hover,
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-nav__link.is-active {
  color: var(--mvx-sage-light);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-logo__leaf {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-logo__leaf::after {
  background: var(--mvx-sage-light);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-burger span {
  background: var(--mvx-white);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-header__cta {
  background: transparent;
  color: var(--mvx-white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
body[data-page="index"] .mvx-header:not(.is-scrolled) .mvx-header__cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* —— Page hero —— */
.mvx-pagehero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: var(--mvx-header-h);
}
.mvx-pagehero__media { position: absolute; inset: 0; overflow: hidden; }
.mvx-pagehero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-pagehero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 41, 31, 0.8), rgba(18, 41, 31, 0.25));
}
.mvx-pagehero__content {
  position: relative;
  z-index: 2;
  padding: 2.75rem 0 3.25rem;
  color: var(--mvx-white);
  max-width: 700px;
}
.mvx-pagehero h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  color: var(--mvx-white);
  margin-bottom: 0.7rem;
}
.mvx-pagehero .mvx-lead { color: rgba(255, 255, 255, 0.9); }
.mvx-pagehero .mvx-prose {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

/* —— Sections —— */
.mvx-section {
  padding: clamp(4rem, 8vw, 6.25rem) 0;
}
.mvx-section--earth { background: var(--mvx-soft); }
.mvx-section--parchment { background: var(--mvx-soft); }

.mvx-blob-divider {
  height: 28px;
  margin-top: -14px;
  background: var(--mvx-soft);
}
.mvx-blob-divider--top {
  margin-top: 0;
  margin-bottom: -14px;
  background: var(--mvx-fog);
}

/* —— Reveal —— */
.js .mvx-reveal,
.js .mvx-almanac__chapter,
.js .mvx-gallery__item,
.js .mvx-testimonial,
.js .mvx-calendar__row,
.js .mvx-plan,
.js .mvx-path,
.js .mvx-mag__item,
.js .mvx-card,
.js .mvx-team__member {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--mvx-ease), transform 0.7s var(--mvx-ease);
  transition-delay: var(--d, 0ms);
}
.js .mvx-reveal.is-in,
.js .mvx-almanac__chapter.is-in,
.js .mvx-gallery__item.is-in,
.js .mvx-testimonial.is-in,
.js .mvx-calendar__row.is-in,
.js .mvx-plan.is-in,
.js .mvx-path.is-in,
.js .mvx-mag__item.is-in,
.js .mvx-card.is-in,
.js .mvx-team__member.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* —— Story —— */
.mvx-section--story {
  padding: 0;
  background: var(--mvx-white);
}
.mvx-story { display: grid; gap: 0; }
.mvx-story__media {
  position: relative;
  min-height: clamp(280px, 55vw, 420px);
  overflow: hidden;
}
.mvx-story__figure {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}
.mvx-story__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.mvx-story__media-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(18, 41, 31, 0.12), transparent 40%);
}
.mvx-story__panel {
  display: flex;
  align-items: center;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}
.mvx-story__inner {
  width: min(var(--mvx-max), calc(100% - 2.75rem));
  margin-inline: auto;
  max-width: 36rem;
}
.mvx-story__lead { margin-bottom: 1.75rem; }
.mvx-story__chapter {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.mvx-story__year {
  font-family: var(--mvx-font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--mvx-sage);
}
.mvx-story__horizon {
  flex: 1;
  height: 1px;
  background: var(--mvx-line-strong);
  align-self: center;
  max-width: 4rem;
}
.mvx-story__place {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mvx-muted);
}
.mvx-story__lead h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  margin-top: 0.35rem;
}
.mvx-story__quote {
  font-family: var(--mvx-font-display);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--mvx-pine);
  margin: 0 0 1.25rem;
}
.mvx-story__copy .mvx-prose { margin-bottom: 1.5rem; }
.mvx-story__foot {
  display: grid;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mvx-line);
}
.mvx-story__closing {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--mvx-ink-soft);
  margin: 0;
}

@media (min-width: 960px) {
  .mvx-story {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: min(80vh, 740px);
  }
  .mvx-story__media { min-height: 100%; }
  .mvx-story__media-veil {
    background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.35) 100%);
  }
  .mvx-story__inner {
    width: auto;
    max-width: 32rem;
    margin-left: clamp(2rem, 5vw, 4rem);
    margin-right: max(1rem, calc((100vw - var(--mvx-max)) / 2));
  }
}

/* —— Seasons —— */
.mvx-section--seasons { background: var(--mvx-fog); }
.mvx-head--seasons {
  max-width: 32em;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.mvx-almanac {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.mvx-almanac__chapter {
  --season-accent: var(--mvx-sage);
  display: grid;
  gap: 1.25rem;
}
.mvx-almanac__chapter--spring { --season-accent: #6A9B7E; }
.mvx-almanac__chapter--summer { --season-accent: #52796F; }
.mvx-almanac__chapter--autumn { --season-accent: #7A8B62; }
.mvx-almanac__chapter--winter { --season-accent: #5F7A74; }
.mvx-almanac__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--mvx-radius-lg);
  background: var(--mvx-soft);
}
.mvx-almanac__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(18, 41, 31, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.mvx-almanac__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-almanac__kanji {
  position: absolute;
  right: 0.75rem;
  bottom: 0.15rem;
  z-index: 2;
  font-family: var(--mvx-font-display);
  font-size: clamp(3.5rem, 12vw, 5.5rem);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  user-select: none;
}
.mvx-almanac__copy { padding-top: 0.15rem; }
.mvx-almanac__header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 0.55rem;
}
.mvx-almanac__num {
  font-family: var(--mvx-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--season-accent);
}
.mvx-almanac__header h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  margin: 0;
}
.mvx-almanac__desc {
  color: var(--mvx-ink-soft);
  margin-bottom: 1rem;
  max-width: 34em;
}
.mvx-almanac__items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mvx-almanac__items li {
  font-size: 0.84rem;
  color: var(--mvx-ink-soft);
  padding: 0.4rem 0.75rem;
  background: var(--mvx-white);
  border: 1px solid var(--mvx-line);
  border-radius: 999px;
}

@media (min-width: 860px) {
  .mvx-almanac__chapter {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
  }
  .mvx-almanac__media {
    aspect-ratio: auto;
    min-height: 340px;
    max-height: 400px;
  }
  .mvx-almanac__chapter:nth-child(even) {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .mvx-almanac__chapter:nth-child(even) .mvx-almanac__media { order: 2; }
  .mvx-almanac__chapter:nth-child(even) .mvx-almanac__copy {
    order: 1;
    text-align: right;
  }
  .mvx-almanac__chapter:nth-child(even) .mvx-almanac__header { justify-content: flex-end; }
  .mvx-almanac__chapter:nth-child(even) .mvx-almanac__desc { margin-left: auto; }
  .mvx-almanac__chapter:nth-child(even) .mvx-almanac__items { justify-content: flex-end; }
  .mvx-almanac__kanji {
    font-size: clamp(4.5rem, 8vw, 6.5rem);
  }
}

/* —— Services —— */
.mvx-section--services { background: var(--mvx-white); }
.mvx-paths__atmosphere { display: none; }
.mvx-head--services {
  max-width: 32em;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}
.mvx-paths {
  display: grid;
  gap: 1.5rem;
}
.mvx-paths__route { display: none; }
.mvx-path {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-path:last-of-type { border-bottom: none; }
.mvx-path__marker { width: 5.5rem; }
.mvx-path__num {
  display: block;
  font-family: var(--mvx-font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mvx-sage);
  margin-bottom: 0.45rem;
}
.mvx-path__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--mvx-radius);
  background: var(--mvx-soft);
}
.mvx-path__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-path__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}
.mvx-path__lead {
  color: var(--mvx-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.mvx-path__detail {
  color: var(--mvx-muted);
  font-size: 0.86rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mvx-paths__cta {
  margin-top: 2rem;
  text-align: center;
}

@media (min-width: 900px) {
  .mvx-paths {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .mvx-path {
    grid-template-columns: 1fr;
    border-bottom: none;
    padding: 0;
  }
  .mvx-path__marker { width: 100%; }
  .mvx-path__media {
    aspect-ratio: 3 / 4;
    max-height: 230px;
  }
  .mvx-path__detail { display: none; }
}

/* —— Harvest —— */
.mvx-section--harvest {
  position: relative;
  background:
    linear-gradient(180deg, rgba(27, 67, 50, 0.04), transparent 28%),
    linear-gradient(165deg, #e8efea 0%, var(--mvx-soft) 42%, #e3ebe6 100%);
  overflow: hidden;
}
.mvx-section--harvest::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(12.5% - 1px),
      rgba(28, 43, 38, 0.035) calc(12.5% - 1px),
      rgba(28, 43, 38, 0.035) 12.5%
    );
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.mvx-harvest__atmosphere { display: none; }
.mvx-head--harvest {
  position: relative;
  max-width: 34em;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: 1.35rem;
}
.mvx-head--harvest::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(7rem, 40%);
  height: 2px;
  background: var(--mvx-sage);
  transform-origin: left center;
  animation: mvx-harvest-rule 1s var(--mvx-ease) both;
}
.mvx-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem 0.9rem;
}
.mvx-gallery__item {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  min-width: 0;
}
.mvx-gallery__item--lead {
  grid-column: 1 / -1;
}
.mvx-gallery__item--span {
  grid-column: 1 / -1;
}
.mvx-gallery__frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--mvx-pine-deep);
  isolation: isolate;
}
.mvx-gallery__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, transparent 55%, rgba(18, 41, 31, 0.18));
  opacity: 0;
  transition: opacity 0.45s var(--mvx-ease);
}
.mvx-gallery__item:hover .mvx-gallery__frame::after,
.mvx-gallery__item:focus-within .mvx-gallery__frame::after {
  opacity: 1;
}
.mvx-gallery__item--lead .mvx-gallery__frame { aspect-ratio: 5 / 4; }
.mvx-gallery__item--tall .mvx-gallery__frame { aspect-ratio: 4 / 5; }
.mvx-gallery__item--wide .mvx-gallery__frame { aspect-ratio: 5 / 4; }
.mvx-gallery__item--sq .mvx-gallery__frame { aspect-ratio: 1; }
.mvx-gallery__item--span .mvx-gallery__frame { aspect-ratio: 16 / 9; }
.mvx-gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--mvx-ease), filter 0.45s var(--mvx-ease);
}
.mvx-gallery__item.is-in .mvx-gallery__frame img {
  transform: scale(1.03);
}
@media (hover: hover) and (pointer: fine) {
  .mvx-gallery__item:hover .mvx-gallery__frame img,
  .mvx-gallery__item:focus-within .mvx-gallery__frame img {
    transform: scale(1.045);
    filter: saturate(1.05);
  }
}
.mvx-gallery__cap {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding-inline: 0.1rem;
}
.mvx-gallery__num {
  position: static;
  flex-shrink: 0;
  font-family: var(--mvx-font-display);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--mvx-sage);
  line-height: 1.4;
  transition: color 0.3s var(--mvx-ease), transform 0.35s var(--mvx-ease);
}
.mvx-gallery__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mvx-ink-soft);
  line-height: 1.45;
  transition: color 0.3s var(--mvx-ease);
}
.mvx-gallery__item:hover .mvx-gallery__num,
.mvx-gallery__item:focus-within .mvx-gallery__num {
  color: var(--mvx-pine);
  transform: translateX(2px);
}
.mvx-gallery__item:hover .mvx-gallery__label,
.mvx-gallery__item:focus-within .mvx-gallery__label {
  color: var(--mvx-ink);
}
.mvx-gallery__item--span .mvx-gallery__cap {
  justify-content: flex-start;
}

@media (min-width: 720px) {
  .mvx-gallery__item--lead .mvx-gallery__frame { aspect-ratio: 16 / 10; }
}

@media (min-width: 900px) {
  .mvx-gallery {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    gap: 1.5rem 1.2rem;
  }
  .mvx-gallery__item--lead {
    grid-column: 1 / 8;
    grid-row: 1 / 3;
    height: 100%;
  }
  .mvx-gallery__item--tall {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
  }
  .mvx-gallery__item--wide {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
  }
  .mvx-gallery__item--sq:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
  }
  .mvx-gallery__item--sq:nth-child(5) {
    grid-column: 5 / 9;
    grid-row: 3 / 4;
  }
  .mvx-gallery__item--span {
    grid-column: 9 / 13;
    grid-row: 3 / 4;
    height: 100%;
    max-width: none;
    margin-inline: 0;
  }
  .mvx-gallery__item--lead .mvx-gallery__frame,
  .mvx-gallery__item--span .mvx-gallery__frame {
    aspect-ratio: auto;
    flex: 1;
    min-height: 0;
  }
  .mvx-gallery__item--lead .mvx-gallery__frame { min-height: 28rem; }
  .mvx-gallery__item--tall .mvx-gallery__frame { aspect-ratio: 5 / 4; }
  .mvx-gallery__item--wide .mvx-gallery__frame { aspect-ratio: 5 / 4; }
  .mvx-gallery__item--sq .mvx-gallery__frame { aspect-ratio: 1; }
  .mvx-gallery__item--lead .mvx-gallery__label,
  .mvx-gallery__item--span .mvx-gallery__label {
    font-size: 0.98rem;
  }
}

@keyframes mvx-harvest-rule {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

/* —— Plans —— */
.mvx-plans {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .mvx-plans { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}
.mvx-plan {
  padding: 1.75rem 1.5rem;
  background: var(--mvx-white);
  border: 1px solid var(--mvx-line);
  border-radius: var(--mvx-radius-lg);
  transition: border-color 0.25s, transform 0.25s;
}
.mvx-plan:hover {
  border-color: var(--mvx-sage-light);
  transform: translateY(-2px);
}
.mvx-plan--featured {
  background: var(--mvx-pine);
  border-color: var(--mvx-pine);
  color: var(--mvx-white);
}
.mvx-plan--featured:hover {
  background: var(--mvx-pine-deep);
  border-color: var(--mvx-pine-deep);
}
.mvx-plan--featured h3,
.mvx-plan--featured p { color: var(--mvx-white); }
.mvx-plan--featured .mvx-chip {
  background: var(--mvx-sage-light);
  color: var(--mvx-pine-deep);
}
.mvx-plan h3 {
  font-size: 1.25rem;
  margin: 0.55rem 0 0.45rem;
}
.mvx-plan > p { color: var(--mvx-ink-soft); font-size: 0.92rem; }
.mvx-plan--featured > p { color: rgba(255, 255, 255, 0.78); }
.mvx-plan__price {
  font-family: var(--mvx-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--mvx-pine);
}
.mvx-plan--featured .mvx-plan__price { color: var(--mvx-sage-light); }
.mvx-plan ul { margin-top: 0.85rem; }
.mvx-plan li {
  position: relative;
  font-size: 0.88rem;
  padding: 0.35rem 0 0.35rem 1rem;
  color: var(--mvx-ink-soft);
}
.mvx-plan--featured li { color: rgba(255, 255, 255, 0.8); }
.mvx-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mvx-sage-light);
}
.mvx-plan--featured li::before { background: var(--mvx-sage-light); }

/* —— Calendar —— */
.mvx-calendar {
  margin-top: 1.25rem;
  border-top: 1px solid var(--mvx-line-strong);
}
.mvx-calendar__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--mvx-line);
}
@media (max-width: 600px) {
  .mvx-calendar__row { grid-template-columns: auto 1fr; }
  .mvx-calendar__spots { grid-column: 2; }
}
.mvx-calendar__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  padding: 0.5rem;
  background: var(--mvx-pine);
  color: var(--mvx-white);
  border-radius: 8px;
  text-align: center;
}
.mvx-calendar__month {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mvx-calendar__day {
  font-family: var(--mvx-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.mvx-calendar__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.mvx-calendar__body p {
  font-size: 0.88rem;
  color: var(--mvx-muted);
}
.mvx-calendar__spots {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mvx-sage);
  white-space: nowrap;
}

/* —— Testimonials —— */
.mvx-testimonials {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 860px) {
  .mvx-testimonials { grid-template-columns: repeat(3, 1fr); }
}
.mvx-testimonial {
  padding: 1.5rem;
  background: var(--mvx-white);
  border: 1px solid var(--mvx-line);
  border-radius: var(--mvx-radius-lg);
}
.mvx-testimonial p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.15rem;
  color: var(--mvx-ink-soft);
}
.mvx-testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
}
.mvx-testimonial span {
  font-size: 0.8rem;
  color: var(--mvx-muted);
}

/* —— Values —— */
.mvx-values { margin-top: 1.35rem; }
.mvx-values li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-values strong {
  display: block;
  font-family: var(--mvx-font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.mvx-values span {
  font-size: 0.9rem;
  color: var(--mvx-muted);
}

/* —— Duo —— */
.mvx-duo {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .mvx-duo {
    grid-template-columns: 1fr 1fr;
    gap: 3.25rem;
  }
  .mvx-duo--flip .mvx-duo__media { order: 2; }
}
.mvx-duo__media {
  overflow: hidden;
  border-radius: var(--mvx-radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--mvx-soft);
}
.mvx-duo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-inline-media {
  margin-top: 2rem;
  max-width: 760px;
  overflow: hidden;
  border-radius: var(--mvx-radius-lg);
}

/* —— CTA —— */
.mvx-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.mvx-cta__media { position: absolute; inset: 0; }
.mvx-cta__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18, 41, 31, 0.88) 0%, rgba(18, 41, 31, 0.55) 60%, rgba(18, 41, 31, 0.35) 100%);
}
.mvx-cta__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  color: var(--mvx-white);
  max-width: 540px;
}
.mvx-cta h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  color: var(--mvx-white);
  margin-bottom: 0.7rem;
}
.mvx-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.4rem;
}
.mvx-cta .mvx-btn--primary {
  background: var(--mvx-white);
  color: var(--mvx-pine);
}
.mvx-cta .mvx-btn--primary:hover {
  background: var(--mvx-soft);
}

/* —— Shared page components —— */
.mvx-card {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-card--link { display: block; transition: color 0.25s; }
.mvx-card--link:hover { color: var(--mvx-sage); }
.mvx-trio {
  display: grid;
  gap: 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--mvx-line);
}
@media (min-width: 720px) {
  .mvx-trio { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .mvx-trio .mvx-card {
    border-bottom: none;
    padding-top: 1.5rem;
  }
}

.mvx-points { margin-top: 1.25rem; }
.mvx-points li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-points strong { display: block; margin-bottom: 0.15rem; }
.mvx-points span { font-size: 0.88rem; color: var(--mvx-muted); }

.mvx-team {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .mvx-team { grid-template-columns: repeat(3, 1fr); }
}
.mvx-team__photo {
  overflow: hidden;
  aspect-ratio: 1;
  margin-bottom: 1rem;
  max-width: 220px;
  border-radius: var(--mvx-radius-lg);
  background: var(--mvx-soft);
}
.mvx-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvx-mosaic {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 860px) {
  .mvx-mosaic { grid-template-columns: 1.2fr 1fr; }
}
.mvx-mosaic__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--mvx-radius-lg);
  background: var(--mvx-soft);
}
.mvx-mosaic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-mosaic__grid { display: grid; gap: 0; }

.mvx-ribbon {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}
.mvx-ribbon__item {
  flex: 0 0 min(250px, 75vw);
  scroll-snap-align: start;
  padding-right: 1.25rem;
  border-right: 1px solid var(--mvx-line);
}
.mvx-ribbon__year {
  font-family: var(--mvx-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--mvx-sage);
  display: block;
  margin-bottom: 0.45rem;
}

.mvx-values-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .mvx-values-grid { grid-template-columns: repeat(3, 1fr); }
}
.mvx-values-grid__num {
  font-family: var(--mvx-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mvx-sage);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.45rem;
}

.mvx-dual {
  display: grid;
  gap: 2.75rem;
}
@media (min-width: 860px) {
  .mvx-dual { grid-template-columns: 1fr 1fr; }
}

.mvx-feature {
  display: grid;
  overflow: hidden;
  background: var(--mvx-white);
  border: 1px solid var(--mvx-line);
  border-radius: var(--mvx-radius-lg);
}
@media (min-width: 860px) {
  .mvx-feature { grid-template-columns: 1.1fr 0.9fr; }
}
.mvx-feature__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mvx-soft);
}
.mvx-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-feature__body { padding: 1.75rem; }
.mvx-feature__body h3 {
  font-size: 1.4rem;
  margin: 0.65rem 0;
}
.mvx-feature time {
  font-size: 0.82rem;
  color: var(--mvx-muted);
}

.mvx-mag {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .mvx-mag { grid-template-columns: repeat(2, 1fr); }
}
.mvx-mag__item {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-mag__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  border-radius: var(--mvx-radius);
  background: var(--mvx-soft);
}
.mvx-mag__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvx-mag__media .mvx-chip {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}
.mvx-mag__item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.mvx-mag__item p {
  font-size: 0.9rem;
  color: var(--mvx-muted);
  margin-bottom: 0.45rem;
}
.mvx-mag time {
  font-size: 0.78rem;
  color: var(--mvx-muted);
}

.mvx-glossary {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 720px) {
  .mvx-glossary { grid-template-columns: repeat(2, 1fr); }
}
.mvx-glossary__term {
  font-family: var(--mvx-font-display);
  font-weight: 700;
  color: var(--mvx-pine);
  display: block;
  margin-bottom: 0.3rem;
}

.mvx-ticker { margin-top: 1.15rem; }
.mvx-ticker li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--mvx-line);
  font-size: 0.9rem;
}
.mvx-ticker time {
  color: var(--mvx-muted);
  font-size: 0.82rem;
}

.mvx-newsletter {
  padding: 2.25rem;
  background: var(--mvx-white);
  border: 1px solid var(--mvx-line);
  border-radius: var(--mvx-radius-lg);
}
.mvx-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.15rem;
}
.mvx-newsletter__form input {
  flex: 1;
  min-width: 200px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--mvx-line-strong);
  border-radius: 8px;
  background: var(--mvx-fog);
}

.mvx-matrix {
  overflow-x: auto;
  margin-top: 1.35rem;
  border: 1px solid var(--mvx-line);
  border-radius: var(--mvx-radius);
  background: var(--mvx-white);
}
.mvx-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.mvx-table th,
.mvx-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--mvx-line);
}
.mvx-table th {
  font-family: var(--mvx-font-display);
  font-weight: 700;
  color: var(--mvx-pine);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--mvx-soft);
}

.mvx-accordion { margin-top: 1rem; }
.mvx-accordion__item {
  border-bottom: 1px solid var(--mvx-line);
  padding: 0.4rem 0;
}
.mvx-accordion__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.7rem 0;
  list-style: none;
}
.mvx-accordion__item summary::-webkit-details-marker { display: none; }
.mvx-accordion__item p {
  padding: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--mvx-muted);
}

.mvx-form { margin-top: 1.35rem; }
.mvx-field { margin-bottom: 1.05rem; }
.mvx-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.mvx-field input,
.mvx-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--mvx-line-strong);
  border-radius: 8px;
  background: var(--mvx-white);
  transition: border-color 0.25s;
}
.mvx-field input:focus,
.mvx-field textarea:focus {
  outline: none;
  border-color: var(--mvx-sage);
}
.mvx-error {
  display: block;
  font-size: 0.82rem;
  color: #9a3b2e;
  margin-top: 0.25rem;
}
.mvx-success {
  padding: 1rem;
  background: rgba(132, 169, 140, 0.18);
  border-left: 3px solid var(--mvx-sage);
  margin-bottom: 1rem;
  font-weight: 500;
}

.mvx-address {
  margin-top: 1.15rem;
  padding: 1.15rem;
  background: var(--mvx-soft);
  border-radius: var(--mvx-radius);
  font-size: 0.9rem;
}
.mvx-address p { margin-bottom: 0.45rem; }
.mvx-address a {
  color: var(--mvx-pine);
  text-decoration: underline;
}

.mvx-mapblock {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.35rem;
}
@media (min-width: 860px) {
  .mvx-mapblock { grid-template-columns: 1.2fr 0.8fr; }
}
.mvx-map {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--mvx-line);
  border-radius: var(--mvx-radius-lg);
}
.mvx-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.mvx-hours-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mvx-hours-badge__inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--mvx-pine);
  color: var(--mvx-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--mvx-font-display);
}
.mvx-hours-badge__inner strong {
  font-size: 1.6rem;
  line-height: 1.1;
}
.mvx-hours-badge__inner span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.mvx-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
}
.mvx-social a {
  font-weight: 600;
  color: var(--mvx-pine);
  border-bottom: 1px solid var(--mvx-sage-light);
}
.mvx-social a:hover { color: var(--mvx-sage); }
.mvx-social--lg a { font-size: 1.05rem; }

/* —— Footer —— */
.mvx-footer {
  background: var(--mvx-pine-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: 4rem 0 2rem;
}
.mvx-footer__blob { display: none; }
.mvx-footer__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .mvx-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.mvx-footer__name {
  font-family: var(--mvx-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mvx-white);
  display: block;
  margin-bottom: 0.35rem;
}
.mvx-footer__tagline {
  font-size: 0.82rem;
  color: var(--mvx-sage-light);
  margin-bottom: 0.7rem;
}
.mvx-footer h3 {
  font-family: var(--mvx-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mvx-sage-light);
  margin-bottom: 0.9rem;
}
.mvx-footer ul li { margin-bottom: 0.4rem; }
.mvx-footer a { transition: color 0.25s; }
.mvx-footer a:hover { color: var(--mvx-white); }
.mvx-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.mvx-top {
  padding: 0.45rem 0.85rem;
  background: var(--mvx-sage);
  color: var(--mvx-white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
}

/* —— Reduced motion —— */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .mvx-reveal,
  .js .mvx-almanac__chapter,
  .js .mvx-gallery__item,
  .js .mvx-testimonial,
  .js .mvx-calendar__row,
  .js .mvx-plan,
  .js .mvx-path,
  .js .mvx-mag__item,
  .js .mvx-card,
  .js .mvx-team__member {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mvx-parallax img { transform: none !important; }
  .mvx-hero__media img {
    animation: none;
    transform: scale(1.02);
  }
  .mvx-hero__brand,
  .mvx-hero__title,
  .mvx-hero__lead,
  .mvx-hero__actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .mvx-gallery__item:hover .mvx-gallery__frame img,
  .mvx-gallery__item:focus-within .mvx-gallery__frame img {
    transform: none;
    filter: none;
  }
  .mvx-gallery__item:hover .mvx-gallery__num,
  .mvx-gallery__item:focus-within .mvx-gallery__num {
    transform: none;
  }
  .mvx-head--harvest::after {
    animation: none;
  }
}
