/* ═══════════════════════════════════════════════════════════════
   support.css — MireonSpero™ Support Page
   All .su- namespaced. No collision with global.css or home.css.
   Contact module styles included here per instructions.
═══════════════════════════════════════════════════════════════ */


/* ── SHARED UTILITIES ────────────────────────────────────── */

.su-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ms-rule);
}

.su-section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--ms-navy);
  line-height: 1.2;
  margin: 0;
}

.su-section-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ms-gray);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 1.5rem;
}

.su-link-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ms-teal);
  text-decoration: none;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.15s;
}
.su-link-text::after { content: '→'; }
.su-link-text:hover { opacity: 0.72; }


/* ── HERO ────────────────────────────────────────────────── */

.su-hero {
  position: relative;
  min-height: 620px;
  background: #e8e4dc;
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.su-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.su-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 1;
  filter: brightness(1.14) saturate(1.06);
}

/* Canonical top-down fog — matches first-impressions.html exactly */
.su-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.78) 0%,
    rgba(255, 255, 255, 0.70) 30%,
    rgba(255, 255, 255, 0.58) 55%,
    rgba(255, 255, 255, 0.28) 78%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.su-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: flex;
  justify-content: center;
}

.su-hero-text {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.su-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ms-navy);
  font-weight: 600;
}

.su-hero-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ms-navy);
  margin: 0;
}

.su-hero-heading em {
  font-style: italic;
  font-weight: 500;
  color: var(--ms-navy);
}

.su-hero-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--ms-navy);
  line-height: 1.78;
  margin: 0;
}

.su-hero-cta {
  display: inline-block;
  width: fit-content;
  padding: 0.85rem 2rem;
  background: var(--ms-gold);
  color: var(--ms-navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.su-hero-cta:hover { background: var(--ms-teal); color: #fff; }


/* ── THRESHOLD OF ENTRY — full-bleed background, icon atop narrative ── */

.su-threshold {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Background image fills the entire section */
.su-threshold-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.su-threshold-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1.18) saturate(0.80);
}

/* Heavy bright wash — makes the image read very light and airy,
   ensures navy narrative text is fully legible over it */
.su-threshold-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.82);
}

/* Content layer — horizontal layout: label left, narrative right */
.su-threshold-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: center;
}

/* Left: ghost numeral + tag label */
.su-threshold-label {
  padding-right: 2rem;
  border-right: 1px solid var(--ms-rule);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: stretch;
  justify-content: center;
}

.su-threshold-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(29, 53, 87, 0.10);
  line-height: 1;
}

.su-threshold-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ms-gray);
  font-weight: 400;
}

/* Right: icon sits directly above heading — no background panel */
.su-threshold-narrative {
  padding-left: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Icon on top of the narrative, icon-scale, not cropped */
.su-threshold-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  opacity: 0.82;
  flex-shrink: 0;
}

.su-threshold-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--ms-navy);
  line-height: 1.25;
  margin: 0;
}

.su-threshold-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  max-width: 560px;
  line-height: 1.78;
  margin: 0;
}


/* ── CHAMBERS OF SUPPORT — light, cream/white, restrained ── */

.su-chambers-wrap {
  background: #fff;
  padding: 5rem 2rem;
  max-width: 100%;
  margin: 0;
}

.su-chambers-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 3-column grid with thin hairline separators on white */
.su-chambers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ms-rule);
}

.su-chamber-cell {
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.18s ease;
}
.su-chamber-cell:hover { background: var(--ms-cream); }

/* Full-width FAQ row */
.su-chamber-cell--wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
}

.su-chamber-cell--wide .su-chamber-img {
  width: 160px;
  height: 100%;
  min-height: 120px;
  flex-shrink: 0;
  border-bottom: none;
  border-right: 1px solid var(--ms-rule);
  background: rgba(29, 53, 87, 0.03);
}

.su-chamber-cell--wide .su-chamber-body {
  padding: 1.75rem 2.5rem;
}

/* Icon slot: navy-tinted very light background, icon contained */
.su-chamber-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: rgba(29, 53, 87, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--ms-rule);
  flex-shrink: 0;
}

.su-chamber-img img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  display: block;
  opacity: 0.60;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.su-chamber-cell:hover .su-chamber-img img {
  opacity: 0.80;
  transform: scale(1.04);
}

.su-chamber-body {
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.70rem;
  flex: 1;
}

