:root {
  /* THEME: MAGAZINE EDITORIAL LIGHT */
  --joint-editorial-cream: #FCFAF6;
  --joint-editorial-emerald: #1B3B32;
  --joint-editorial-sage: #8F9E8B;
  --joint-editorial-ochre: #C59B27;
  --joint-editorial-charcoal: #2B2B2B;
  --joint-editorial-paper: #FFFFFF;
  --joint-editorial-border: #E5E0D8;
  --joint-editorial-muted: #7F7A72;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* CONFIGURATION DECORATIONS */
  --joint-border-radius: 16px; /* soft style */
  --joint-shadow: 0 10px 30px rgba(43,43,43,0.08); /* raised shadow */
}

/* GENERAL STYLING RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.mag-editorial-body {
  font-family: var(--font-body);
  background-color: var(--joint-editorial-cream);
  color: var(--joint-editorial-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 16px;
}

h1, h2, h3, h4, .mag-serif-heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--joint-editorial-emerald);
  line-height: 1.25;
}

.text-white {
  color: var(--joint-editorial-paper) !important;
}

.text-center {
  text-align: center;
}

/* HEADER STYLE (Preset E: Magazine Editorial Style) */
.mag-header-outer {
  background-color: var(--joint-editorial-paper);
  border-bottom: 1px solid var(--joint-editorial-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.mag-logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--joint-editorial-emerald);
  text-decoration: none;
}

.mag-logo-svg {
  color: var(--joint-editorial-emerald);
  flex-shrink: 0;
}

.mag-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.mag-nav-item {
  text-decoration: none;
  color: var(--joint-editorial-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mag-nav-item:hover, .mag-nav-item.active {
  color: var(--joint-editorial-emerald);
}

.mag-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--joint-editorial-emerald);
}

/* RESPONSIVE HAMBURGER NAVIGATION SYSTEM */
.mag-burger-checkbox {
  display: none;
}

.mag-burger-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.mag-burger-trigger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--joint-editorial-emerald);
  transition: all 0.3s ease;
}

/* HERO SECTION SPLIT (Preset E) */
.mag-hero-split-canvas {
  display: flex;
  height: 85vh;
  min-height: 600px;
  background-color: var(--joint-editorial-emerald);
  overflow: hidden;
}

.mag-hero-vertical-panel {
  width: 80px;
  background-color: var(--joint-editorial-ochre);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.mag-hero-vertical-badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--joint-editorial-paper);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.mag-hero-visual-frame {
  flex-grow: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem;
}

.mag-hero-curtain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(27,59,50,0.92) 30%, rgba(27,59,50,0.4) 100%);
  z-index: 1;
}

