:root {
  --mot-bg: #fafaf7;
  --mot-surface: #ffffff;
  --mot-forest: #16382c;
  --mot-forest-soft: #234c3e;
  --mot-energy: #e65c36;
  --mot-energy-hover: #cb4824;
  --mot-mint: #ebf3ef;
  --mot-clay: #f3eae5;
  --mot-border: #e2e6e3;
  --mot-text: #2c3330;
  --mot-text-muted: #6a736f;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --mot-radius: 12px;
  --mot-shadow: 0 10px 30px rgba(22, 56, 44, 0.06);
  --mot-shadow-inset: inset 0 2px 4px rgba(22, 56, 44, 0.03);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--mot-bg);
  color: var(--mot-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll-driven Progress Bar */
.mot-scroll-progress-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background-color: var(--mot-energy);
  z-index: 10000;
  animation: mot-progress-growth linear;
  animation-timeline: scroll();
}

@keyframes mot-progress-growth {
  to { width: 100%; }
}

/* Header & Navigation */
.mot-header-nav-container {
  background-color: var(--mot-surface);
  border-bottom: 1px solid var(--mot-border);
  position: sticky;
  top: 0;
  z-index: 999;
}

.mot-header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.mot-brand-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--mot-forest);
}

.mot-brand-group svg {
  width: 32px;
  height: 32px;
  fill: var(--mot-energy);
}

.mot-brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.mot-nav-burger-input {
  display: none;
}

.mot-nav-burger-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mot-nav-burger-trigger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--mot-forest);
  border-radius: 2px;
  transition: 0.3s ease;
}

.mot-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.mot-nav-link-anchor {
  text-decoration: none;
  color: var(--mot-text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}

.mot-nav-link-anchor:hover {
  color: var(--mot-energy);
}

.mot-nav-btn {
  background-color: var(--mot-forest);
  color: var(--mot-surface) !important;
  padding: 0.6rem 1.25rem;
  border-radius: var(--mot-radius);
  transition: background-color 0.2s;
}

.mot-nav-btn:hover {
  background-color: var(--mot-forest-soft);
}

/* Announcement Bar */
.mot-announce-strip {
  background-color: var(--mot-energy);
  color: var(--mot-surface);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.mot-announce-strip a {
  color: var(--mot-surface);
  text-decoration: underline;
  margin-left: 0.5rem;
}

/* Scroll Animation Reveal CSS */
.mot-reveal-element {
  animation: mot-reveal-slide linear both;
  animation-timeline: view();
  animation-range: entry 5% entry 30%;
}

@keyframes mot-reveal-slide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Split Hero Section */
.mot-hero-split-frame {
  display: flex;
  min-height: calc(85vh - 70px);
  background-color: var(--mot-mint);
  overflow: hidden;
}

.mot-hero-left-column {
  flex: 1.2;
  padding: 10dvh 4rem 10dvh 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mot-hero-right-column {
  flex: 0.8;
  position: relative;
  min-height: 400px;
}

.mot-hero-right-column img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mot-hero-tagline {
  color: var(--mot-energy);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.mot-hero-heading {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.15;
  color: var(--mot-forest);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.mot-hero-subtext {
  font-size: 1.15rem;
  color: var(--mot-text-muted);
  margin-bottom: 2rem;
  max-width: 580px;
}

.mot-primary-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--mot-energy);
  color: var(--mot-surface);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--mot-radius);
  box-shadow: var(--mot-shadow);
  transition: background-color 0.2s, transform 0.2s;
}

.mot-primary-action-btn:hover {
  background-color: var(--mot-energy-hover);
  transform: translateY(-2px);
}

/* Journal Split Block */
.mot-layout-block-spacer {
  padding: 10dvh 1.5rem;
}

.mot-inner-content-limiter {
  max-width: 1200px;
  margin: 0 auto;
}

.mot-gallery-strip-wrapper {
  width: 100%;
  height: 45vh;
  min-height: 300px;
  border-radius: var(--mot-radius);
  overflow: hidden;
  margin-bottom: 3rem;
}

.mot-gallery-strip-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mot-journal-columns-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.mot-journal-col-item {
  border-top: 3px solid var(--mot-energy);
  padding-top: 1.5rem;
}

.mot-journal-col-heading {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--mot-forest);
  margin-bottom: 1rem;
  font-weight: 700;
}

.mot-journal-col-desc {
  color: var(--mot-text-muted);
  font-size: 0.95rem;
}

/* Masonry Features Section */
.mot-masonry-section-bg {
  background-color: var(--mot-mint);
  padding: 10dvh 1.5rem;
}

.mot-section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.mot-section-pretitle {
  color: var(--mot-energy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mot-section-title-large {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--mot-forest);
  font-weight: 800;
}

.mot-masonry-flow-panel {
  columns: 2;
  column-gap: 1.5rem;
}

.mot-masonry-card {
  break-inside: avoid;
  background-color: var(--mot-surface);
  border-radius: var(--mot-radius);
  padding: 2.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--mot-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
  width: 100%;
}

.mot-masonry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(22, 56, 44, 0.1);
}

.mot-masonry-icon-shell {
  width: 50px;
  height: 50px;
  background-color: var(--mot-mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mot-masonry-icon-shell svg {
  width: 24px;
  height: 24px;
  fill: var(--mot-energy);
}

.mot-masonry-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--mot-forest);
  margin-bottom: 1rem;
  font-weight: 700;
}

.mot-masonry-card-text {
  color: var(--mot-text-muted);
  font-size: 0.95rem;
}

/* Horizontal Track Section (Progress Mode) */
.mot-track-section-space {
  padding: 10dvh 1.5rem;
}

.mot-track-horizontal-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}

