:root {
  --ivory: #f7f2e8;
  --ivory-deep: #eee5d6;
  --paper: #fffdf8;
  --espresso: #001b2a;
  --muted: #586a70;
  --oxblood: #001b2a;
  --oxblood-dark: #00111b;
  --gold: #c6a76a;
  --gold-deep: #84672f;
  --line: rgba(0, 27, 42, 0.16);
  --gold-line: rgba(198, 167, 106, 0.46);
  --brand-pattern-image: url("../images/aren-brand-pattern.png");
  --serif: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html.wp-toolbar-visible { margin-top: 0 !important; }
body.admin-bar .site-header { top: 32px; }
.wp-site-blocks { padding: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { width: auto; height: auto; margin: 0; padding: 12px; clip: auto; background: var(--paper); color: var(--espresso); z-index: 100000; }
.aren-form-status { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--gold-deep); font-size: 13px; }
.aren-quiz-app .quiz-option { color: var(--espresso); }
.aren-quiz-app .button-link { border: 0; cursor: pointer; }
.aren-quiz-app .quiz-option:disabled { cursor: not-allowed; opacity: 0.42; }
.aren-quiz-app .quiz-result { min-height: auto; }

@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding-top: 88px;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body, button, input, textarea, select { font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.hero-image-wrap picture,
.editorial-image-wrap picture,
.page-hero-image picture,
.programme-flow-image picture {
  width: 100%;
  height: 100%;
  display: block;
}
.editorial-image-wrap picture img,
.page-hero-image picture img,
.programme-flow-image picture img { width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--espresso); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  background: var(--espresso);
  color: var(--paper);
  padding: 10px 14px;
}

.skip-link:focus { transform: translateY(0); }
.site-shell { min-height: 100vh; overflow: clip; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(247, 242, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.header-inner {
  height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  padding: 0 clamp(24px, 5vw, 78px);
}

.wordmark {
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(30px, 2.5vw, 43px);
  line-height: 1;
  letter-spacing: 0.18em;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 14px;
}

.main-nav .menu { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 36px); margin: 0; padding: 0; list-style: none; }

.main-nav a, .footer-column a { position: relative; width: max-content; }

.main-nav a::after, .footer-column a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transition: right 200ms ease;
}

.main-nav a:hover::after, .main-nav a[aria-current="page"]::after, .footer-column a:hover::after { right: 0; }

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.1em;
}

.language-switch button,
.language-switch a {
  border: 0;
  background: transparent;
  padding: 4px 0;
  cursor: pointer;
  opacity: 0.58;
  color: inherit;
  text-decoration: none;
}

.language-switch button.active,
.language-switch a[aria-current="page"] { color: var(--espresso); opacity: 1; }

.profile-link {
  border: 1px solid var(--oxblood);
  color: var(--oxblood);
  padding: 13px 20px;
  font-size: 13px;
  transition: background 200ms ease, color 200ms ease;
}

.profile-link:hover { background: var(--oxblood); color: var(--paper); }
.account-link {
  padding: 8px 0;
  border-bottom: 1px solid var(--gold-deep);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mobile-profile-link,
.mobile-account-link,
.mobile-nav-heading,
.mobile-nav-actions,
.menu-close,
.menu-toggle,
.menu-backdrop { display: none; }

.hero {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.hero-copy {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(60px, 8vh, 104px) clamp(30px, 5vw, 80px) 42px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow { color: var(--gold-deep); }

.hero h1, .section-heading h2, .editorial-copy > h2, .closing-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 6.3vw, 104px);
  line-height: 0.91;
}

.hero h1 span { display: block; }
.hero-intro { margin: 34px 0 0; color: var(--muted); font-size: clamp(16px, 1.2vw, 20px); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid currentColor;
  color: var(--oxblood);
  font-size: 17px;
}

.text-link span, .button-link span { color: var(--gold); }

.text-link span, .button-link span { transition: transform 200ms ease; }
.text-link:hover span, .button-link:hover span { transform: translateX(5px); }
.hero-cta { margin-top: 56px; }

.trust-line {
  width: 100%;
  margin: auto 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-image-wrap { min-height: 720px; background: var(--ivory-deep); overflow: hidden; }

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  animation: image-settle 1.1s ease both;
}

.hero-image-navy { object-position: 72% center; }

.section-pad { padding: clamp(90px, 12vw, 190px) clamp(24px, 6vw, 96px); }

.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(44px, 9vw, 150px);
  max-width: 1320px;
  margin: 0 auto;
}

.statement-section { background: var(--paper); }

.statement-title {
  max-width: 1000px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
}

.large-body {
  max-width: 680px;
  margin: 52px 0 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.8;
}

.section-ink { background: var(--espresso); color: var(--ivory); }
.section-heading { max-width: 1320px; margin: 0 auto 80px; }

.section-heading h2, .editorial-copy > h2, .closing-section h2 {
  max-width: 850px;
  font-size: clamp(45px, 5vw, 78px);
  line-height: 0.98;
}

.light-heading .eyebrow { color: var(--gold); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid rgba(244, 239, 230, 0.24);
}

.step-card {
  min-height: 360px;
  padding: 30px clamp(20px, 2.5vw, 40px) 38px 0;
  border-right: 1px solid rgba(244, 239, 230, 0.18);
}

.step-card + .step-card { padding-left: clamp(20px, 2.5vw, 40px); }
.step-card:last-child { border-right: 0; }

.step-card > span { color: var(--gold); font-size: 11px; letter-spacing: 0.16em; }
.wardrobe-card > span { color: var(--gold-deep); font-size: 11px; letter-spacing: 0.16em; }

.step-card h3, .wardrobe-card h3, .values-list h3 {
  margin: 82px 0 18px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.step-card p, .wardrobe-card p, .values-list p { margin: 0; color: rgba(247, 242, 232, 0.72); font-size: 14px; line-height: 1.8; }
.section-link { margin: 62px max(0px, calc((100% - 1320px) / 2)) 0; }
.light-link { color: var(--ivory); }

.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }

.wardrobe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1320px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.wardrobe-card {
  min-height: 330px;
  padding: 32px clamp(28px, 4vw, 58px) 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease;
}