.mag-hero-center-announce {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.mag-hero-serif-title {
  font-size: 3.5rem;
  color: var(--joint-editorial-paper);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.mag-hero-editorial-sub {
  color: rgba(252,250,246,0.85);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  max-width: 550px;
}

/* MAGAZINE BUTTON STYLING */
.mag-editorial-button-standard {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  background-color: var(--joint-editorial-ochre);
  color: var(--joint-editorial-paper);
  padding: 1.1rem 2.2rem;
  border: none;
  border-radius: var(--joint-border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--joint-shadow);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.mag-editorial-button-standard:hover {
  background-color: var(--joint-editorial-emerald);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(27,59,50,0.15);
}

/* PULL-QUOTE SYSTEM (Preset E - Spacious 16dvh padding) */
.mag-quote-billboard {
  padding: 16dvh 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.mag-quote-icon-decor {
  font-family: var(--font-display);
  font-size: 9rem;
  line-height: 1;
  color: var(--joint-editorial-sage);
  opacity: 0.25;
  display: block;
  height: 60px;
  margin-bottom: -1rem;
}

.mag-quote-main-speech {
  font-family: var(--font-display);
  font-size: 2.22rem;
  font-style: italic;
  color: var(--joint-editorial-emerald);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.mag-quote-author-ref {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--joint-editorial-muted);
}

/* ZIGZAG STYLING NARRATIVE (Preset E: 45% left image, 55% right text) */
.mag-zigzag-narrative {
  display: flex;
  background-color: var(--joint-editorial-paper);
  border-top: 1px solid var(--joint-editorial-border);
  border-bottom: 1px solid var(--joint-editorial-border);
}

.mag-zigzag-visual {
  width: 45%;
  background-size: cover;
  background-position: center;
  min-height: 550px;
}

.mag-zigzag-text-wrapper {
  width: 55%;
  padding: 10dvh 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mag-serif-heading {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mag-editorial-paragraph {
  color: var(--joint-editorial-charcoal);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.mag-text-arrow-link {
  text-decoration: none;
  font-weight: 600;
  color: var(--joint-editorial-emerald);
  border-bottom: 2px solid var(--joint-editorial-ochre);
  padding-bottom: 4px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.mag-text-arrow-link:hover {
  color: var(--joint-editorial-ochre);
  padding-left: 6px;
}

/* EDITORIAL MAGAZINE GRID (Preset E: Features section) */
.mag-editorial-dashboard {
  padding: 16dvh 2rem;
}

.mag-dashboard-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mag-dashboard-header {
  margin-bottom: 5rem;
  max-width: 600px;
}

.mag-dashboard-subhead {
  color: var(--joint-editorial-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.mag-dashboard-grid-box {
  display: flex;
  gap: 3.5rem;
}

.mag-dashboard-lead {
  width: 50%;
  border-radius: var(--joint-border-radius);
  background-size: cover;
  background-position: center;
  padding: 4rem 3.5rem;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--joint-shadow);
  min-height: 480px;
}

.mag-lead-content {
  position: relative;
  z-index: 2;
  color: var(--joint-editorial-paper);
}

.mag-lead-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background-color: var(--joint-editorial-ochre);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.mag-lead-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--joint-editorial-paper);
  margin-bottom: 1rem;
}

.mag-lead-desc {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 420px;
}

.mag-lead-anchor {
  color: var(--joint-editorial-paper);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--joint-editorial-ochre);
  padding-bottom: 4px;
}

.mag-dashboard-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.mag-dashboard-card {
  padding-top: 2rem;
  border-top: 3px solid var(--joint-editorial-sage);
}

.mag-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--joint-editorial-emerald);
  margin-bottom: 0.75rem;
}

.mag-card-text {
  color: var(--joint-editorial-charcoal);
  font-size: 0.98rem;
}

/* HOW IT WORKS: Horizontal Stepper (Preset E) */
.mag-stepper-lineup {
  background-color: var(--joint-editorial-paper);
  padding: 16dvh 2rem;
  border-top: 1px solid var(--joint-editorial-border);
}

.mag-stepper-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.mag-stepper-top {
  margin-bottom: 5rem;
}

.mag-stepper-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.mag-step-item {
  flex: 1;
  position: relative;
}

.mag-step-num-bg {
  font-family: var(--font-display);
  font-size: 6.5rem;
  line-height: 1;
  font-weight: 700;
  color: var(--joint-editorial-emerald);
  opacity: 0.07;
  position: absolute;
  top: -3.5rem;
  left: -0.5rem;
  z-index: 1;
}

.mag-step-body {
  position: relative;
  z-index: 2;
}

.mag-step-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--joint-editorial-emerald);
  margin-bottom: 1rem;
}

.mag-step-text {
  color: var(--joint-editorial-charcoal);
  font-size: 0.95rem;
}

.mag-step-divider {
  width: 1px;
  height: 120px;
  background-color: var(--joint-editorial-border);
  align-self: center;
}

/* CTA STRIP (Preset E: Magazine Style) */
.mag-strip-invitation {
  background-color: var(--joint-editorial-cream);
  border-top: 1px solid var(--joint-editorial-border);
  padding: 16dvh 2rem;
}

.mag-strip-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mag-strip-headline {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--joint-editorial-emerald);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mag-strip-teaser {
  font-size: 1.15rem;
  color: var(--joint-editorial-charcoal);
  margin-bottom: 3rem;
}

.mag-button-outline-dark {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: var(--joint-editorial-emerald);
  border: 2px solid var(--joint-editorial-emerald);
  background: transparent;
  padding: 1.1rem 2.2rem;
  border-radius: var(--joint-border-radius);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mag-button-outline-dark:hover {
  background-color: var(--joint-editorial-emerald);
  color: var(--joint-editorial-paper);
}

/* EXPERT PAGE STYLING */
.mag-expert-editorial-hero {
  background-size: cover;
  background-position: center;
  padding: 12dvh 2rem;
  text-align: center;
}

.mag-expert-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.mag-expert-meta-label {
  display: inline-block;
  letter-spacing: 0.2rem;
  font-size: 0.8rem;
  color: var(--joint-editorial-ochre);
  font-weight: 600;
  margin-bottom: 1rem;
}

.mag-expert-editorial-lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-top: 1.5rem;
}

/* STATS STRIP */
.mag-expert-stats-strip {
  background-color: var(--joint-editorial-paper);
  border-bottom: 1px solid var(--joint-editorial-border);
  padding: 3.5rem 2rem;
}

.mag-expert-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.mag-expert-stat-box {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.mag-stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--joint-editorial-emerald);
  line-height: 1;
}

.mag-stat-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--joint-editorial-muted);
  margin-top: 0.5rem;
}