.mot-track-horizontal-flex::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  width: 90%;
  height: 2px;
  border-top: 2px dashed var(--mot-border);
  z-index: 1;
}

.mot-track-node-cell {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.mot-track-node-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--mot-surface);
  border: 3px solid var(--mot-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--mot-forest);
  transition: all 0.3s ease;
}

.mot-track-node-cell.mot-active-step-highlight .mot-track-node-circle {
  border-color: var(--mot-energy);
  background-color: var(--mot-energy);
  color: var(--mot-surface);
  box-shadow: 0 0 20px rgba(230, 92, 54, 0.4);
}

.mot-track-node-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--mot-forest);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mot-track-node-body {
  font-size: 0.9rem;
  color: var(--mot-text-muted);
}

/* CTA Color Block */
.mot-colored-cta-strip {
  background-color: var(--mot-forest);
  color: var(--mot-surface);
  padding: 8dvh 1.5rem;
  border-radius: var(--mot-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mot-colored-cta-strip-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mot-cta-title-massive {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mot-cta-subtext {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.mot-cta-outline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--mot-energy);
  color: var(--mot-surface);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: var(--mot-radius);
  transition: background-color 0.2s, transform 0.2s;
}

.mot-cta-outline-button:hover {
  background-color: var(--mot-energy-hover);
  transform: translateY(-2px);
}

/* BIO split (expert.html) */
.mot-bio-split-frame {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.mot-bio-img-side {
  flex: 1;
  border-radius: var(--mot-radius);
  overflow: hidden;
  height: 500px;
}

.mot-bio-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mot-bio-text-side {
  flex: 1.2;
}

.mot-bio-expert-title {
  color: var(--mot-energy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.mot-bio-expert-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--mot-forest);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mot-bio-paragraph {
  color: var(--mot-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* Stat Blocks Row */
.mot-stat-quartet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.mot-stat-node-card {
  background-color: var(--mot-surface);
  border-radius: var(--mot-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--mot-shadow);
  border: 1px solid var(--mot-border);
}

.mot-stat-node-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--mot-energy);
  margin-bottom: 0.5rem;
}

.mot-stat-node-caption {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--mot-forest);
  font-weight: 700;
  text-transform: uppercase;
}

/* Accordion CSS Only (expert.html) */
.mot-accordion-stack {
  margin-bottom: 5rem;
}

.mot-accordion-leaf {
  background-color: var(--mot-surface);
  border: 1px solid var(--mot-border);
  border-radius: var(--mot-radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

.mot-accordion-checkbox {
  display: none;
}

.mot-accordion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--mot-forest);
  font-size: 1.15rem;
  background-color: var(--mot-surface);
  user-select: none;
}

.mot-accordion-label::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--mot-energy);
  transition: transform 0.3s;
}

.mot-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 2rem;
  color: var(--mot-text-muted);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.mot-accordion-checkbox:checked ~ .mot-accordion-content {
  max-height: 250px;
  padding: 1.5rem 2rem;
  border-top-color: var(--mot-border);
}

.mot-accordion-checkbox:checked ~ .mot-accordion-label::after {
  transform: rotate(45deg);
}

/* 2 Column Form on reserve.html */
.mot-reserve-split-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: flex-start;
}

.mot-reserve-meta-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mot-reserve-meta-card {
  background-color: var(--mot-surface);
  border-radius: var(--mot-radius);
  padding: 2rem;
  box-shadow: var(--mot-shadow);
  border: 1px solid var(--mot-border);
}

.mot-reserve-meta-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.mot-reserve-meta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--mot-mint);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mot-reserve-meta-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--mot-energy);
}

.mot-reserve-meta-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--mot-forest);
  font-weight: 700;
}

.mot-reserve-meta-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mot-reserve-meta-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--mot-text-muted);
}

.mot-reserve-meta-dot {
  width: 8px;
  height: 8px;
  background-color: var(--mot-energy);
  border-radius: 50%;
  flex-shrink: 0;
}

.mot-reserve-form-shell {
  background-color: var(--mot-surface);
  border-radius: var(--mot-radius);
  padding: 3rem;
  box-shadow: var(--mot-shadow);
  border: 1px solid var(--mot-border);
}