.wardrobe-card:hover { background: var(--paper); }
.wardrobe-card h3 { margin: 52px 0 10px; font-size: 38px; }
.wardrobe-price { display: block; color: var(--gold-deep); font-size: 22px; font-weight: 500; letter-spacing: 0.04em; }
.wardrobe-payment { display: block; margin: 8px 0 24px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; line-height: 1.5; text-transform: uppercase; }
.wardrobe-card p { max-width: 520px; color: var(--muted); font-size: 15px; }

.editorial-band { display: grid; grid-template-columns: 1.05fr 0.95fr; background: var(--paper); }
.editorial-image-wrap { min-height: 760px; }
.editorial-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.editorial-copy { padding: clamp(80px, 10vw, 160px) clamp(34px, 7vw, 110px); }
.values-list { margin-top: 70px; border-top: 1px solid var(--line); }

.values-list > div {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.values-list h3 { margin: 0; font-size: 22px; }
.values-list p { color: var(--muted); }
.closing-section { text-align: center; }
.closing-section .eyebrow { color: var(--gold-deep); }
.closing-section h2 { max-width: 900px; margin: 0 auto; }

.closing-section > p:not(.eyebrow) {
  max-width: 620px;
  margin: 34px auto 44px;
  color: var(--muted);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  min-height: 58px;
  padding: 14px 26px;
  background: var(--oxblood);
  color: var(--paper);
  font-size: 14px;
  transition: background 200ms ease;
}

.button-link:hover { background: var(--oxblood-dark); }

.site-footer { padding: 86px clamp(24px, 6vw, 96px) 30px; background: var(--espresso); color: var(--ivory); }

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  max-width: 1320px;
  margin: 0 auto 100px;
}

.wordmark-footer { color: var(--ivory); }
.footer-brand p { max-width: 360px; margin: 24px 0 0; color: rgba(247, 242, 232, 0.64); font-size: 14px; }

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  color: rgba(247, 242, 232, 0.82);
  font-size: 13px;
}

.footer-label { margin: 0 0 18px; color: var(--gold); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid rgba(244, 239, 230, 0.16);
  color: rgba(247, 242, 232, 0.5);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes image-settle { from { opacity: 0; transform: scale(1.018); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1100px) {
  body { padding-top: 72px; }
  .header-inner { grid-template-columns: auto 1fr; height: 72px; padding-inline: 24px; }

  /* The drawer lives inside .site-header. Raise that whole stacking context
     above the separate backdrop while the menu is open; otherwise the
     backdrop tints and intercepts the drawer even when the drawer itself has
     a larger child z-index. */
  body.aren-menu-open .site-header { z-index: 80; }

  .main-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(92vw, 430px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: max(20px, env(safe-area-inset-top)) 28px max(32px, env(safe-area-inset-bottom));
    background: var(--ivory);
    border-left: 1px solid var(--line);
    box-shadow: -24px 0 70px rgba(0, 27, 42, 0.16);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(104%, 0, 0);
    transition: transform 260ms ease, opacity 220ms ease, visibility 220ms linear;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }

  .mobile-nav-heading {
    min-height: 52px;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-wordmark { font-size: 27px; }

  .menu-close {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(0, 27, 42, 0.25);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-close span {
    position: absolute;
    width: 19px;
    height: 1px;
    background: var(--espresso);
  }

  .menu-close span:first-child { transform: rotate(45deg); }
  .menu-close span:last-child { transform: rotate(-45deg); }

  /* Each divider belongs to its own list item. The item owns its height,
     padding and line-height, so a line can never overlap the next label. */
  .main-nav .menu {
    width: 100%;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }

  .main-nav .menu > li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .menu > li > a {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 16px 0 15px;
    border: 0;
    color: var(--espresso);
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
    opacity: 1;
    filter: none;
    -webkit-text-fill-color: currentColor;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .main-nav a { max-width: 100%; }
  .main-nav a::after { display: none; }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: auto;
    padding-top: 36px;
  }

  .mobile-profile-link,
  .mobile-account-link {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--line);
    color: var(--oxblood);
    font-size: 14px;
    line-height: 1.45;
  }

  .mobile-account-link { font-weight: 600; }
  .profile-link { display: none; }

  .menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 8px;
    border: 1px solid rgba(0, 27, 42, 0.24);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--espresso);
    transition: transform 200ms ease;
  }

  .menu-backdrop {
    position: fixed;
    z-index: 70;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: rgba(0, 17, 27, 0.46);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms linear;
  }

  body.aren-menu-open { overflow: hidden; touch-action: none; }
  body.aren-menu-open .menu-backdrop { opacity: 1; visibility: visible; pointer-events: auto; }
  body.admin-bar .main-nav { top: 32px; }
  .hero { min-height: auto; }
  .hero-copy, .hero-image-wrap { min-height: 650px; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wardrobe-grid { grid-template-columns: 1fr; }
  .step-card:nth-child(2) { border-right: 0; }
  .step-card:nth-child(-n + 2) { border-bottom: 1px solid rgba(244, 239, 230, 0.18); }
  .editorial-band { grid-template-columns: 1fr; }
  .editorial-image-wrap { min-height: 520px; }
}

@media screen and (max-width: 782px) {
  body.admin-bar .main-nav { top: 46px; }
}

@media (max-width: 760px) {
  .header-inner { gap: 12px; padding-inline: 16px; }
  .header-actions { gap: 11px; }
  .language-switch { font-size: 11px; }
  .account-link { font-size: 10px; letter-spacing: 0.05em; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: calc(100svh - 72px); padding: 68px 24px 30px; }
  .hero h1 { font-size: clamp(52px, 16.3vw, 72px); }
  .hero-intro { margin-top: 28px; }
  .hero-cta { margin-top: 42px; }
  .hero-image-wrap { min-height: 110vw; max-height: 720px; }
  .hero-image { object-position: center 30%; }
  .hero-image-navy { object-position: 72% center; }
  .section-pad { padding: 90px 24px; }
  .section-grid { grid-template-columns: 1fr; gap: 32px; }
  .large-body { margin-top: 36px; }
  .section-heading { margin-bottom: 52px; }
  .steps-grid { grid-template-columns: 1fr; }

  .step-card, .step-card + .step-card {
    min-height: 0;
    padding: 26px 0 42px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.18);
  }

  .step-card h3 { margin-top: 44px; }
  .section-link { margin-top: 48px; margin-inline: 0; }
  .split-heading { display: block; }
  .split-heading .text-link { margin-top: 34px; }
  .wardrobe-grid { grid-template-columns: 1fr; }
  .wardrobe-card { min-height: 300px; padding: 28px 24px 36px; }
  .wardrobe-card h3 { margin-top: 52px; font-size: 32px; }
  .editorial-image-wrap { min-height: 76vw; }
  .editorial-copy { padding: 86px 24px; }
  .values-list { margin-top: 52px; }
  .values-list > div { grid-template-columns: 1fr; gap: 12px; }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 52px 24px;
    margin-bottom: 72px;
  }

  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 440px) {
  .wordmark { font-size: 25px; }
  .header-actions { gap: 8px; }
  .account-link { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Internal pages */
.page-hero {
  min-height: 68svh;
  display: flex;
  align-items: flex-end;
  padding: clamp(110px, 14vw, 200px) clamp(24px, 6vw, 96px) clamp(74px, 9vw, 130px);
  background: var(--paper);
}

.page-hero.has-image {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
  background: var(--ivory);
}

.page-hero-copy {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero.has-image .page-hero-copy {
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 10vw, 150px) clamp(30px, 6vw, 92px);
}

.page-hero h1,
.page-section-heading h2,
.page-cta h2,
.image-story-copy h2,
.service-note h2,
.manifesto-section blockquote,
.founder-note h2,
.contact-details h2,
.quiz-intro h1,
.question-copy h1,
.quiz-result h1,
.legal-page h1,
.article-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.page-hero h1 {
  max-width: 1050px;
  font-size: clamp(62px, 7.2vw, 116px);
  line-height: 0.9;
}

.page-hero-copy > p:last-child {
  max-width: 650px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.7;
}

.page-hero-image {
  min-height: 720px;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-section {
  max-width: 1512px;
  margin: 0 auto;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 96px);
}

.page-section-heading {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
  margin-bottom: 88px;
}

.page-section-heading h2,
.page-cta h2,
.image-story-copy h2,
.service-note h2,
.founder-note h2,
.contact-details h2 {
  font-size: clamp(45px, 5.2vw, 80px);
  line-height: 0.98;
}

.process-list {
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 0.16fr 0.72fr 1.12fr;
  gap: clamp(24px, 5vw, 76px);
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--line);
}

.process-list article > span,
.values-page-grid article > span,
.policy-grid article > span {
  color: var(--gold-deep);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.process-list h3,
.principle-grid h3,
.wardrobe-detail-grid h3,
.values-page-grid h3,
.policy-grid h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 400;
  line-height: 1.08;
}

.process-list p,
.principle-grid p,
.wardrobe-detail-grid p,
.values-page-grid p,
.policy-grid p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.principle-section {
  max-width: none;
}

.principle-section .page-section-heading,
.principle-grid {
  max-width: 1320px;
  margin-inline: auto;
}

.principle-section .page-section-heading h2 { max-width: 850px; }
.principle-section .eyebrow, .founder-note .eyebrow { color: var(--gold); }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 239, 230, 0.2);
  border-left: 1px solid rgba(244, 239, 230, 0.2);
}