/* ALTERNATING PANEL SECTION */
.mag-expert-alternator {
  padding: 12dvh 2rem;
}

.mag-expert-alternator:nth-child(even) {
  background-color: var(--joint-editorial-paper);
  border-top: 1px solid var(--joint-editorial-border);
  border-bottom: 1px solid var(--joint-editorial-border);
}

.mag-alternator-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4.5rem;
  align-items: center;
}

.mag-alternator-image {
  width: 50%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
}

.mag-alternator-text {
  width: 50%;
}

.mag-reverse-layout .mag-alternator-inner {
  flex-direction: row-reverse;
}

.mag-expert-bullet-list {
  margin-top: 1.5rem;
  list-style: none;
}

.mag-expert-bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.mag-expert-bullet-list li::before {
  content: "•";
  color: var(--joint-editorial-ochre);
  font-size: 1.5rem;
  position: absolute;
  left: 0.25rem;
  top: -0.25rem;
}

.mag-expert-cta-banner {
  background-color: var(--joint-editorial-paper);
  padding: 12dvh 2rem;
  border-top: 1px solid var(--joint-editorial-border);
}

.mag-expert-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* RESERVATION PAGE STYLING */
.mag-book-top-row {
  background-color: var(--joint-editorial-paper);
  border-bottom: 1px solid var(--joint-editorial-border);
  padding: 5rem 2rem;
}

.mag-book-row-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
}

.mag-book-card {
  flex: 1;
  padding-top: 1.5rem;
  border-top: 4px solid var(--joint-editorial-emerald);
}

.mag-book-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mag-book-card-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--joint-editorial-ochre);
  font-weight: bold;
}

.mag-book-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--joint-editorial-emerald);
}

.mag-book-card-desc {
  font-size: 0.95rem;
  color: var(--joint-editorial-charcoal);
}

/* FORM LAYOUT */
.mag-form-concourse {
  padding: 12dvh 2rem;
}

.mag-form-wrapper-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 5rem;
  background-color: var(--joint-editorial-paper);
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
  padding: 4.5rem;
}

.mag-form-decor-heading {
  width: 45%;
}

.mag-form-pre {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  color: var(--joint-editorial-muted);
  margin-bottom: 0.5rem;
}

.mag-inline-email {
  color: var(--joint-editorial-emerald);
  font-weight: 600;
  text-decoration: underline;
}

.mag-form-actual {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.mag-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mag-form-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--joint-editorial-emerald);
  letter-spacing: 0.05rem;
}

.mag-form-input, .mag-form-select {
  width: 100%;
  padding: 1.1rem;
  border: 1px solid var(--joint-editorial-border);
  border-radius: 8px;
  background-color: var(--joint-editorial-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--joint-editorial-charcoal);
  transition: all 0.3s ease;
}