.mot-reserve-form-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--mot-forest);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.mot-form-group {
  margin-bottom: 1.25rem;
}

.mot-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mot-forest);
  margin-bottom: 0.5rem;
}

.mot-form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--mot-radius);
  border: 1px solid var(--mot-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mot-text);
  background-color: var(--mot-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mot-form-control:focus {
  outline: none;
  border-color: var(--mot-energy);
  box-shadow: 0 0 0 3px rgba(230, 92, 54, 0.1);
}

.mot-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--mot-text-muted);
  user-select: none;
}

.mot-checkbox-wrapper input {
  margin-top: 0.2rem;
}

.mot-checkbox-wrapper a {
  color: var(--mot-energy);
  text-decoration: underline;
}

.mot-submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--mot-energy);
  color: var(--mot-surface);
  border: none;
  border-radius: var(--mot-radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.mot-submit-btn:hover {
  background-color: var(--mot-energy-hover);
  transform: translateY(-2px);
}

/* FAQ Accordeon bottom of reserve.html */
.mot-faq-tray-wrapper {
  margin-top: 6rem;
}

.mot-faq-main-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--mot-forest);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 800;
}

/* Static legal / thank screens */
.mot-static-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 8vh 1.5rem;
}

.mot-static-heading {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--mot-forest);
  margin-bottom: 2rem;
  font-weight: 800;
}

.mot-static-sub-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--mot-forest);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.mot-static-body-text {
  color: var(--mot-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}

/* Cookie Banner styled dynamically */
.mot-cookie-shield-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--mot-forest);
  color: var(--mot-surface);
  padding: 1.5rem;
  z-index: 99999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
  animation: mot-fade-in-slide 0.5s ease-out;
}

@keyframes mot-fade-in-slide {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.mot-cookie-text-cell {
  max-width: 800px;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

.mot-cookie-btn-group {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.mot-cookie-action-btn-primary {
  background-color: var(--mot-energy);
  color: var(--mot-surface);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--mot-radius);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background-color 0.2s;
}

.mot-cookie-action-btn-primary:hover {
  background-color: var(--mot-energy-hover);
}

.mot-cookie-action-btn-secondary {
  background-color: transparent;
  color: var(--mot-surface);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--mot-radius);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background-color 0.2s, border-color 0.2s;
}

.mot-cookie-action-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Footer style spec */
.mot-footer-space {
  background-color: var(--mot-forest);
  color: var(--mot-surface);
  padding: 5rem 1.5rem 3rem 1.5rem;
  border-top: 1px solid var(--mot-border);
}

.mot-footer-limiter {
  max-width: 1200px;
  margin: 0 auto;
}

.mot-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

.mot-footer-brand-side svg {
  width: 40px;
  height: 40px;
  fill: var(--mot-energy);
  margin-bottom: 1rem;
}

.mot-footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.mot-footer-brand-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.mot-footer-links-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: right;
}

.mot-footer-link-anchor {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.mot-footer-link-anchor:hover {
  color: var(--mot-energy);
}

.mot-footer-disclaimer-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.mot-footer-disclaimer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.mot-footer-copyright-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Responsive queries */
@media (max-width: 1024px) {
  .mot-hero-left-column {
    padding: 6dvh 2rem 6dvh 3rem;
  }
}

@media (max-width: 768px) {
  .mot-nav-burger-trigger {
    display: flex;
  }

  .mot-nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--mot-surface);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .mot-nav-burger-input:checked ~ .mot-nav-links {
    transform: translateX(0);
  }

  .mot-nav-burger-input:checked ~ .mot-nav-burger-trigger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mot-nav-burger-input:checked ~ .mot-nav-burger-trigger span:nth-child(2) {
    opacity: 0;
  }

  .mot-nav-burger-input:checked ~ .mot-nav-burger-trigger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mot-hero-split-frame {
    flex-direction: column;
  }

  .mot-hero-left-column {
    padding: 4rem 1.5rem;
    order: 2;
  }

  .mot-hero-right-column {
    order: 1;
    min-height: 300px;
  }

  .mot-hero-heading {
    font-size: 2.25rem;
  }

  .mot-journal-columns-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mot-masonry-flow-panel {
    columns: 1;
  }

  .mot-track-horizontal-flex {
    flex-direction: column;
    gap: 3rem;
  }

  .mot-track-horizontal-flex::before {
    display: none;
  }

  .mot-bio-split-frame {
    flex-direction: column;
  }

  .mot-bio-img-side {
    height: 300px;
    width: 100%;
  }

  .mot-stat-quartet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mot-reserve-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mot-footer-top-row {
    flex-direction: column;
    gap: 2.5rem;
  }

  .mot-footer-links-side {
    text-align: left;
  }

  .mot-cookie-shield-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    text-align: center;
  }

  .mot-cookie-btn-group {
    justify-content: center;
  }
}