.principle-grid article {
  min-height: 280px;
  padding: 42px clamp(30px, 4vw, 58px);
  border-right: 1px solid rgba(244, 239, 230, 0.2);
  border-bottom: 1px solid rgba(244, 239, 230, 0.2);
}

.principle-grid p { margin-top: 30px; color: rgba(247, 242, 232, 0.72); }

.service-note {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 11vw, 170px);
  align-items: end;
}

.service-note > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.page-cta {
  text-align: center;
  background: var(--ivory-deep);
}

.page-cta h2 { max-width: 930px; margin: 0 auto; }
.page-cta > p:not(.eyebrow) { max-width: 620px; margin: 34px auto 44px; color: var(--muted); }
.page-cta .eyebrow { color: var(--gold-deep); }

.package-section { max-width: 1512px; }

.package-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
  margin-bottom: 78px;
}

.package-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 5.2vw, 80px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.package-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.package-card {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(28px, 4.8vw, 68px) 46px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.34);
}

.package-card.is-featured {
  position: relative;
  background: var(--paper);
  box-shadow: inset 0 3px 0 var(--gold);
}

.package-card-top { display: flex; justify-content: space-between; gap: 24px; color: var(--gold-deep); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.package-badge { min-height: 18px; margin: 18px 0 -32px; color: var(--gold-deep); font-size: 9px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.package-card h3 { margin: 64px 0 28px; font-family: var(--serif); font-size: clamp(38px, 3.5vw, 56px); font-weight: 400; line-height: 1; }
.package-payment-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.package-payment-grid > div { padding: 16px 12px 16px 0; }
.package-payment-grid > div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.package-payment-grid span { display: block; min-height: 28px; color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: 0.1em; line-height: 1.4; text-transform: uppercase; }
.package-payment-grid strong { display: block; margin-top: 7px; color: var(--gold-deep); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.package-description { max-width: 580px; margin: 28px 0 0; color: var(--muted); line-height: 1.8; }
.package-card ul { margin: 32px 0 40px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.package-card li { position: relative; padding: 12px 0 12px 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.package-card li::before { position: absolute; left: 0; content: "—"; color: var(--gold-deep); }
.package-link { align-self: flex-start; margin-top: auto; }
.programme-disclaimer { max-width: 1060px; margin: 36px 0 0 auto; color: var(--muted); font-size: 12px; line-height: 1.8; }

.programme-flow-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--espresso);
  color: var(--ivory);
}

.programme-flow-image { min-height: 760px; overflow: hidden; }
.programme-flow-image img { width: 100%; height: 100%; object-fit: cover; }
.programme-flow-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(80px, 9vw, 140px) clamp(34px, 7vw, 110px); }
.programme-flow-copy .eyebrow { color: var(--gold); }
.programme-flow-copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(45px, 5vw, 76px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.98; }
.programme-flow-copy > p:not(.eyebrow) { margin: 34px 0 0; color: rgba(247, 242, 232, 0.72); line-height: 1.85; }
.programme-flow-steps { margin-top: 48px; border-top: 1px solid rgba(247, 242, 232, 0.2); }
.programme-flow-steps > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(247, 242, 232, 0.2); }
.programme-flow-steps span { color: var(--gold); font-size: 10px; letter-spacing: 0.14em; }
.programme-flow-steps strong { font-size: 13px; font-weight: 500; }
.client-access-note { padding-top: 28px; border-top: 1px solid var(--gold-line); font-size: 12px; }
.payment-options-public { max-width: 1512px; }
.payment-option-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.payment-option-grid article { min-height: 300px; padding: 34px clamp(26px, 4vw, 52px) 42px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 253, 248, 0.42); }
.payment-option-grid article > span { color: var(--gold-deep); font-size: 10px; letter-spacing: 0.15em; }
.payment-option-grid h3 { margin: 62px 0 22px; font-family: var(--serif); font-size: clamp(30px, 3vw, 44px); font-weight: 400; line-height: 1.04; }
.payment-option-grid p, .payment-disclaimer { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.payment-disclaimer { max-width: 960px; margin: 34px 0 0 auto; font-size: 12px; }

.package-included {
  position: relative;
  background: var(--paper);
}

.package-included::before {
  position: absolute;
  content: "";
  inset: 0 0 auto;
  height: 62px;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background-image: var(--brand-pattern-image);
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 62px;
  opacity: 0.56;
}

.package-included .page-section-heading,
.package-principles,
.package-footnote { max-width: 1320px; margin-inline: auto; }
.package-principles { border-color: var(--line); }
.package-principles article { border-color: var(--line); }
.package-principles p { color: var(--muted); }
.package-footnote { margin-top: 38px; color: var(--muted); font-size: 12px; line-height: 1.8; }

.wardrobe-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.wardrobe-detail-grid article {
  min-height: 520px;
  padding: 40px clamp(28px, 5vw, 70px) 54px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wardrobe-detail-grid article > span { color: var(--gold-deep); font-size: 11px; letter-spacing: 0.16em; }
.wardrobe-detail-grid h3 { margin-top: 72px; font-size: clamp(38px, 4vw, 58px); }
.wardrobe-detail-grid p { margin-top: 28px; }
.wardrobe-detail-grid ul { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.wardrobe-detail-grid li { position: relative; padding: 13px 0 13px 20px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.wardrobe-detail-grid li::before { position: absolute; left: 0; content: "—"; color: var(--gold-deep); }

.image-story-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(70px, 12vw, 180px);
  align-items: end;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 6vw, 96px);
  background: var(--espresso);
  color: var(--ivory);
}

.image-story-copy h2 { max-width: 850px; }
.image-story-copy > p:last-child { max-width: 650px; margin: 38px 0 0; color: rgba(247, 242, 232, 0.7); font-size: 17px; }
.image-story-section .eyebrow { color: var(--gold); }
.image-story-facts { border-top: 1px solid rgba(244, 239, 230, 0.2); }
.image-story-facts > div { display: flex; justify-content: space-between; gap: 30px; padding: 19px 0; border-bottom: 1px solid rgba(244, 239, 230, 0.2); }
.image-story-facts span { color: var(--gold); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.image-story-facts strong { font-size: 13px; font-weight: 500; }

.manifesto-section { display: grid; grid-template-columns: 0.4fr 1.6fr; gap: clamp(50px, 9vw, 140px); }
.manifesto-section blockquote { margin: 0; font-size: clamp(42px, 5.7vw, 86px); line-height: 1; }
.heritage-section { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(60px, 12vw, 180px); align-items: center; padding: clamp(90px, 12vw, 180px) clamp(24px, 8vw, 130px); }
.heritage-crest { width: min(100%, 520px); aspect-ratio: 1; justify-self: center; border-radius: 50%; background: url("../images/aren-heritage-crest.png") no-repeat 50% 100% / 116% auto; box-shadow: 0 0 0 1px rgba(198, 167, 106, 0.18), 0 34px 80px rgba(0, 0, 0, 0.22); }
.heritage-section .eyebrow { color: var(--gold); }
.heritage-section h2 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 76px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.98; }
.heritage-section > div:last-child > p:last-child { max-width: 670px; margin: 34px 0 0; color: rgba(247, 242, 232, 0.72); font-size: 16px; line-height: 1.85; }

.values-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.values-page-grid article {
  min-height: 340px;
  padding: 34px 38px 44px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.values-page-grid h3 { margin-top: 70px; }
.values-page-grid p { margin-top: 23px; }

.founder-note {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(60px, 12vw, 180px);
  padding: clamp(100px, 13vw, 190px) clamp(24px, 6vw, 96px);
}

.founder-note > div:last-child { align-self: end; }
.founder-note > div:last-child p { color: rgba(247, 242, 232, 0.72); font-size: 16px; line-height: 1.85; }
.founder-note > div:last-child p + p { margin-top: 28px; }

.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); }
.journal-card { min-height: 540px; display: flex; flex-direction: column; padding: 38px clamp(26px, 3vw, 46px) 44px; background: var(--ivory); }
.journal-card-image { height: 220px; overflow: hidden; margin: -38px clamp(-46px, -3vw, -26px) 34px; background: var(--ivory-deep); }
.journal-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 280ms ease; }
.journal-card-image:hover img { transform: scale(1.02); }
.journal-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.journal-card h2 { margin: 90px 0 0; font-family: var(--serif); font-size: clamp(32px, 3.2vw, 48px); font-weight: 400; line-height: 1.02; }
.journal-card-image + .journal-meta + h2 { margin-top: 54px; }
.journal-card h2 a { color: inherit; }
.journal-card > p { margin: 30px 0 44px; color: var(--muted); font-size: 14px; }
.journal-card .text-link { margin-top: auto; align-self: flex-start; }
.journal-pagination { grid-column: 1 / -1; display: flex; justify-content: center; gap: 8px; padding: 28px; background: var(--paper); }
.journal-pagination .page-numbers, .pagination .page-numbers { display: inline-flex; min-width: 42px; min-height: 42px; align-items: center; justify-content: center; padding: 8px 13px; border: 1px solid var(--line); color: var(--espresso); font-size: 12px; }
.journal-pagination .current, .pagination .current { border-color: var(--gold-deep); background: var(--ivory-deep); }
.journal-empty { grid-column: 1 / -1; padding: clamp(70px, 10vw, 140px); background: var(--ivory); text-align: center; }
.journal-empty h2 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 5vw, 68px); font-weight: 400; }
.journal-empty p { color: var(--muted); }
.journal-signoff { padding: 72px 24px; text-align: center; background: var(--paper); }
.journal-signoff > p:last-child { max-width: 650px; margin: 0 auto; color: var(--muted); }