/* Gold dot marker — replaces the navy circle-dot from dark version */
.su-chamber-dot-wrap {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(233, 196, 106, 0.50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.su-chamber-dot {
  width: 5px;
  height: 5px;
  background: var(--ms-gold);
  border-radius: 50%;
}

.su-chamber-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ms-navy);
  line-height: 1.2;
}

.su-chamber-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.72;
  flex: 1;
  margin: 0;
}

.su-chamber-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ms-teal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  text-decoration: none;
  transition: opacity 0.15s;
}
.su-chamber-link::after { content: '→'; }
.su-chamber-cell:hover .su-chamber-link { opacity: 0.72; }


/* ── CODEX OF THE SYSTEM — each strip has its banner as background ── */

.su-codex-wrap {
  background: var(--ms-cream);
  padding: 5rem 2rem;
  max-width: 100%;
  margin: 0;
}

.su-codex-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Each codex strip is a self-contained full-bleed banner section */
.su-codex-strip {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  margin-bottom: 1px;  /* hairline gap between strips */
  display: flex;
  align-items: center;
}

.su-codex-strip:last-child { margin-bottom: 0; }

/* Background image layer */
.su-codex-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.su-codex-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1.18) saturate(0.75);
}

/* Heavy bright wash — same treatment as threshold, very light and legible */
.su-codex-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.84);
}

/* Content layer — label left, narrative right (same as threshold) */
.su-codex-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: center;
}

/* Left: ghost numeral + tag */
.su-codex-label-col {
  padding-right: 2rem;
  border-right: 1px solid var(--ms-rule);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-self: stretch;
  justify-content: center;
}

.su-codex-label-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(29, 53, 87, 0.08);
  line-height: 1;
}

.su-codex-label-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ms-gray);
  font-weight: 400;
}

/* Right: icon on the left side of narrative text */
.su-codex-narrative {
  padding-left: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* Icon: sits above the name, left-aligned, icon-scale, contained */
.su-codex-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  opacity: 0.80;
  flex-shrink: 0;
}

.su-codex-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 500;
  color: var(--ms-navy);
  line-height: 1.2;
}

.su-codex-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  max-width: 580px;
  line-height: 1.78;
  margin: 0;
}


/* ── INSTRUMENTS OF PASSAGE ──────────────────────────────── */

.su-instruments {
  background: #fff;
  padding: 5rem 2rem;
  max-width: 100%;
  margin: 0;
}

.su-instruments-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.su-instruments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--ms-rule);
}

.su-instrument-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.75rem 1.5rem;
  flex: 1 1 160px;
  min-width: 140px;
}

.su-instrument-img {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.su-instrument-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0.62;
}

.su-instrument-img--wide {
  width: 100px;
  height: 60px;
}

.su-instrument-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ms-gray);
  text-align: center;
  font-weight: 400;
}


/* ── SEAL OF AUTHORITY ───────────────────────────────────── */

.su-seal {
  background: var(--ms-cream);
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.su-seal-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.su-seal-label {
  padding: 3.5rem 2rem;
  border-right: 1px solid var(--ms-rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.su-seal-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(29, 53, 87, 0.08);
  line-height: 1;
}

.su-seal-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ms-gray);
  font-weight: 400;
}

.su-seal-content {
  padding: 3.5rem 3rem 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: center;
}

.su-seal-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 400;
  color: var(--ms-navy);
  line-height: 1.25;
  margin: 0;
}

.su-seal-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  max-width: 540px;
  line-height: 1.78;
  margin: 0;
}

.su-seal-mark {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.su-seal-monogram {
  height: 80px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.88;
}

.su-seal-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ms-navy);
  letter-spacing: 0.03em;
}


/* ═══════════════════════════════════════════════════════════
   CONTACT MODULE
   Styled to match the rest of the support page design system.
   Original functional JS and HTML structure preserved exactly.
═══════════════════════════════════════════════════════════ */

.contact-module {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.contact-module h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--ms-navy);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.contact-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

/* Email block */
.contact-email-block {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--ms-navy);
  border-radius: 2px;
  padding: 1rem 1.75rem;
  margin-bottom: 3rem;
  user-select: none;
}

.contact-email-block .email-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ms-gold);
  font-weight: 500;
  white-space: nowrap;
}

.contact-email-block .email-rendered {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  color: white;
  letter-spacing: 0.01em;
}

.copy-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.70);
  border-radius: 2px;
  padding: 0.28rem 0.65rem;
  font-size: 0.62rem;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.copy-btn:hover {
  border-color: var(--ms-gold);
  color: var(--ms-gold);
}
.copy-btn:focus-visible {
  outline: 2px dashed var(--ms-gold);
  outline-offset: 2px;
}