.mag-form-input:focus, .mag-form-select:focus {
  outline: none;
  border-color: var(--joint-editorial-emerald);
  background-color: var(--joint-editorial-paper);
  box-shadow: 0 0 0 3px rgba(27,59,50,0.06);
}

.mag-form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.mag-form-checkbox {
  margin-top: 0.25rem;
  cursor: pointer;
}

.mag-form-checkbox-label {
  font-size: 0.88rem;
  color: var(--joint-editorial-charcoal);
}

.mag-form-checkbox-label a {
  color: var(--joint-editorial-emerald);
  text-decoration: underline;
}

.w-100 {
  width: 100%;
}

/* FAQ STYLE Accoridon */
.mag-faq-accordion-box {
  background-color: var(--joint-editorial-paper);
  padding: 12dvh 2rem;
  border-top: 1px solid var(--joint-editorial-border);
}

.mag-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.mag-faq-header {
  margin-bottom: 4rem;
}

.mag-faq-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.mag-faq-item {
  border-bottom: 1px solid var(--joint-editorial-border);
  padding-bottom: 2rem;
}

.mag-faq-question {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--joint-editorial-emerald);
  margin-bottom: 0.75rem;
}

.mag-faq-answer {
  color: var(--joint-editorial-charcoal);
  font-size: 0.98rem;
}

/* LEGAL SYSTEM PAGE */
.mag-legal-container {
  padding: 10dvh 2rem;
}

.mag-legal-content-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--joint-editorial-paper);
  border: 1px solid var(--joint-editorial-border);
  border-radius: var(--joint-border-radius);
  padding: 5rem;
  box-shadow: var(--joint-shadow);
}

.mag-legal-intro {
  color: var(--joint-editorial-muted);
  margin-bottom: 3rem;
  font-style: italic;
}

.mag-legal-sub {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 2.25rem 0 0.75rem 0;
  color: var(--joint-editorial-emerald);
}

.mag-legal-divider {
  border: none;
  height: 1px;
  background-color: var(--joint-editorial-border);
  margin: 3.5rem 0;
}

/* THANK YOU CANVAS */
.mag-thank-canvas {
  padding: 5dvh 2rem;
}

.mag-thank-split {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  background-color: var(--joint-editorial-paper);
  border-radius: var(--joint-border-radius);
  box-shadow: var(--joint-shadow);
  overflow: hidden;
}

.mag-thank-text-panel {
  width: 55%;
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mag-thank-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--joint-editorial-ochre);
  letter-spacing: 0.25rem;
  margin-bottom: 1rem;
}

.mag-thank-cta-box {
  margin-top: 2rem;
}

.mag-thank-image-panel {
  width: 45%;
  background-size: cover;
  background-position: center;
}

/* FOOTER SECTION STYLE */
.mag-footer-outer {
  background-color: var(--joint-editorial-emerald);
  color: var(--joint-editorial-paper);
  border-top: 5px solid var(--joint-editorial-ochre);
}

.mag-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 3rem 2rem;
}

.mag-footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 4rem;
}

.mag-footer-info {
  max-width: 500px;
}

.mag-footer-desc-text {
  color: rgba(252,250,246,0.75);
  font-size: 0.95rem;
}

.mag-footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 220px;
}

.mag-footer-col-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--joint-editorial-ochre);
  margin-bottom: 0.5rem;
}

.mag-footer-link {
  color: rgba(252,250,246,0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.mag-footer-link:hover {
  color: var(--joint-editorial-ochre);
}

.mag-footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mag-footer-disclaimer {
  font-size: 0.82rem;
  color: rgba(252,250,246,0.5);
  line-height: 1.6;
}

.mag-copyright-text {
  font-size: 0.88rem;
  color: rgba(252,250,246,0.4);
}

/* COOKIE COMPONENT SYSTEM */
.mag-cookie-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--joint-editorial-paper);
  border-top: 3px solid var(--joint-editorial-emerald);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  z-index: 9999;
}

