/* ============================================================
   SHAYMUS LILLY — shaymuslilly.com
   Brand Strategist · Founder of shaped
   ============================================================ */

/* 1. FONTS
   ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;600&family=Manrope:wght@300;400;600&display=swap');

/* 2. CUSTOM PROPERTIES
   ──────────────────────────────────────────────────────────── */
:root {
  --sl-black:  #1C1A10;
  --sl-linen:  #F6F1E9;
  --sl-bone:   #EDE6D8;
  --sl-gold:   #B89060;
  --sl-steel:  #8C9199;
  --sl-serif:  "Cormorant Garamond", Garamond, serif;
  --sl-sans:   "Jost", "Helvetica Neue", sans-serif;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --dur:       0.4s;
  --max-w:     1280px;
  --gutter:    clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(7.5rem, 12vw, 9.5rem);
  --nav-h:     58px;

  /* Semantic aliases */
  --chassis-black: #1C1A10;
  --raw-linen:     #F6F1E9;
  --bone:          #EDE6D8;
  --silk-gold:     #B89060;
  --steel:         #8C9199;

  /* Aurora / shaped system */
  --sh-black:  #1C1A18;
  --sh-parch:  #F4F0E7;
  --sh-a1:     #FFAA00;
  --sh-a2:     #FF9500;
  --sh-a3:     #FF5C00;
  --sh-a4:     #CC1500;
  --sh-a5:     #7A0800;
  --sh-flare:  radial-gradient(
                 ellipse 120% 90% at 78% 15%,
                 #FFAA00 0%, #FF9500 18%,
                 #FF5C00 42%, #CC1500 68%,
                 #7A0800 88%, #1C1A18 100%);
  --sh-sans:   "Manrope", "Helvetica Neue", sans-serif;
}

/* 3. RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing:    border-box;
  margin:        0;
  padding:       0;
  border-radius: 0 !important;
}

html {
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior:         smooth;
}

body {
  background-color: var(--sl-linen);
  color:            var(--sl-black);
  font-family:      var(--sl-sans);
  font-weight:      300;
  font-size:        15px;
  line-height:      1.75;
}

img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul,
ol   { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }

::selection {
  background: var(--sl-gold);
  color:      var(--sl-linen);
}

/* 4. TYPOGRAPHY UTILITIES
   ──────────────────────────────────────────────────────────── */
.t-display {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(52px, 7vw, 80px);
  line-height:    1.02;
  letter-spacing: -0.01em;
}

.t-h1 {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(40px, 5.5vw, 56px);
  line-height:    1.08;
  letter-spacing: -0.01em;
}

.t-h2 {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-size:   clamp(30px, 4vw, 44px);
  line-height: 1.12;
}

.t-h3 {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-size:   clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}

.t-body {
  font-family:  var(--sl-sans);
  font-weight:  300;
  font-size:    clamp(15px, 1.2vw, 16px);
  line-height:  1.75;
}

.t-label {
  display:        flex;
  align-items:    center;
  gap:            0.75rem;
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
}

.t-label::before {
  content:     '';
  display:     block;
  width:       22px;
  height:      1px;
  background:  var(--sl-gold);
  flex-shrink: 0;
}

.t-steel  { color: var(--sl-steel); }
.t-italic { font-style: italic; }

/* 5. LAYOUT
   ──────────────────────────────────────────────────────────── */
.wrap {
  max-width:     var(--max-w);
  margin:        0 auto;
  padding-left:  var(--gutter);
  padding-right: var(--gutter);
}

.section {
  padding-top:    var(--section-y);
  padding-bottom: var(--section-y);
}

.section--bone  { background-color: var(--sl-bone); }
.section--black { background-color: var(--sl-black); color: var(--sl-linen); }

/* 6. NAVIGATION
   ──────────────────────────────────────────────────────────── */
/* header/nav base */
header { background: var(--sl-linen); }

.nav {
  position:      fixed;
  inset-inline:  0;
  top:           0;
  z-index:       100;
  height:        var(--nav-h);
  background:    var(--sl-linen);
  border-bottom: 1px solid rgba(28,26,16,0.08);
  transition:    border-color var(--dur) var(--ease),
                 box-shadow var(--dur) var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: rgba(28,26,16,0.14);
  box-shadow: 0 1px 24px rgba(28,26,16,0.05);
}

.nav__inner {
  max-width:       var(--max-w);
  margin:          0 auto;
  padding:         0 48px;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             2rem;
}

/* Logo */
.nav__logo {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo img {
  height:    16px;
  width:     auto;
  max-width: none;
  display:   block;
}

.nav__logo-text {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      24px;
  letter-spacing: 0.06em;
  color:          var(--sl-black);
  line-height:    1;
}

/* Desktop links */
.nav__links {
  display:     flex;
  align-items: center;
  gap:         2rem;
}

.nav__link {
  font-family:    var(--sl-sans);
  font-weight:    400;
  font-size:      12px;
  letter-spacing: 0.08em;
  color:          rgba(28,26,16,0.70);
  transition:     color var(--dur) var(--ease),
                  opacity var(--dur) var(--ease);
  text-decoration: none;
}

.nav__link:hover     { color: var(--sl-black); }
.nav__link.is-active { color: var(--sl-gold); }

.nav__method {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  padding:        0.35rem 0.75rem;
  border:         1px solid rgba(184,144,96,0.45);
  transition:     background var(--dur) var(--ease),
                  color var(--dur) var(--ease);
  white-space:    nowrap;
}

.nav__method:hover {
  background: var(--sl-gold);
  color:      var(--sl-linen);
}

.nav__cta { flex-shrink: 0; margin-left: 1rem; }

/* Mobile toggle */
.nav__toggle {
  display:        none;
  flex-direction: column;
  gap:            5px;
  padding:        4px;
}

.nav__toggle span {
  display:    block;
  width:      22px;
  height:     1px;
  background: var(--sl-black);
  transition: transform var(--dur) var(--ease),
              opacity var(--dur) var(--ease);
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  transform: rotate(-45deg);
}

/* Mobile drawer */
.nav__drawer {
  position:      fixed;
  top:           var(--nav-h);
  inset-inline:  0;
  background:    var(--sl-linen);
  border-bottom: 1px solid rgba(28,26,16,0.10);
  padding:       2rem var(--gutter) 2.5rem;
  z-index:       99;
  display:       none;
}

.nav__drawer.is-open { display: block; }

.nav__drawer-links {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
  margin-bottom:  2rem;
}

.nav__drawer-links .nav__link { font-size: 16px; }
.nav__drawer-links .nav__method { align-self: flex-start; }

/* 7. BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn {
  display:        inline-flex;
  align-items:    center;
  gap:            0.5rem;
  font-family:    var(--sl-sans);
  font-weight:    500;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding:        10px 20px;
  white-space:    nowrap;
  transition:     background var(--dur) var(--ease),
                  color var(--dur) var(--ease),
                  border-color var(--dur) var(--ease);
}

.btn--primary {
  background:   var(--sl-black);
  color:        var(--sl-linen);
  border:       1px solid var(--sl-black);
}
.btn--primary:hover {
  background:   var(--sl-gold);
  border-color: var(--sl-gold);
  color:        var(--sl-linen);
}

.btn--outline {
  background:   transparent;
  color:        var(--sl-black);
  border:       1px solid var(--sl-black);
}
.btn--outline:hover {
  background: var(--sl-black);
  color:      var(--sl-linen);
}

.btn--outline-linen {
  background:   transparent;
  color:        var(--sl-linen);
  border:       1px solid rgba(246,241,233,0.4);
}
.btn--outline-linen:hover {
  background:   var(--sl-linen);
  color:        var(--sl-black);
  border-color: var(--sl-linen);
}

.link-arrow {
  display:      inline-flex;
  align-items:  center;
  gap:          0.45rem;
  font-family:  var(--sl-sans);
  font-weight:  400;
  font-size:    13px;
  letter-spacing: 0.03em;
  color:        var(--sl-gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition:   border-color var(--dur) var(--ease),
                gap var(--dur) var(--ease);
}
.link-arrow:hover {
  border-bottom-color: var(--sl-gold);
  gap: 0.7rem;
}

/* 8. LABELS & DIVIDERS
   ──────────────────────────────────────────────────────────── */
.label {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
}

.rule {
  display:    block;
  width:      40px;
  height:     1px;
  background: var(--sl-gold);
}

.rule--full {
  width: 100%;
  height: 1px;
  background: rgba(28,26,16,0.10);
}

.rule--gold-full {
  width:      100%;
  height:     1px;
  background: var(--sl-gold);
  opacity:    0.22;
}

/* 9. FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  background:  var(--sl-linen);
  color:       var(--sl-black);
  border-top:  1px solid rgba(28,26,16,0.10);
  padding:     clamp(4rem, 7vw, 6rem) var(--gutter);
}

.footer__grid {
  max-width:   var(--max-w);
  margin:      0 auto;
  display:     grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap:         3rem 4rem;
  align-items: start;
}

.footer__brand {}

.footer__logo-text {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     28px;
  color:         var(--sl-black);
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family:    var(--sl-sans);
  font-weight:    300;
  font-size:      11px;
  letter-spacing: 0.04em;
  color:          var(--sl-steel);
  line-height:    1.65;
  max-width:      280px;
}

.footer__col-label {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  margin-bottom:  1.25rem;
  display:        block;
}

.footer__nav-links {
  display:        flex;
  flex-direction: column;
  gap:            0.7rem;
}

.footer__nav-links a {
  font-family:    var(--sl-sans);
  font-weight:    400;
  font-size:      12px;
  letter-spacing: 0.08em;
  color:          rgba(28,26,16,0.70);
  transition:     color var(--dur) var(--ease);
}
.footer__nav-links a:hover { color: var(--sl-black); }

.footer__contact-stack {
  display:        flex;
  flex-direction: column;
  gap:            0.75rem;
}

.footer__contact-line {
  font-family:    var(--sl-sans);
  font-weight:    400;
  font-size:      12px;
  letter-spacing: 0.08em;
  color:          rgba(28,26,16,0.70);
  transition:     color var(--dur) var(--ease);
}
.footer__contact-line:hover { color: var(--sl-gold); }

.footer__bottom {
  max-width:     var(--max-w);
  margin:        3rem auto 0;
  padding-top:   2rem;
  border-top:    1px solid rgba(28,26,16,0.10);
  display:       flex;
  align-items:   center;
  justify-content: space-between;
  gap:           2rem;
}

.footer__copy {
  font-family:    var(--sl-sans);
  font-weight:    300;
  font-size:      10px;
  color:          var(--sl-steel);
  letter-spacing: 0.04em;
}

.footer__shaped-link {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  padding:        0.35rem 0.75rem;
  border:         1px solid rgba(184,144,96,0.35);
  transition:     border-color var(--dur) var(--ease);
}
.footer__shaped-link:hover { border-color: var(--sl-gold); }

/* ============================================================
   10. HOMEPAGE
   ============================================================ */

/* Hero ──────────────────────────────────── */
.hero {
  padding-top:    calc(var(--nav-h) + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.hero__inner {
  max-width:   var(--max-w);
  margin:      0 auto;
  padding:     0 var(--gutter);
  display:     grid;
  grid-template-columns: 1fr 460px;
  gap:         4rem 5rem;
  align-items: start;
}

.hero__content {
  display:        flex;
  flex-direction: column;
  padding-top:    1.5rem;
}

.hero__label { margin-bottom: 1.75rem; }

.hero__headline {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(52px, 7vw, 80px);
  line-height:    1.02;
  letter-spacing: -0.01em;
  color:          var(--sl-black);
}

.hero__headline em {
  font-style: italic;
  display:    block;
}

.hero__rule {
  display:    block;
  width:      56px;
  height:     1px;
  background: var(--sl-gold);
  margin:     2.5rem 0;
}

.hero__tagline {
  font-family:   var(--sl-sans);
  font-weight:   300;
  font-size:     clamp(15px, 1.3vw, 17px);
  line-height:   1.75;
  color:         var(--sl-steel);
  max-width:     400px;
  margin-bottom: 2.75rem;
}

/* Hero photo placeholder */
.hero__photo {
  position:     relative;
  background:   var(--sl-bone);
  min-height:   560px;
  overflow:     hidden;
  border:       1px solid rgba(28,26,16,0.08);
  display:      flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__photo img {
  position:        absolute;
  inset:           0;
  width:           100%;
  height:          100%;
  object-fit:      cover;
  object-position: center top;
}

.hero__photo-label {
  position:       relative;
  z-index:        1;
  padding:        1.25rem;
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      8px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-steel);
}

/* Beliefs ──────────────────────────────── */
.beliefs__header { margin-bottom: 3.5rem; }

.beliefs__grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   0;
  border-top:            1px solid rgba(28,26,16,0.12);
}

.belief {
  padding:  3rem 2.5rem 3rem 0;
  position: relative;
}

.belief + .belief {
  padding-left: 2.5rem;
}

.belief + .belief::before {
  content:          '';
  position:         absolute;
  left:             0;
  top:              3rem;
  bottom:           3rem;
  width:            1px;
  background-color: rgba(184,144,96,0.25);
}

.belief__num {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  margin-bottom:  1.5rem;
  display:        block;
}

.belief__title {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     clamp(18px, 2vw, 24px);
  line-height:   1.2;
  color:         var(--sl-black);
  margin-bottom: 0.875rem;
}

.belief__body {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   13.5px;
  line-height: 1.75;
  color:       var(--sl-steel);
}

/* Translation ──────────────────────────── */
.translation__inner {
  display:     grid;
  grid-template-columns: 160px 1fr;
  gap:         4rem;
  align-items: start;
}

.translation__aside { padding-top: 0.25rem; }

.translation__aside-label { margin-bottom: 1.25rem; }

.translation__aside-rule {
  display:    block;
  width:      1px;
  height:     60px;
  background: var(--sl-gold);
  opacity:    0.4;
  margin-top: 1.5rem;
}

.translation__body { max-width: 680px; }

.translation__pull {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     clamp(28px, 3.5vw, 42px);
  line-height:   1.18;
  color:         var(--sl-black);
  margin-bottom: 2rem;
}
.translation__pull em { font-style: italic; }

.translation__text {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   15px;
  line-height: 1.85;
  color:       var(--sl-black);
}

/* shaped intro ──────────────────────────── */
.shaped-intro__inner {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         5rem 7rem;
  align-items: start;
}

.shaped-intro__label { margin-bottom: 1.5rem; }

.shaped-intro__headline {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     clamp(32px, 4vw, 48px);
  line-height:   1.08;
  color:         var(--sl-black);
  margin-bottom: 1.5rem;
}
.shaped-intro__headline em { font-style: italic; }

.shaped-intro__text {
  font-family:   var(--sl-sans);
  font-weight:   300;
  font-size:     15px;
  line-height:   1.8;
  color:         var(--sl-steel);
  margin-bottom: 2.25rem;
}

.shaped-intro__ctas {
  display:     flex;
  align-items: center;
  gap:         1.75rem;
  flex-wrap:   wrap;
}

/* Stages list (on homepage shaped intro) */
.stages-mini {
  display:        flex;
  flex-direction: column;
  padding-top:    0.5rem;
}

.stages-mini-item {
  display:       flex;
  align-items:   baseline;
  gap:           1rem;
  padding:       1.1rem 0;
  border-bottom: 1px solid rgba(28,26,16,0.08);
}
.stages-mini-item:first-child { border-top: 1px solid rgba(28,26,16,0.08); }

.stages-mini-item__num {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  min-width:      2rem;
}

.stages-mini-item__name {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-size:   22px;
  color:       var(--sl-black);
}

/* CTA close ──────────────────────────────── */
.cta-close__inner {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            2.75rem;
}

.cta-close__headline {
  font-family:  var(--sl-serif);
  font-weight:  300;
  font-size:    clamp(34px, 4.5vw, 56px);
  line-height:  1.1;
  color:        var(--sl-linen);
  max-width:    700px;
}
.cta-close__headline em {
  font-style: italic;
  color:      var(--sl-gold);
}

/* ============================================================
   11. ABOUT PAGE
   ============================================================ */

/* Page hero (shared) */
.page-hero {
  padding-top:    calc(var(--nav-h) + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.page-hero__label { margin-bottom: 1.5rem; }

.page-hero__headline {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(42px, 5.5vw, 64px);
  line-height:    1.05;
  letter-spacing: -0.01em;
  color:          var(--sl-black);
  max-width:      820px;
}
.page-hero__headline em { font-style: italic; }

/* Story */
.about-story__inner {
  display:     grid;
  grid-template-columns: 180px 1fr;
  gap:         3rem 5rem;
  align-items: start;
}

.about-story__aside {
  position:  sticky;
  top:       calc(var(--nav-h) + 2.5rem);
}

.about-story__aside-label { margin-bottom: 1.25rem; }

.about-story__aside-num {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-size:   72px;
  line-height: 1;
  color:       var(--sl-bone);
}

.about-story__content {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
}

.about-story__content p {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   15px;
  line-height: 1.85;
  color:       var(--sl-black);
}

.about-pull {
  font-family:  var(--sl-serif);
  font-weight:  300;
  font-size:    clamp(22px, 2.5vw, 30px);
  line-height:  1.3;
  color:        var(--sl-black);
  border-left:  2px solid var(--sl-gold);
  padding-left: 1.75rem;
  margin:       0.5rem 0;
}

/* Principles */
.about-principles__header { margin-bottom: 3.5rem; }

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.principle {
  padding: 2.75rem;
  border:  1px solid rgba(28,26,16,0.10);
}
.principle:nth-child(odd)            { border-right: none; }
.principle:nth-child(1),
.principle:nth-child(2)              { border-bottom: none; }

.principle__num {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  margin-bottom:  1.5rem;
  display:        block;
}

.principle__title {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     clamp(20px, 2.2vw, 28px);
  line-height:   1.2;
  color:         var(--sl-black);
  margin-bottom: 1rem;
}

.principle__body {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   14px;
  line-height: 1.8;
  color:       var(--sl-black);
  opacity:     0.7;
}

/* ============================================================
   12. SHAPED PAGE
   ============================================================ */

.shaped-page-hero {
  padding-top:    calc(var(--nav-h) + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 7vw, 6rem);
}

.shaped-page-hero__label { margin-bottom: 1.5rem; }

.shaped-page-hero__headline {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     clamp(42px, 5.5vw, 64px);
  line-height:   1.05;
  letter-spacing: -0.01em;
  color:         var(--sl-black);
  max-width:     780px;
  margin-bottom: 1.75rem;
}
.shaped-page-hero__headline em { font-style: italic; }

.shaped-page-hero__lead {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   clamp(15px, 1.3vw, 17px);
  line-height: 1.8;
  color:       var(--sl-steel);
  max-width:   600px;
}

/* Stages full list */
.stages-full__header { margin-bottom: 3.5rem; }

.stages-full-list {
  display:        flex;
  flex-direction: column;
}

.stages-full-item {
  display:     grid;
  grid-template-columns: 80px 1fr 1fr;
  gap:         2rem 4rem;
  align-items: start;
  padding:     2.5rem 0;
  border-top:  1px solid rgba(28,26,16,0.10);
  transition:  background var(--dur) var(--ease);
}
.stages-full-item:last-child { border-bottom: 1px solid rgba(28,26,16,0.10); }

.stages-full-item__num {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  padding-top:    0.5rem;
}

.stages-full-item__name {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-size:   clamp(26px, 3vw, 36px);
  line-height: 1.1;
  color:       var(--sl-black);
}

.stages-full-item__desc {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   14px;
  line-height: 1.8;
  color:       var(--sl-steel);
  padding-top: 0.25rem;
}

/* Stage gate */
.shaped-gate__inner {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         4rem 7rem;
  align-items: start;
}

.shaped-gate__label { margin-bottom: 1.5rem; }

.shaped-gate__headline {
  font-family:   var(--sl-serif);
  font-weight:   300;
  font-size:     clamp(30px, 3.5vw, 44px);
  line-height:   1.12;
  color:         var(--sl-black);
  margin-bottom: 1.5rem;
}

.shaped-gate__body {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   15px;
  line-height: 1.85;
  color:       var(--sl-steel);
}

.shaped-gate__visual {
  background: var(--sl-bone);
  padding:    2.5rem;
  border:     1px solid rgba(28,26,16,0.08);
}

.gate-steps {
  display:        flex;
  flex-direction: column;
  gap:            0;
}

.gate-step {
  display:       flex;
  align-items:   center;
  gap:           1.25rem;
  padding:       1.25rem 0;
  border-bottom: 1px solid rgba(28,26,16,0.10);
}
.gate-step:last-child { border-bottom: none; }

.stage-symbol {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      12px;
  color:          var(--sl-gold);
  letter-spacing: 0.22em;
  display:        block;
  line-height:    1;
  margin-bottom:  0.5rem;
}

.gate-step .stage-symbol {
  display:       inline;
  margin-bottom: 0;
  flex-shrink:   0;
  min-width:     18px;
}

.gate-step__text {
  font-family:  var(--sl-serif);
  font-weight:  300;
  font-size:    20px;
  color:        var(--sl-black);
  flex-grow:    1;
}

.gate-step__badge {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color:          var(--sl-linen);
  background:     var(--sl-gold);
  padding:        0.2rem 0.55rem;
}

/* Shaped CTAs */
.shaped-ctas__inner {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            2.25rem;
}

.shaped-ctas__headline {
  font-family:  var(--sl-serif);
  font-weight:  300;
  font-size:    clamp(30px, 3.5vw, 44px);
  line-height:  1.12;
  color:        var(--sl-linen);
  max-width:    600px;
}
.shaped-ctas__headline em { font-style: italic; color: var(--sl-gold); }

.shaped-ctas__btns {
  display:     flex;
  align-items: center;
  gap:         1.5rem;
  flex-wrap:   wrap;
}

/* ============================================================
   13. CONTACT PAGE
   ============================================================ */

.contact-section {
  padding-top:    calc(var(--nav-h) + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.contact-section__inner {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         4rem 7rem;
  align-items: start;
}

.contact-info__label { margin-bottom: 1.5rem; }

.contact-info__headline {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(38px, 5vw, 56px);
  line-height:    1.08;
  letter-spacing: -0.01em;
  color:          var(--sl-black);
  margin-bottom:  1.25rem;
}

.contact-info__subhead {
  font-family:   var(--sl-sans);
  font-weight:   300;
  font-size:     15px;
  line-height:   1.75;
  color:         var(--sl-steel);
  margin-bottom: 3rem;
  max-width:     380px;
}

.contact-details {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

.contact-detail {}

.contact-detail__label {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  display:        block;
  margin-bottom:  0.3rem;
}

.contact-detail__value {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   15px;
  color:       var(--sl-black);
  transition:  color var(--dur) var(--ease);
}
.contact-detail__value:hover { color: var(--sl-gold); }

/* Form */
.form {
  display:        flex;
  flex-direction: column;
  gap:            1.5rem;
}

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

.form-label {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
}

.form-input,
.form-textarea {
  font-family:  var(--sl-sans);
  font-weight:  300;
  font-size:    14px;
  color:        var(--sl-black);
  background:   transparent;
  border:       1px solid rgba(28,26,16,0.18);
  padding:      0.9rem 1rem;
  width:        100%;
  outline:      none;
  transition:   border-color var(--dur) var(--ease);
  appearance:   none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color:   var(--sl-steel);
  opacity: 0.65;
}

.form-input:focus,
.form-textarea:focus { border-color: var(--sl-gold); }

.form-textarea {
  min-height:  140px;
  resize:      vertical;
  line-height: 1.65;
}

/* ============================================================
   14. RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero__photo {
    min-height: 420px;
    max-width:  460px;
  }
  .shaped-intro__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .shaped-gate__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stages-full-item {
    grid-template-columns: 70px 1fr;
  }
  .stages-full-item__desc { display: none; }
}

@media (max-width: 900px) {
  .beliefs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .belief:nth-child(3) {
    padding-left: 0;
  }
  .belief:nth-child(3)::before {
    display: none;
  }
  .belief:nth-child(3),
  .belief:nth-child(4) {
    border-top: 1px solid rgba(28,26,16,0.10);
  }

  .translation__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .translation__aside-rule { display: none; }

  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story__aside {
    position: static;
    display:  flex;
    align-items: baseline;
    gap: 1.5rem;
  }
  .about-story__aside-num { font-size: 40px; }

  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principle:nth-child(odd)  { border-right: 1px solid rgba(28,26,16,0.10); }
  .principle:nth-child(1),
  .principle:nth-child(2)    { border-bottom: 1px solid rgba(28,26,16,0.10); }

  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links,
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .beliefs__grid {
    grid-template-columns: 1fr;
  }
  .belief {
    border-top:    1px solid rgba(28,26,16,0.10);
    padding-right: 0;
  }
  .belief + .belief {
    padding-left: 0;
  }
  .belief + .belief::before {
    display: none;
  }
  .belief:nth-child(1) { border-top: none; }

  .stages-full-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem 2rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items:    flex-start;
  }
}

@media (max-width: 520px) {
  .hero__photo { min-height: 320px; }

  .principle {
    border:        none;
    border-bottom: 1px solid rgba(28,26,16,0.10);
    padding-left:  0;
    padding-right: 0;
  }
  .principle:nth-child(odd)   { border-right: none; }
  .principle:nth-child(1),
  .principle:nth-child(2)     { border-bottom: 1px solid rgba(28,26,16,0.10); }

  .shaped-ctas__btns { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FRAMEWORK PAGE
   ============================================================ */

.framework-intro__grid {
  display:     grid;
  grid-template-columns: 1fr 1.4fr;
  gap:         5rem 7rem;
  align-items: start;
}

.framework-intro__pull {
  font-family:  var(--sl-serif);
  font-weight:  300;
  font-size:    clamp(28px, 3.5vw, 40px);
  line-height:  1.2;
  color:        var(--sl-black);
}
.framework-intro__pull em { font-style: italic; }

.framework-intro__body {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}
.framework-intro__body p {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   15px;
  line-height: 1.85;
  color:       var(--sl-black);
}

/* Stage sections */
.stage-section {
  padding-top:    var(--section-y);
  padding-bottom: var(--section-y);
  border-top:     1px solid rgba(28,26,16,0.10);
}

.stage-section:first-of-type { border-top: none; }

.stage-layout {
  display:     grid;
  grid-template-columns: 180px 1fr;
  gap:         3rem 6rem;
  align-items: start;
}

.stage-left {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            1.25rem;
  position:       sticky;
  top:            calc(var(--nav-h) + 2.5rem);
}

.stage-num {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
}

.stage-shape-lg {
  width:  72px;
  height: 72px;
  color:  var(--sl-black);
}

.stage-content {
  display:        flex;
  flex-direction: column;
  gap:            1.25rem;
}

.stage-content .t-label { margin-bottom: 0.25rem; }

.stage-content h2 {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(34px, 4vw, 52px);
  line-height:    1.08;
  letter-spacing: -0.01em;
  color:          var(--sl-black);
}

.stage-content p {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   15px;
  line-height: 1.85;
  color:       var(--sl-black);
  max-width:   600px;
}

.stage-outcomes {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  border-top:  1px solid rgba(28,26,16,0.10);
  margin-top:  0.5rem;
}

.stage-outcomes li {
  font-family:   var(--sl-sans);
  font-weight:   300;
  font-size:     14px;
  line-height:   1.7;
  color:         var(--sl-steel);
  padding:       0.8rem 0 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(28,26,16,0.08);
  position:      relative;
}
.stage-outcomes li::before {
  content:  '—';
  position: absolute;
  left:     0;
  color:    var(--sl-gold);
}

/* Framework strip */
.framework-strip {
  background:  var(--sl-bone);
  padding:     clamp(3rem, 5vw, 4.5rem) var(--gutter);
}

.framework-strip__inner {
  max-width:   var(--max-w);
  margin:      0 auto;
  display:     grid;
  grid-template-columns: repeat(5, 1fr);
  gap:         1.5rem;
}

.strip-stage {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            0.75rem;
}

.strip-stage svg {
  width:  32px;
  height: 32px;
  color:  var(--sl-black);
}

.strip-stage__name {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-size:   20px;
  color:       var(--sl-black);
}

/* ============================================================
   WORK WITH US PAGE
   ============================================================ */

.ww-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:     1.5rem;
}

.ww-card {
  background:   var(--sl-linen);
  border:       1px solid rgba(28,26,16,0.12);
  padding:      2.75rem;
  display:      flex;
  flex-direction: column;
  gap:          0.875rem;
}

.ww-card--featured {
  background:   var(--sl-black);
  color:        var(--sl-linen);
  border-color: var(--sl-black);
}

.ww-card__eyebrow {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  display:        block;
}

.ww-card__title {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(24px, 2.8vw, 34px);
  line-height:    1.1;
  letter-spacing: -0.01em;
  color:          var(--sl-black);
}
.ww-card--featured .ww-card__title { color: var(--sl-linen); }

.ww-card__desc {
  font-family: var(--sl-sans);
  font-weight: 300;
  font-size:   14px;
  line-height: 1.8;
  color:       var(--sl-steel);
}
.ww-card--featured .ww-card__desc { color: rgba(246,241,233,0.6); }

.ww-includes {
  list-style:  none;
  display:     flex;
  flex-direction: column;
  border-top:  1px solid rgba(28,26,16,0.10);
  flex-grow:   1;
}
.ww-card--featured .ww-includes { border-top-color: rgba(246,241,233,0.12); }

.ww-includes li {
  font-family:   var(--sl-sans);
  font-weight:   300;
  font-size:     13px;
  line-height:   1.7;
  color:         var(--sl-steel);
  padding:       0.6rem 0;
  border-bottom: 1px solid rgba(28,26,16,0.07);
}
.ww-card--featured .ww-includes li {
  color:         rgba(246,241,233,0.55);
  border-bottom-color: rgba(246,241,233,0.08);
}

.ww-includes .ww-includes__label {
  font-family:    var(--sl-sans);
  font-weight:    600;
  font-size:      9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color:          var(--sl-gold);
  border-bottom:  none;
  padding-bottom: 0;
}

.ww-price {
  font-family:    var(--sl-sans);
  font-size:      13px;
  font-weight:    600;
  letter-spacing: 0.1em;
  color:          var(--sl-gold);
  margin-top:     0.25rem;
}

.ww-fit-grid {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         4rem 7rem;
  align-items: start;
}

.ww-fit-list {
  list-style:     none;
  display:        flex;
  flex-direction: column;
}
.ww-fit-list li {
  font-family:   var(--sl-sans);
  font-weight:   300;
  font-size:     14px;
  line-height:   1.75;
  color:         var(--sl-black);
  padding:       0.8rem 0 0.8rem 1.25rem;
  border-bottom: 1px solid rgba(28,26,16,0.08);
  position:      relative;
}
.ww-fit-list li::before {
  content:  '—';
  position: absolute;
  left:     0;
  color:    var(--sl-gold);
}

.ww-note {
  background:   var(--sl-bone);
  padding:      2rem;
  margin-top:   2rem;
  border-left:  2px solid var(--sl-gold);
}
.ww-note p {
  font-family: var(--sl-serif);
  font-weight: 300;
  font-style:  italic;
  font-size:   clamp(18px, 2vw, 22px);
  line-height: 1.45;
  color:       var(--sl-black);
  margin-bottom: 0.75rem;
}
.ww-note .ww-attribution {
  font-family:    var(--sl-sans);
  font-weight:    400;
  font-style:     normal;
  font-size:      12px;
  color:          var(--sl-steel);
  letter-spacing: 0.03em;
}

/* ── Responsive additions ─────────────────────────── */
@media (max-width: 1024px) {
  .framework-intro__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage-layout           { grid-template-columns: 120px 1fr; gap: 2rem 3rem; }
  .stage-left             { position: static; }
  .ww-fit-grid            { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .ww-grid                { grid-template-columns: 1fr; }
  .framework-strip__inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .stage-layout           { grid-template-columns: 1fr; }
  .stage-left             { flex-direction: row; align-items: center; }
  .framework-strip__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PHOTOGRAPHY — GLOBAL IMAGE CLASSES
   ============================================================ */

/* Shared image rule */
.hero__image img,
.about__portrait img,
.about__working img,
.shaped__detail img,
.page__hero-image img {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  display:     block;
}

/* Hero image panel */
.hero__image {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

/* About portrait — 4:5 */
.about__portrait {
  aspect-ratio: 4 / 5;
  overflow:     hidden;
}

/* Working session — 16:9 */
.about__working {
  aspect-ratio: 16 / 9;
  overflow:     hidden;
  margin:       48px 0;
}

/* Hands detail — square */
.shaped__detail {
  aspect-ratio: 1 / 1;
  overflow:     hidden;
  max-width:    480px;
  margin:       48px auto;
}

/* Flatlay hero — square */
.page__hero-image {
  aspect-ratio: 1 / 1;
  overflow:     hidden;
  max-width:    600px;
  margin:       0 auto 64px;
}

/* CTA background image */
.cta-close {
  position: relative;
  overflow: hidden;
}

.cta__bg-image {
  position: absolute;
  top: 0; left: 0;
  width:    100%;
  height:   100%;
  z-index:  0;
  overflow: hidden;
}

.cta__bg-image img {
  width:       100%;
  height:      100%;
  object-fit:  cover;
  opacity:     0.12;
  display:     block;
}

.cta-close > *:not(.cta__bg-image) {
  position: relative;
  z-index:  1;
}

/* About hero layout */
.about-hero__inner {
  display:     grid;
  grid-template-columns: 1fr 280px;
  gap:         4rem;
  align-items: start;
}

@media (max-width: 768px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__image { min-height: 360px; }
}

/* ============================================================
   AURORA — INDEX.HTML SHAPED SECTION
   ============================================================ */

.shaped-section {
  border-top:        3px solid;
  border-image:      var(--sh-flare) 1;
}

.shaped-section .stages-mini-item__num {
  color:          var(--sh-a2);
  font-family:    var(--sh-sans);
  font-weight:    600;
  font-size:      11px;
  letter-spacing: 0.18em;
}

.shaped-section .stage-symbol {
  color:     var(--sh-a2);
  font-size: 16px;
}

/* ============================================================
   AURORA — SHAPED.HTML ENTRY BAR
   ============================================================ */

.shaped-bar {
  width:      100%;
  height:     3px;
  background: var(--sh-flare);
  display:    block;
}

/* ============================================================
   AURORA — SHAPED.HTML GATE SECTION (dark)
   ============================================================ */

.shaped-gate-section {
  background: var(--sh-black);
  color:      #FFFFFF;
}

.shaped-gate-section .shaped-gate__label { color: var(--sh-a2); }

.shaped-gate-section .shaped-gate__headline { color: #FFFFFF; }

.shaped-gate-section .shaped-gate__body {
  color:       rgba(255,255,255,0.72);
  font-family: var(--sh-sans);
}

.shaped-gate-section .shaped-gate__visual {
  background:   rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
}

.shaped-gate-section .gate-step {
  border-bottom-color: rgba(255,255,255,0.08);
}

.shaped-gate-section .stage-symbol {
  color:          var(--sh-a2);
  font-family:    var(--sh-sans);
  font-weight:    600;
  font-size:      16px;
  letter-spacing: 0.18em;
}

.shaped-gate-section .gate-step__text {
  color:          var(--sh-a2);
  font-family:    var(--sh-sans);
  font-weight:    600;
  font-size:      11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.shaped-gate-section .gate-step__badge {
  background: var(--sh-a2);
  color:      #FFFFFF;
}

/* ============================================================
   AURORA — SHAPED.HTML CTA (Flare surface)
   ============================================================ */

.shaped-cta-section {
  background: var(--sh-flare);
  color:      #FFFFFF;
}

.shaped-cta-section .shaped-ctas__headline {
  color: #FFFFFF;
}

.shaped-cta-section .shaped-ctas__headline em {
  color: #FFFFFF;
  opacity: 0.75;
}

.shaped-cta-section .btn--outline-linen {
  background:   #FFFFFF;
  color:        var(--sh-black);
  border-color: #FFFFFF;
}

.shaped-cta-section .btn--outline-linen:hover {
  background:   transparent;
  color:        #FFFFFF;
}

/* ============================================================
   AURORA — WORK-WITH-US.HTML
   ============================================================ */

.ww-price {
  color:       var(--sh-a2);
  font-family: var(--sh-sans);
  font-weight: 600;
}

.ww-card + .ww-card {
  border-top: 1px solid rgba(255,149,0,0.2);
}

/* ── shaped.html stages section (Aurora overrides) ─── */
.shaped-stages .stages-full-item__num {
  color:          var(--sh-a2);
  font-family:    var(--sh-sans);
  font-weight:    600;
  letter-spacing: 0.12em;
}

.shaped-stages .stage-symbol {
  color:          var(--sh-a2);
  font-family:    var(--sh-sans);
  font-weight:    600;
  letter-spacing: 0.12em;
}

/* ============================================================
   DESIGN ELEVATION — QUIET LUXURY REFINEMENTS
   Reference: Aesop · The Row · Frama · Kinfolk · Cereal
   ============================================================ */

/* ── Priority fix: hero CTA button auto-width ───────────── */
.hero .btn,
.hero .btn--primary {
  display:        inline-flex;
  width:          auto;
  align-self:     flex-start;
  padding:        12px 24px;
}

/* ── Nav: architectural, frosted, minimal ───────────────── */
.nav {
  height:               var(--nav-h);
  background:           rgba(246,241,233,0.94);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter:      blur(20px);
  border-bottom:        1px solid rgba(28,26,16,0.08);
}

.nav__inner {
  padding:         0 48px;
  justify-content: space-between;
}

.nav__logo {
  flex:         0 0 auto;
  margin-right: 0;
}

.nav__logo img {
  height: 16px;
  width:  auto;
}

.nav__links {
  flex:            1;
  justify-content: center;
  gap:             2.5rem;
}

.nav__link {
  font-size:      12px;
  font-weight:    400;
  letter-spacing: 0.08em;
  color:          rgba(28,26,16,0.60);
}
.nav__link:hover     { color: var(--sl-black); }
.nav__link.is-active { color: var(--sl-gold); }

.nav__cta { margin-left: 0; }

/* ── Base typography elevation ──────────────────────────── */
body {
  line-height:   1.85;
  letter-spacing: 0.01em;
}

p {
  line-height: 1.85;
  max-width:   60ch;
}

h1, h2, h3,
.t-display, .t-h1, .t-h2 {
  line-height:    0.98;
  letter-spacing: -0.02em;
}

h3 { line-height: 1.15; }

/* ── Improved heading scale ──────────────────────────────── */
.t-display {
  font-size: clamp(52px, 7.5vw, 88px);
  line-height: 0.96;
}

.t-h1 {
  font-size:   clamp(40px, 5.5vw, 60px);
  line-height: 1.0;
}

.t-h2 {
  font-size:   clamp(28px, 3.8vw, 46px);
  line-height: 1.04;
}

/* ── Hero: editorial, dominant, calm ─────────────────────── */
.hero {
  padding-top:    calc(var(--nav-h) + clamp(5rem, 10vw, 8rem));
  padding-bottom: clamp(6rem, 11vw, 10rem);
}

.hero__content {
  padding-top:    2rem;
  display:        flex;
  flex-direction: column;
  gap:            0;
  align-items:    flex-start;
}

.hero__headline {
  font-size:      clamp(52px, 7vw, 84px);
  line-height:    0.97;
  letter-spacing: -0.025em;
  margin-bottom:  0;
}

.hero__headline em {
  display:    block;
  margin-top: 0.05em;
}

.hero__rule {
  margin:     2.75rem 0;
}

.hero__tagline {
  font-size:     clamp(14px, 1.2vw, 15px);
  line-height:   1.8;
  color:         var(--sl-steel);
  margin-bottom: 2.75rem;
  max-width:     36ch;
  letter-spacing: 0.02em;
}

/* ── Section pacing ─────────────────────────────────────── */
.section {
  padding-top:    var(--section-y);
  padding-bottom: var(--section-y);
}

.beliefs__header { margin-bottom: 4.5rem; }

/* ── Body copy measure ───────────────────────────────────── */
.about-story__content p,
.translation__text,
.shaped-page-hero__lead,
.about-pull + p,
.page-hero__headline + p,
.framework-intro__body p,
.stage-content p,
.ww-card__desc {
  max-width:   60ch;
  line-height: 1.85;
}

/* ── Belief cards typographic lift ──────────────────────── */
.belief__title {
  font-size:   clamp(17px, 1.8vw, 22px);
  line-height: 1.15;
}

.belief__body {
  font-size:   13px;
  line-height: 1.8;
  max-width:   38ch;
}

/* ── Pull quotes ──────────────────────────────────────────── */
.about-pull {
  font-size:    clamp(20px, 2.2vw, 26px);
  line-height:  1.3;
  letter-spacing: -0.01em;
}

.translation__pull {
  font-size:    clamp(26px, 3.2vw, 40px);
  line-height:  1.1;
}

/* ── Gold dividers / rules ───────────────────────────────── */
.rule--gold-full,
.rule--full {
  background: var(--sl-gold);
  opacity:    0.35;
}

/* ── Eyebrow label (t-label) refinement ─────────────────── */
.t-label {
  font-size:      9px;
  letter-spacing: 0.24em;
  margin-bottom:  1.25rem;
}

/* ── Shape image sizing ───────────────────────────────────── */
.stage-shape-sm {
  width:          16px;
  height:         16px;
  display:        inline-block;
  vertical-align: middle;
  flex-shrink:    0;
}

.stage-shape-lg {
  width:  20px;
  height: 20px;
  display: block;
}

.stages-full-item__name {
  display:     flex;
  align-items: center;
  gap:         0.6rem;
}

.gate-step .stage-shape-sm {
  display:       inline-block;
  vertical-align: middle;
}

/* ── Framework page stage shape alignment ───────────────── */
.stage-left {
  gap: 1.25rem;
}

/* ── Scroll reveal — opacity + subtle lift ──────────────── */
.reveal {
  opacity:    0;
  transform:  translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-in {
  opacity:   1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── Hover transitions — colour only, no scale ───────────── */
a, button, .btn {
  transition: color 0.2s ease, background-color 0.2s ease,
              border-color 0.2s ease, opacity 0.2s ease;
}

/* ── CTA sections ────────────────────────────────────────── */
.cta-close__headline {
  font-size:   clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

/* ── Page heroes ──────────────────────────────────────────── */
.page-hero {
  padding-top:    calc(var(--nav-h) + clamp(4.5rem, 8vw, 7rem));
  padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.page-hero__headline {
  font-size:      clamp(38px, 5.5vw, 64px);
  line-height:    0.97;
  letter-spacing: -0.02em;
  max-width:      18ch;
}

/* ── shaped page: hero text ──────────────────────────────── */
.shaped-page-hero {
  padding-top:    calc(var(--nav-h) + clamp(4.5rem, 8vw, 7rem));
  padding-bottom: clamp(3.5rem, 5.5vw, 5rem);
}

.shaped-page-hero__headline {
  font-size:      clamp(38px, 5.5vw, 64px);
  line-height:    0.97;
  letter-spacing: -0.02em;
}

/* ── Work with us cards ───────────────────────────────────── */
.ww-card__title {
  font-size:   clamp(22px, 2.5vw, 30px);
  line-height: 1.06;
}

/* ── Footer: raw linen, generous padding ─────────────────── */
.footer {
  background:  var(--sl-linen);
  border-top:  1px solid rgba(28,26,16,0.10);
  padding:     64px var(--gutter) 48px;
}

.footer__brand img {
  height:       20px;
  width:        auto;
  display:      block;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family:    var(--sl-sans);
  font-weight:    300;
  font-size:      10px;
  letter-spacing: 0.04em;
  color:          var(--sl-steel);
  line-height:    1.7;
}

.footer__bottom {
  margin-top:  3.5rem;
  padding-top: 1.75rem;
}

.footer__copy {
  font-size:      10px;
  letter-spacing: 0.05em;
}

/* ── Mobile refinements ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav__logo img { height: 14px; }
  .nav__inner     { padding: 0 24px; }

  .hero {
    padding-top: calc(var(--nav-h) + 3rem);
  }

  .hero .btn,
  .hero .btn--primary {
    width:   100%;
    justify-content: center;
  }

  p { max-width: none; }

  .stage-shape-sm { width: 14px; height: 14px; }

  .footer {
    padding: 48px var(--gutter) 36px;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size:   clamp(38px, 11vw, 52px);
    line-height: 0.98;
  }
}

/* ============================================================
   EDITORIAL ELEVATION — QUIET LUXURY REFINEMENT
   Ref: Aesop · Kinfolk · The Row · Cereal
   ============================================================ */

/* ── :root additions ───────────────────────────────────────── */
:root {
  --ease-cinema:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-slow:     1.0s;
  --dur-medium:   0.65s;
}

/* ── Nav: architectural, near-invisible ────────────────────── */
.nav {
  background: rgba(246,241,233,0.96);
}

.nav__link {
  font-size:      11px;
  letter-spacing: 0.10em;
  color:          rgba(28,26,16,0.52);
  transition:     color 0.2s ease;
}
.nav__link:hover { color: rgba(28,26,16,0.85); }

/* Nav CTA — refined, less loud */
.nav__cta.btn--primary {
  font-size:      9px;
  font-weight:    500;
  letter-spacing: 0.20em;
  padding:        8px 18px;
  background:     transparent;
  color:          rgba(28,26,16,0.70);
  border:         1px solid rgba(28,26,16,0.22);
}
.nav__cta.btn--primary:hover {
  background:   var(--sl-black);
  color:        var(--sl-linen);
  border-color: var(--sl-black);
}

/* ── Hero refinements ────────────────────────────────────────── */
.hero__label {
  opacity:    0;
  animation:  fadeUpIn 0.8s var(--ease-cinema) 0.2s forwards;
}
.hero__headline {
  opacity:    0;
  animation:  fadeUpIn 1.0s var(--ease-cinema) 0.4s forwards;
}
.hero__rule {
  opacity:    0;
  animation:  fadeUpIn 0.8s var(--ease-cinema) 0.7s forwards;
}
.hero__tagline {
  opacity:    0;
  animation:  fadeUpIn 0.8s var(--ease-cinema) 0.9s forwards;
}
.hero__cta {
  opacity:    0;
  animation:  fadeUpIn 0.8s var(--ease-cinema) 1.05s forwards;
}
.hero__image {
  opacity:    0;
  animation:  fadeIn 1.4s var(--ease-cinema) 0.3s forwards;
}

@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Improved scroll reveal ──────────────────────────────────── */
.reveal {
  opacity:    0;
  transform:  translateY(20px);
  transition: opacity 0.9s var(--ease-cinema),
              transform 0.9s var(--ease-cinema);
}
.reveal.is-in {
  opacity:   1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.14s; }
.reveal-delay-2 { transition-delay: 0.28s; }
.reveal-delay-3 { transition-delay: 0.42s; }
.reveal-delay-4 { transition-delay: 0.56s; }

/* ── EDITORIAL PAUSE — cinematic typography moment ──────────── */
.section-pause {
  padding:    clamp(9rem, 18vw, 15rem) var(--gutter);
  background: var(--sl-bone);
  overflow:   hidden;
}

.pause__inner {
  max-width: var(--max-w);
  margin:    0 auto;
}

.pause__statement {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(38px, 7.5vw, 100px);
  line-height:    1.05;
  letter-spacing: -0.025em;
  color:          var(--sl-black);
  max-width:      none;
  margin:         0;
  opacity:        0;
  transform:      translateY(28px);
  transition:     opacity 1.4s var(--ease-cinema),
                  transform 1.4s var(--ease-cinema);
}

.pause__statement.is-in {
  opacity:   1;
  transform: translateY(0);
}

.pause__statement em {
  font-style: italic;
  color:      var(--sl-black);
}

/* ── PRINCIPLES MANIFESTO — strategic depth ─────────────────── */
.section-principles {
  background:  var(--sl-black);
  padding-top:    var(--section-y);
  padding-bottom: var(--section-y);
}

.t-label--linen {
  color: rgba(246,241,233,0.38);
}
.t-label--linen::before {
  background: rgba(246,241,233,0.25);
}

.principles-manifesto {
  list-style:  none;
  padding-top: 3rem;
}

.principles-manifesto li {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-style:     italic;
  font-size:      clamp(28px, 4.2vw, 62px);
  line-height:    1.06;
  letter-spacing: -0.015em;
  color:          var(--sl-linen);
  padding:        1.5rem 0;
  border-bottom:  1px solid rgba(246,241,233,0.07);
  max-width:      none;
}

.principles-manifesto li:last-child {
  border-bottom: none;
}

/* ── CTA close: text link style ─────────────────────────────── */
.cta-close__link {
  display:        inline-flex;
  align-items:    center;
  font-family:    var(--sl-sans);
  font-weight:    400;
  font-size:      12px;
  letter-spacing: 0.10em;
  color:          rgba(246,241,233,0.60);
  text-decoration: none;
  transition:     color 0.2s ease;
  gap:            0.4rem;
}
.cta-close__link:hover { color: var(--sl-linen); }

/* ── Refined section rhythm ──────────────────────────────────── */
.beliefs__header {
  margin-bottom: 5rem;
}

/* ── Image slow reveal via JS-added class ───────────────────── */
.hero__image img {
  transition: transform 2s var(--ease-cinema);
}

/* ── Belief grid — more editorial ────────────────────────────── */
.belief__num {
  font-size:      8px;
  letter-spacing: 0.30em;
  color:          rgba(28,26,16,0.35);
}

.belief__title {
  font-size:      clamp(15px, 1.6vw, 19px);
  line-height:    1.25;
  letter-spacing: 0.01em;
  color:          var(--sl-black);
}

/* ── Translation section — more cinematic ────────────────────── */
.translation__pull {
  font-size:      clamp(26px, 3.5vw, 46px);
  line-height:    1.08;
  letter-spacing: -0.02em;
}

/* ── shaped intro — stage list refinement ────────────────────── */
.stages-mini-item__name {
  font-family:    var(--sl-serif);
  font-weight:    300;
  font-size:      clamp(22px, 2.4vw, 30px);
  color:          var(--sl-black);
}

.stages-mini-item {
  padding: 1.1rem 0;
}

/* ── Footer refinement ───────────────────────────────────────── */
.footer__col-label {
  font-size:      8px;
  letter-spacing: 0.28em;
  color:          rgba(28,26,16,0.35);
}

.footer__nav-links a {
  font-size:      11px;
  letter-spacing: 0.06em;
  color:          rgba(28,26,16,0.55);
  font-weight:    300;
}
.footer__nav-links a:hover { color: var(--sl-black); }

/* ── Hover states: colour transitions only — no scale transforms ── */
.btn:hover, a:hover { transform: none; }

/* ── Sharp corners: absolute rule ───────────────────────────── */
*, *::before, *::after { border-radius: 0 !important; }

/* ── Mobile: pause section scales gracefully ────────────────── */
@media (max-width: 768px) {
  .section-pause {
    padding: clamp(6rem, 16vw, 9rem) var(--gutter);
  }
  .pause__statement {
    font-size: clamp(32px, 10vw, 52px);
  }
  .principles-manifesto li {
    font-size: clamp(24px, 7vw, 36px);
  }
}

/* ============================================================
   CINEMATIC MOTION SYSTEM
   Two emotional worlds: SL (warm, human) / SHAPED (monumental)
   ============================================================ */

/* ── Lenis: scroll smoothing CSS helpers ───────────────────── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── Film grain: warm filmic texture — all pages ───────────── */
/* Kodak Portra 400 tactile imperfection                        */
body::after {
  content:    '';
  position:   fixed;
  inset:      0;
  width:      300%;
  height:     300%;
  top:        -100%;
  left:       -100%;
  z-index:    9998;
  pointer-events: none;
  opacity:    0.026;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation:  grain 9s steps(10) infinite;
}

@keyframes grain {
  0%   { transform: translate(0,   0); }
  10%  { transform: translate(-5%, -10%); }
  20%  { transform: translate(-15%, 5%); }
  30%  { transform: translate(7%, -25%); }
  40%  { transform: translate(-5%, 25%); }
  50%  { transform: translate(-15%, 10%); }
  60%  { transform: translate(15%, 0%); }
  70%  { transform: translate(0%,  15%); }
  80%  { transform: translate(3%,  35%); }
  90%  { transform: translate(-10%, 10%); }
}

/* ── GPU hints for animated elements ───────────────────────── */
.hero__image img,
.about__portrait img,
.about__working img,
.stage-shape-lg,
.stage-shape-sm,
.shaped-bar,
.shaped-atmosphere__glow,
[data-parallax] {
  will-change: transform;
}

/* ── SHAPED hero: cinematic dark atmosphere ─────────────────── */
/* "Moving from a quiet editorial studio                         */
/*  into a strategic cinematic system."                         */
.shaped-page-hero {
  position:   relative;
  overflow:   hidden;
  background: linear-gradient(
    158deg,
    #1b1910 0%,
    #13120e 45%,
    #0d0c09 100%
  );
}

/* Subtle gold emanation from upper-right — engineered warmth */
.shaped-page-hero::before {
  content:  '';
  position: absolute;
  inset:    0;
  background: radial-gradient(
    ellipse 90% 70% at 80% -15%,
    rgba(184,144,96,0.055) 0%,
    rgba(28,26,16,0.3) 55%,
    transparent 75%
  );
  pointer-events: none;
  z-index:  1;
}

/* Text layers above atmosphere */
.shaped-page-hero .wrap { position: relative; z-index: 2; }

/* Colour overrides for dark surface */
.shaped-page-hero .t-label,
.shaped-page-hero .shaped-page-hero__label {
  color: var(--sl-gold);
}
.shaped-page-hero .shaped-page-hero__label::before {
  background: var(--sl-gold);
}
.shaped-page-hero .shaped-page-hero__headline {
  color: var(--sl-linen);
}
.shaped-page-hero .shaped-page-hero__lead {
  color: rgba(246,241,233,0.60);
}

/* ── Framework hero: same cinematic atmosphere ─────────────── */
.page-hero--dark {
  position:   relative;
  overflow:   hidden;
  background: linear-gradient(
    158deg,
    #1b1910 0%,
    #13120e 45%,
    #0d0c09 100%
  );
  color: var(--sl-linen);
}

.page-hero--dark::before {
  content:  '';
  position: absolute;
  inset:    0;
  background: radial-gradient(
    ellipse 90% 70% at 80% -15%,
    rgba(184,144,96,0.045) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index:  1;
}

.page-hero--dark .wrap { position: relative; z-index: 2; }

.page-hero--dark .t-label {
  color: var(--sl-gold);
}
.page-hero--dark .t-label::before {
  background: var(--sl-gold);
}
.page-hero--dark .page-hero__headline {
  color: var(--sl-linen);
}

/* ── Atmospheric glow element ───────────────────────────────── */
.shaped-atmosphere {
  position:       absolute;
  inset:          0;
  pointer-events: none;
  overflow:       hidden;
  z-index:        0;
}

.shaped-atmosphere__glow {
  position:  absolute;
  top:       -40%;
  left:      60%;
  width:     70%;
  height:    140%;
  background: radial-gradient(
    ellipse at center,
    rgba(184,144,96,0.07) 0%,
    rgba(184,144,96,0.02) 40%,
    transparent 70%
  );
  transform-origin: center center;
  opacity: 0.7;
}

/* ── Stage shapes: GPU-ready, motion-ready ─────────────────── */
.stage-shape-lg,
.stage-shape-sm {
  transform-origin: center center;
}

/* Ensure shaped gate visual can receive box-shadow from GSAP */
.shaped-gate__visual {
  transition: box-shadow 4s ease;
}

/* ── SHAPED bar: glow base state ─────────────────────────────── */
.shaped-bar {
  box-shadow: 0 0 20px rgba(255,149,0,0.12);
}

/* ── Principle manifesto items: base for GSAP override ────────── */
.principles-manifesto li {
  /* opacity/transform managed by GSAP — JS sets inline styles */
}

/* ── Pause statement: managed by GSAP ───────────────────────── */
/* JS in motion.js overrides the CSS transition with GSAP */

/* ── Mobile: reduce grain intensity ────────────────────────── */
@media (max-width: 768px) {
  body::after { opacity: 0.018; }
}

/* ── Reduced motion: respect OS preference ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  body::after { animation: none; opacity: 0; }

  .hero__image img,
  .about__portrait img,
  [data-parallax] {
    transform: none !important;
  }

  .stage-shape-lg,
  .stage-shape-sm,
  .shaped-bar,
  .shaped-atmosphere__glow {
    animation: none;
  }
}