/* Policy tab bar */
.policy-tabbar {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--ms-rule);
  margin-bottom: 0;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.policy-tabbar::-webkit-scrollbar { display: none; }

.policy-tab {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ms-gray);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 1.75rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
  position: relative;
  bottom: -1px;
  line-height: 1;
}
.policy-tab:hover { color: var(--ms-navy); }
.policy-tab.active {
  color: var(--ms-navy);
  border-bottom: 2px solid var(--ms-gold);
  font-weight: 500;
}
.policy-tab:focus-visible {
  outline: 2px dashed var(--ms-gold);
  outline-offset: -2px;
}

/* Panel surface */
.policy-panels {
  border: 1px solid var(--ms-rule);
  border-top: none;
  border-radius: 0 0 2px 2px;
  background: #fdfdfd;
  min-height: 260px;
}

.policy-panel-content {
  display: none;
  padding: 2.5rem 2.5rem 2rem;
  animation: panelFadeIn 0.2s ease;
}
.policy-panel-content.active { display: block; }

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

.panel-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ms-navy);
  line-height: 1.78;
  margin-bottom: 1.75rem;
  max-width: 800px;
}

.panel-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 3rem;
}

.panel-column-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ms-teal);
  margin: 0 0 0.6rem;
  display: block;
  font-weight: 500;
}

.panel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.panel-list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.90rem;
  color: var(--ms-navy);
  line-height: 1.60;
  padding-left: 1rem;
  position: relative;
}

.panel-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--ms-gold);
  font-weight: 700;
}

.panel-body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--ms-navy);
  line-height: 1.78;
  margin-bottom: 0.75rem;
  max-width: 800px;
}
.panel-body-text:last-child { margin-bottom: 0; }

/* Institutional notice */
.contact-divider {
  border: none;
  border-top: 1px solid var(--ms-rule);
  margin: 3rem 0 0;
}

.institutional-notice {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--ms-gold);
  background: rgba(248, 246, 241, 0.80);
  border-radius: 0 2px 2px 0;
}

.institutional-notice p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.90rem;
  color: var(--ms-navy);
  line-height: 1.72;
  margin-bottom: 0.5rem;
}
.institutional-notice p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px breakpoint
═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Hero */
  .su-hero { min-height: unset; }
  .su-hero-content { padding: 4rem 1.5rem; }
  .su-hero-text { max-width: 100%; gap: 1.25rem; }
  .su-hero-heading { font-size: clamp(1.8rem, 6vw, 2.2rem); }
  .su-hero-body { font-size: 0.93rem; }

  /* Threshold */
  .su-threshold-content { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .su-threshold-label {
    border-right: none;
    border-bottom: 1px solid var(--ms-rule);
    padding-right: 0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .su-threshold-narrative { padding-left: 0; }

  /* Section headers */
  .su-section-header { flex-direction: column; gap: 0.4rem; }
  .su-section-meta { margin-left: 0; }

  /* Chambers: single column */
  .su-chambers-wrap { padding: 3.5rem 1.5rem; }
  .su-chambers-grid { grid-template-columns: 1fr; }
  .su-chamber-cell--wide {
    flex-direction: column;
  }
  .su-chamber-cell--wide .su-chamber-img {
    width: 100%;
    height: 120px;
    border-right: none;
    border-bottom: 1px solid var(--ms-rule);
  }
  .su-chamber-cell--wide .su-chamber-body { padding: 1.75rem; }

  /* Codex strips */
  .su-codex-wrap { padding: 3.5rem 1.5rem; }
  .su-codex-content { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
  .su-codex-label-col {
    border-right: none;
    border-bottom: 1px solid var(--ms-rule);
    padding-right: 0;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .su-codex-narrative { padding-left: 0; }

  /* Instruments */
  .su-instruments { padding: 3.5rem 1.5rem; }

  /* Seal */
  .su-seal-inner { grid-template-columns: 1fr; }
  .su-seal-label {
    border-right: none;
    border-bottom: 1px solid var(--ms-rule);
    padding: 2rem 1.5rem 1.25rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .su-seal-content { padding: 2rem 1.5rem; }

  /* Contact module */
  .contact-module { padding: 3rem 1.25rem; }
  .contact-email-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
  }
  .policy-tab { padding: 0.85rem 1.1rem; font-size: 0.68rem; }
  .policy-panel-content { padding: 1.75rem 1.25rem 1.5rem; }
  .panel-columns { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

}

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