.article-page,
.legal-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(110px, 14vw, 190px) clamp(24px, 6vw, 90px);
}

.article-page header,
.legal-page header { max-width: 980px; padding-bottom: 78px; border-bottom: 1px solid var(--line); }
.article-page h1,
.legal-page h1 { font-size: clamp(58px, 7vw, 104px); line-height: 0.94; }
.article-page header > p:last-child,
.legal-page header > p:last-child { max-width: 710px; margin: 38px 0 0; color: var(--muted); font-size: 19px; line-height: 1.8; }
.article-body,
.legal-page > div { max-width: 760px; margin: 80px 0 0 auto; }
.article-body section,
.legal-page > div section { padding: 0 0 56px; margin-bottom: 56px; border-bottom: 1px solid var(--line); }
.article-body h2,
.legal-page h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.article-body p,
.legal-page > div p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.95; }
.article-page > footer { display: flex; justify-content: space-between; align-items: center; gap: 40px; margin-top: 90px; padding-top: 36px; border-top: 1px solid var(--line); }
.journal-article-header .journal-article-deck { max-width: 760px; margin-top: 36px; color: var(--muted); font-size: 19px; line-height: 1.75; }
.journal-byline { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.journal-featured-image { max-width: 980px; margin: 64px 0 0; }
.journal-featured-image img { width: 100%; height: auto; }
.journal-editor-content > p { margin: 0 0 28px; color: var(--muted); font-size: 17px; line-height: 1.95; }
.journal-editor-content > h2 { margin: 72px 0 24px; font-family: var(--serif); font-size: clamp(32px, 4vw, 48px); font-weight: 400; line-height: 1.08; }
.journal-editor-content > h3 { margin: 52px 0 20px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.journal-editor-content > ul, .journal-editor-content > ol { margin: 0 0 34px; padding-left: 22px; color: var(--muted); font-size: 16px; line-height: 1.8; }
.journal-editor-content a { color: var(--espresso); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.related-journal { max-width: 1320px; margin: 0 auto; border-top: 1px solid var(--line); }
.related-journal > h2 { max-width: 760px; }
.related-journal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 52px; background: var(--line); }
.related-journal-grid article { min-height: 260px; padding: 38px; background: var(--ivory); }
.related-journal-grid h3 { margin: 0; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 400; }
.related-journal-grid h3 a { color: inherit; }
.related-journal-grid p { color: var(--muted); line-height: 1.75; }
.aren-editor-content { padding-block: clamp(70px, 9vw, 120px); }
.aren-editor-content > * { max-width: 760px; margin-inline: auto; }
.aren-editor-content h2,
.aren-editor-content h3 { font-family: var(--serif); font-weight: 400; }
.aren-editor-content h2 { margin-top: 1.8em; font-size: clamp(32px, 4vw, 48px); }
.aren-editor-content p,
.aren-editor-content li { color: var(--muted); font-size: 17px; line-height: 1.9; }

.faq-list { padding-top: 40px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 0.12fr 1fr auto; gap: 30px; align-items: center; padding: 32px 0; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-deep); font-size: 10px; letter-spacing: 0.14em; }
.faq-list summary strong { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); font-weight: 400; }
.faq-list summary i { font-size: 22px; font-style: normal; font-weight: 300; transition: transform 180ms ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p,
.faq-list .faq-answer { max-width: 760px; margin: -8px 0 34px 12%; color: var(--muted); line-height: 1.85; }
.faq-list .faq-answer p { margin: 0 0 14px; }

.policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.policy-grid article { min-height: 350px; padding: 34px clamp(28px, 4vw, 56px) 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.policy-grid h2 { margin-top: 58px; }
.policy-grid p { margin-top: 24px; }
.legal-note { display: grid; grid-template-columns: 0.35fr 1.65fr; gap: 60px; padding: 60px clamp(24px, 6vw, 96px); background: var(--ivory-deep); }
.legal-note strong { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.legal-note p { max-width: 900px; margin: 0; color: var(--muted); }

.legal-page header .eyebrow { color: var(--gold-deep); }
.legal-page header > p:last-child { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

.contact-section { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(70px, 11vw, 160px); }
.contact-details h2 { font-size: clamp(40px, 4.5vw, 66px); }
.contact-details > p:not(.eyebrow) { margin: 30px 0; color: var(--muted); line-height: 1.85; }
.contact-form,
.quiz-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 24px; }
.contact-form label,
.quiz-fields label { display: flex; flex-direction: column; gap: 9px; }
.contact-form label > span,
.quiz-fields label > span { color: var(--muted); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-form input,
.contact-form select,
.contact-form textarea,
.quiz-fields input,
.quiz-fields select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 13px 0;
  color: var(--espresso);
  font-size: 16px;
}
.contact-form textarea { border: 1px solid var(--line); padding: 16px; resize: vertical; }
.full-field { grid-column: 1 / -1; }
.contact-form .button-link { border: 0; cursor: pointer; }
.aren-form-page-notice { padding: 16px 18px; border: 1px solid var(--line); background: var(--ivory-deep); color: var(--espresso); font-size: 13px; }
.aren-form-page-notice.is-error { border-color: rgba(150, 48, 42, .5); background: #fbefec; }

/* Quiz */
.quiz-intro {
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  background: var(--paper);
}

.quiz-intro-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(80px, 10vw, 150px) clamp(28px, 7vw, 110px); }
.quiz-intro h1 { max-width: 850px; font-size: clamp(60px, 7.3vw, 112px); line-height: 0.9; }
.quiz-intro-copy > p:not(.eyebrow) { max-width: 630px; margin: 36px 0 0; color: var(--muted); font-size: 18px; line-height: 1.8; }
.quiz-start { align-self: flex-start; margin-top: 50px; border: 0; cursor: pointer; }
.quiz-intro-aside { display: grid; grid-template-rows: repeat(3, 1fr); background: var(--espresso); color: var(--ivory); }
.quiz-intro-aside > div { display: grid; grid-template-columns: 0.25fr 0.8fr; align-content: center; column-gap: 30px; padding: 34px clamp(28px, 4vw, 62px); border-bottom: 1px solid rgba(244, 239, 230, 0.18); }
.quiz-intro-aside span { grid-row: 1 / 3; color: var(--gold); font-size: 11px; letter-spacing: 0.16em; }
.quiz-intro-aside h2 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.quiz-intro-aside p { margin: 12px 0 0; color: rgba(247, 242, 232, 0.7); font-size: 13px; }

.quiz-shell { min-height: calc(100svh - 88px); display: flex; flex-direction: column; padding: 26px clamp(24px, 6vw, 92px) 34px; background: var(--paper); }
.quiz-progress { display: grid; grid-template-columns: 0.4fr 1.2fr 0.4fr; gap: 40px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; letter-spacing: 0.1em; }
.quiz-progress > div:first-child { display: flex; gap: 7px; }
.quiz-progress > div:first-child span:first-child { color: var(--espresso); }
.progress-track { height: 2px; background: var(--ivory-deep); }
.progress-track span { display: block; height: 100%; background: var(--gold); transition: width 300ms ease; }
.quiz-progress button { justify-self: end; border: 0; background: transparent; color: var(--muted); font-size: 11px; text-transform: uppercase; cursor: pointer; }
.question-wrap { flex: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(60px, 10vw, 150px); padding: clamp(55px, 7vh, 92px) 0 48px; }
.question-copy h1 { max-width: 650px; font-size: clamp(48px, 5.2vw, 78px); line-height: 0.97; }
.question-copy > p:last-child { max-width: 520px; margin: 30px 0 0; color: var(--muted); }
.question-answer { align-self: center; }
.option-list { border-top: 1px solid var(--line); }
.quiz-option {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 0;
  padding: 18px 0 17px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  overflow: visible;
}
.option-marker { width: 22px; height: 22px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--paper); font-size: 12px; transition: background 150ms ease; }
.quiz-option.active .option-marker { background: var(--oxblood); border-color: var(--oxblood); }
.option-copy { min-width: 0; display: block; padding: 2px 0; }
.quiz-option strong { display: block; font-family: var(--serif); font-size: 23px; font-weight: 400; line-height: 1.3; overflow-wrap: anywhere; }
.quiz-option small { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.quiz-fields { align-items: end; }
.consent-field { grid-column: 1 / -1; flex-direction: row !important; align-items: flex-start; gap: 14px !important; margin-top: 10px; }
.consent-field input { width: 18px; flex: 0 0 18px; margin-top: 2px; }
.consent-field span { font-size: 11px !important; line-height: 1.6; letter-spacing: 0 !important; text-transform: none !important; }
.consent-field a { border-bottom: 1px solid currentColor; }
.contact-consent { grid-column: 1 / -1; display: flex !important; flex-direction: row !important; align-items: flex-start !important; gap: 12px !important; }
.contact-consent input { width: 18px !important; flex: 0 0 18px; margin-top: 2px; }
.contact-consent span { font-size: 12px !important; line-height: 1.6; letter-spacing: 0 !important; text-transform: none !important; }
.contact-consent a { border-bottom: 1px solid currentColor; }
.quiz-navigation { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); }
.quiz-back, .text-button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.quiz-back:disabled { opacity: 0.3; cursor: default; }
.quiz-next { border: 0; cursor: pointer; }
.quiz-next:disabled { opacity: 0.35; cursor: not-allowed; }
.quiz-error-summary {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid #9b3f35;
  background: rgba(155, 63, 53, 0.08);
  color: #713027;
  font-size: 13px;
  line-height: 1.55;
}
.quiz-error-summary[hidden] { display: none; }
.field-error {
  display: block;
  margin-top: 4px;
  color: #8a3128;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
}
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: #9b3f35 !important; }

.quiz-result { min-height: calc(100svh - 88px); padding: 28px clamp(24px, 6vw, 92px) 90px; background: var(--paper); }
.result-kicker { display: flex; justify-content: space-between; padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; }
.result-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(60px, 10vw, 150px); padding-top: clamp(70px, 9vw, 130px); }
.quiz-result h1 { font-size: clamp(56px, 7vw, 105px); line-height: 0.92; }
.quiz-result h1 em { color: var(--gold-deep); font-style: italic; }
.result-detail { align-self: end; }
.result-description { margin: 0 0 50px; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 36px); line-height: 1.25; }
.result-spec { display: grid; grid-template-columns: 0.45fr 1.55fr; gap: 25px; padding: 18px 0; border-top: 1px solid var(--line); }
.result-spec:last-of-type { border-bottom: 1px solid var(--line); }
.result-spec span { color: var(--muted); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
.result-spec strong { font-size: 13px; font-weight: 500; }
.result-actions { display: flex; align-items: center; gap: 30px; margin-top: 42px; }
.result-note { margin: 34px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

@media (max-width: 1000px) {
  .page-hero.has-image { grid-template-columns: 1fr; }
  .page-hero.has-image .page-hero-copy { min-height: 66svh; }
  .page-hero-image { min-height: 62vw; max-height: 720px; }
  .page-section-heading { grid-template-columns: 1fr; gap: 24px; }
  .process-list article { grid-template-columns: 0.14fr 0.7fr 1.16fr; gap: 28px; }
  .values-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card { min-height: 410px; }
  .contact-section { grid-template-columns: 1fr; }
  .quiz-intro { grid-template-columns: 1fr; }
  .quiz-intro-copy { min-height: 72svh; }
  .quiz-intro-aside { grid-template-columns: repeat(3, 1fr); grid-template-rows: none; }
  .quiz-intro-aside > div { display: block; border-right: 1px solid rgba(244, 239, 230, 0.18); }
  .quiz-intro-aside h2 { margin-top: 34px; }
  .question-wrap { grid-template-columns: 1fr; gap: 50px; }
  .result-grid { grid-template-columns: 1fr; }
  .package-heading { grid-template-columns: 1fr; gap: 30px; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card { min-height: 0; }
  .programme-flow-section { grid-template-columns: 1fr; }
  .programme-flow-image { min-height: 62vw; max-height: 720px; }
  .heritage-section { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .page-hero { min-height: 64svh; padding: 100px 24px 72px; }
  .page-hero.has-image { min-height: auto; }
  .page-hero.has-image .page-hero-copy { min-height: 72svh; padding: 90px 24px 70px; }
  .page-hero h1 { font-size: clamp(54px, 16vw, 74px); }
  .page-hero-image { min-height: 78vw; }
  .page-section { padding: 90px 24px; }
  .page-section-heading { margin-bottom: 54px; }
  .process-list article { grid-template-columns: 44px 1fr; gap: 18px; padding: 30px 0 34px; }
  .process-list article p { grid-column: 2; }
  .principle-grid,
  .payment-option-grid,
  .package-grid,
  .wardrobe-detail-grid,
  .policy-grid { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 240px; }
  .service-note,
  .image-story-section,
  .manifesto-section,
  .heritage-section,
  .founder-note,
  .legal-note { grid-template-columns: 1fr; gap: 36px; }
  .wardrobe-detail-grid article { min-height: 0; padding: 32px 24px 40px; }
  .package-card { min-height: 0; padding: 30px 24px 42px; }
  .payment-option-grid article { min-height: 0; padding: 30px 24px 40px; }
  .payment-option-grid h3 { margin-top: 46px; }
  .package-card h3 { margin-top: 48px; }
  .package-payment-grid strong { font-size: 22px; }
  .programme-flow-image { min-height: 76vw; }
  .programme-flow-copy { padding: 86px 24px; }
  .package-included::before { height: 48px; background-size: auto 48px; }
  .image-story-section { padding: 90px 24px; }
  .values-page-grid { grid-template-columns: 1fr; }
  .values-page-grid article { min-height: 290px; }
  .founder-note { padding: 90px 24px; }
  .heritage-section { padding: 90px 24px; }
  .heritage-crest { width: min(82vw, 430px); }
  .journal-card { min-height: 460px; padding: 30px 24px 38px; }
  .journal-card-image { margin: -30px -24px 30px; }
  .article-page,
  .legal-page { padding: 100px 24px; }
  .article-page h1,
  .legal-page h1 { font-size: clamp(50px, 14vw, 68px); }
  .article-body,
  .legal-page > div { margin-top: 60px; }
  .article-page > footer { align-items: flex-start; flex-direction: column; }
  .journal-byline { flex-direction: column; gap: 8px; }
  .related-journal-grid { grid-template-columns: 1fr; }
  .faq-list summary { grid-template-columns: 38px 1fr auto; gap: 10px; }
  .faq-list details > p,
  .faq-list .faq-answer { margin-left: 48px; }
  .contact-form,
  .quiz-fields { grid-template-columns: 1fr; }
  .full-field,
  .consent-field { grid-column: auto; }
  .quiz-intro-copy { min-height: calc(100svh - 72px); padding: 76px 24px; }
  .quiz-intro h1 { font-size: clamp(54px, 16vw, 76px); }
  .quiz-intro-aside { grid-template-columns: 1fr; }
  .quiz-intro-aside > div { min-height: 230px; border-right: 0; }
  .quiz-shell { min-height: calc(100svh - 72px); padding: 22px 24px 28px; }
  .quiz-progress { grid-template-columns: auto 1fr auto; gap: 18px; }
  .question-wrap { padding: 50px 0 44px; }
  .question-copy h1 { font-size: clamp(43px, 13vw, 58px); }
  .quiz-option {
    min-height: 76px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0 17px;
  }
  .quiz-option strong { font-size: 20px; line-height: 1.35; }
  .quiz-navigation { gap: 20px; }
  .quiz-next { padding-inline: 18px; gap: 18px; }
  .quiz-result { min-height: calc(100svh - 72px); padding: 22px 24px 78px; }
  .result-grid { padding-top: 70px; }
  .quiz-result h1 { font-size: clamp(49px, 14vw, 70px); }
  .result-spec { grid-template-columns: 1fr; gap: 8px; }
  .result-actions { align-items: flex-start; flex-direction: column; }
}

/* Private account */
.account-overview { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 0 clamp(24px, 6vw, 96px); background: var(--ivory); border-bottom: 1px solid var(--line); }
.account-overview article { min-height: 142px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 26px clamp(20px, 3vw, 44px); border-right: 1px solid var(--line); }
.account-overview article:first-child { border-left: 1px solid var(--line); }
.account-overview span { color: var(--muted); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; }
.account-overview strong { font-family: var(--serif); font-size: 58px; font-weight: 400; line-height: 1; }
.account-section { padding: clamp(90px, 11vw, 160px) clamp(24px, 6vw, 96px); background: var(--paper); }
.account-section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); gap: clamp(50px, 10vw, 150px); align-items: end; max-width: 1320px; margin: 0 auto 64px; }
.account-section-heading h2, .account-payment-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 76px); font-weight: 400; letter-spacing: -0.04em; line-height: 0.98; }
.account-section-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.account-order-list { max-width: 1320px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 0 auto; }
.account-order-list article { padding: 34px; border: 1px solid var(--line); background: var(--ivory); }
.order-card-title, .order-card-status { display: flex; justify-content: space-between; gap: 30px; }
.order-card-title { align-items: flex-start; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.order-card-title span { color: var(--muted); font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase; }
.order-card-title strong { font-family: var(--serif); font-size: 32px; font-weight: 400; line-height: 1; text-align: right; }
.order-card-status { align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.order-card-status span, .account-order-list dt { color: var(--muted); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; }
.order-card-status strong { color: var(--gold-deep); font-size: 12px; }
.account-order-list dl { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; }
.account-order-list dl > div { padding: 18px 12px 18px 0; }
.account-order-list dl > div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.account-order-list dt, .account-order-list dd { margin: 0; }
.account-order-list dd { margin-top: 8px; font-family: var(--serif); font-size: 19px; }
.account-empty { max-width: 1320px; margin: 0 auto; padding: clamp(42px, 6vw, 78px); border: 1px solid var(--line); background: var(--ivory); }
.account-empty h3 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 56px); font-weight: 400; }
.account-empty p { margin: 24px 0 30px; color: var(--muted); }
.account-payment-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr); gap: clamp(60px, 12vw, 180px); padding: clamp(90px, 12vw, 170px) clamp(24px, 6vw, 96px); background: var(--espresso); color: var(--ivory); }
.account-payment-section .eyebrow { color: var(--gold); }
.account-payment-section > div:first-child > p:last-child { max-width: 680px; margin: 34px 0 0; color: rgba(247, 242, 232, 0.72); }
.payment-method-list { align-self: end; border-top: 1px solid rgba(247, 242, 232, 0.2); }
.payment-method-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(247, 242, 232, 0.2); }
.payment-method-list span { color: var(--gold); font-size: 10px; }
.payment-method-list strong { font-size: 14px; font-weight: 500; }
.payment-method-list > p { margin: 28px 0 0; color: rgba(247, 242, 232, 0.58); font-size: 11px; }