.mag-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.mag-cookie-text {
  font-size: 0.9rem;
  color: var(--joint-editorial-charcoal);
  margin: 0;
}

.mag-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.mag-cookie-btn-accept {
  background-color: var(--joint-editorial-emerald);
  color: var(--joint-editorial-paper);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mag-cookie-btn-accept:hover {
  background-color: var(--joint-editorial-ochre);
}

.mag-cookie-btn-decline {
  background: transparent;
  color: var(--joint-editorial-muted);
  border: 1px solid var(--joint-editorial-border);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mag-cookie-btn-decline:hover {
  background-color: var(--joint-editorial-cream);
  color: var(--joint-editorial-charcoal);
}

/* SCREEN LAYOUT ADAPTIVITY (Max 1024px) */
@media (max-width: 1024px) {
  .mag-hero-serif-title {
    font-size: 2.8rem;
  }
  
  .mag-zigzag-text-wrapper {
    padding: 6dvh 3rem;
  }
  
  .mag-dashboard-grid-box {
    flex-direction: column;
  }
  
  .mag-dashboard-lead, .mag-dashboard-side {
    width: 100%;
  }

  .mag-dashboard-lead {
    min-height: auto;
    padding: 3rem;
  }
  
  .mag-alternator-inner {
    flex-direction: column !important;
    gap: 2.5rem;
  }
  
  .mag-alternator-image, .mag-alternator-text {
    width: 100%;
  }
  
  .mag-form-wrapper-inner {
    flex-direction: column;
    padding: 2.5rem;
    gap: 3rem;
  }
  
  .mag-form-decor-heading, .mag-form-actual {
    width: 100%;
  }
  
  .mag-thank-split {
    flex-direction: column-reverse;
  }
  
  .mag-thank-text-panel, .mag-thank-image-panel {
    width: 100%;
  }
  
  .mag-thank-image-panel {
    height: 350px;
  }

  .mag-thank-text-panel {
    padding: 3rem;
  }
}

/* SCREEN LAYOUT ADAPTIVITY (Max 768px - Responsive Burger Active) */
@media (max-width: 768px) {
  .mag-burger-trigger {
    display: flex;
  }

  .mag-nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--joint-editorial-paper);
    border-bottom: 1px solid var(--joint-editorial-border);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }

  .mag-nav-item {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
  }

  .mag-nav-item.active::after {
    display: none;
  }

  /* Hamburger Toggle Trigger logic */
  .mag-burger-checkbox:checked ~ .mag-nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

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

  .mag-burger-checkbox:checked ~ .mag-burger-trigger span:nth-child(2) {
    opacity: 0;
  }

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

  .mag-hero-split-canvas {
    height: auto;
    flex-direction: column-reverse;
  }

  .mag-hero-vertical-panel {
    width: 100%;
    height: 50px;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mag-hero-vertical-badge {
    writing-mode: horizontal-tb;
    letter-spacing: 0.15rem;
  }

  .mag-hero-visual-frame {
    padding: 4rem 2rem;
  }

  .mag-hero-serif-title {
    font-size: 2.2rem;
  }

  .mag-quote-main-speech {
    font-size: 1.6rem;
  }

  .mag-zigzag-narrative {
    flex-direction: column;
  }

  .mag-zigzag-visual {
    width: 100%;
    height: 300px;
    min-height: auto;
  }

  .mag-zigzag-text-wrapper {
    width: 100%;
    padding: 4rem 2rem;
  }

  .mag-serif-heading {
    font-size: 2rem;
  }

  .mag-stepper-row {
    flex-direction: column;
    gap: 4rem;
  }

  .mag-step-divider {
    display: none;
  }

  .mag-strip-headline {
    font-size: 2.2rem;
  }

  .mag-book-row-inner {
    flex-direction: column;
    gap: 3rem;
  }

  .mag-legal-content-box {
    padding: 3rem 1.5rem;
  }

  .mag-footer-columns {
    flex-direction: column;
    gap: 3rem;
  }

  .mag-cookie-content {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}