/* Legacy private wardrobe */
.portal-login { min-height: calc(100svh - 88px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(60px, 9vw, 140px); background: var(--paper); }
.portal-login h1 { max-width: 880px; margin: 0; font-family: var(--serif); font-size: clamp(56px, 7vw, 102px); font-weight: 400; line-height: .94; }
.portal-login > p:not(.eyebrow) { max-width: 640px; color: var(--muted); }
.portal-hero { min-height: 520px; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: clamp(60px, 10vw, 160px); align-items: end; padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 96px) clamp(64px, 7vw, 104px); background: var(--espresso); color: var(--ivory); }
.portal-hero .eyebrow { color: var(--gold); }
.portal-hero h1 { max-width: 900px; margin: 0; font-family: var(--serif); font-size: clamp(62px, 7vw, 108px); font-weight: 400; letter-spacing: -.045em; line-height: .9; }
.portal-hero > div:first-child > p:last-child { max-width: 720px; margin: 36px 0 0; color: rgba(247, 242, 232, .72); font-size: 17px; }
.portal-identity { padding-top: 24px; border-top: 1px solid rgba(247, 242, 232, .22); }
.portal-identity span, .portal-identity strong, .portal-identity a { display: block; }
.portal-identity span { color: var(--gold); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.portal-identity strong { margin-top: 14px; overflow-wrap: anywhere; font-size: 13px; font-weight: 500; }
.portal-identity a { width: max-content; margin-top: 22px; border-bottom: 1px solid currentColor; color: rgba(247, 242, 232, .68); font-size: 12px; }
.wardrobe-library { padding: clamp(90px, 10vw, 150px) clamp(24px, 6vw, 96px) clamp(110px, 13vw, 190px); background: var(--paper); }
.wardrobe-library-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 60px; align-items: end; max-width: 1320px; margin: 0 auto 58px; }
.wardrobe-personal-head { margin-top: clamp(90px, 11vw, 150px); padding-top: 64px; border-top: 1px solid var(--line); }
.wardrobe-library-head h2 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(44px, 5vw, 76px); font-weight: 400; letter-spacing: -.04em; line-height: .98; }
.wardrobe-locked, .wardrobe-empty { max-width: 1320px; margin: 0 auto; border: 1px solid var(--line); background: var(--ivory); }
.wardrobe-locked { min-height: 380px; display: flex; align-items: center; padding: clamp(42px, 6vw, 86px); }
.wardrobe-locked h3, .wardrobe-empty h3 { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(34px, 4vw, 58px); font-weight: 400; line-height: 1.05; }
.wardrobe-locked div > p:last-child { max-width: 720px; margin: 28px 0 0; color: var(--muted); line-height: 1.8; }
.wardrobe-empty { min-height: 260px; display: flex; flex-direction: column; justify-content: center; padding: clamp(42px, 6vw, 86px); }
.wardrobe-upload-form { max-width: 1320px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 24px; margin: 0 auto 50px; padding: 38px; border: 1px solid var(--gold-line); background: var(--ivory); }
.wardrobe-upload-form label { display: flex; flex-direction: column; gap: 9px; }
.wardrobe-upload-form label > span { color: var(--muted); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.wardrobe-upload-form input, .wardrobe-upload-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; padding: 12px 0; color: var(--espresso); font: inherit; }
.wardrobe-upload-form textarea { border: 1px solid var(--line); padding: 14px; resize: vertical; }
.wardrobe-upload-form .full-field { grid-column: 1 / -1; }
.wardrobe-upload-form button { width: max-content; border: 0; cursor: pointer; }
.upload-image-field { padding: 18px; border: 1px dashed var(--gold-line); }
.garment-grid { max-width: 1320px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin: 0 auto; }
.garment-card { border: 1px solid var(--line); background: var(--ivory); }
.garment-image { aspect-ratio: .85; display: grid; place-items: center; overflow: hidden; background: var(--ivory-deep); }
.garment-image img { width: 100%; height: 100%; object-fit: cover; }
.garment-image span { color: var(--gold); font-family: var(--serif); font-size: 72px; }
.garment-image .garment-placeholder { width: 64px; height: 1px; background: var(--gold); }
.garment-meta { padding: 24px; }
.garment-meta > span { color: var(--gold-deep); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.garment-meta h3 { margin: 16px 0 8px; font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.05; }
.garment-meta p { margin: 0; color: var(--muted); font-size: 12px; }

@media (max-width: 1000px) {
  .portal-hero, .account-section-heading, .account-payment-section { grid-template-columns: 1fr; align-items: start; }
  .portal-identity { max-width: 520px; }
  .account-order-list { grid-template-columns: 1fr; }
  .garment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wardrobe-upload-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .portal-hero { min-height: auto; padding: 90px 24px 70px; }
  .portal-hero h1 { font-size: clamp(54px, 16vw, 76px); }
  .account-overview { grid-template-columns: 1fr; padding: 0 24px; }
  .account-overview article, .account-overview article:first-child { min-height: 98px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .account-overview strong { font-size: 44px; }
  .account-section, .account-payment-section { padding: 82px 24px; }
  .account-order-list article { padding: 26px 20px; }
  .order-card-title { align-items: flex-start; flex-direction: column; gap: 14px; }
  .order-card-title strong { text-align: left; }
  .account-order-list dl { grid-template-columns: repeat(2, 1fr); }
  .account-order-list dl > div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .account-order-list dl > div:nth-child(4) { border-top: 1px solid var(--line); }
  .wardrobe-library { padding: 86px 24px 110px; }
  .wardrobe-library-head { grid-template-columns: 1fr; margin-bottom: 44px; }
  .wardrobe-locked { min-height: 0; padding: 38px 26px 46px; }
  .wardrobe-upload-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .wardrobe-upload-form .full-field { grid-column: auto; }
  .garment-grid { grid-template-columns: 1fr; }
}
