/* Alix Rufas — approved website rebirth v7 */
:root {
  --rb-ink: #1a1714;
  --rb-ink-soft: #3d342e;
  --rb-linen: #faf7f2;
  --rb-cream: #f4ede4;
  --rb-sand: #e8ddd0;
  --rb-bronze: #a67c52;
  --rb-gold: #c9a882;
  --rb-white: #fffdf9;
  --rb-shadow: 0 24px 70px rgba(56, 39, 28, .09);
}

body[data-rebirth-ready="true"] > #root { display: none !important; }
#rebirth-app { min-height: 100vh; background: var(--rb-linen); color: var(--rb-ink); }
#rebirth-app * { box-sizing: border-box; }
.rb-page { overflow: hidden; background: var(--rb-linen); }
.rb-container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.rb-narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }
.rb-serif { font-family: 'Playfair Display', Georgia, serif; }
.rb-copy, .rb-copy p, .rb-card p, .rb-step p, .rb-foundation p, .rb-proof p { font-family: 'Poppins', sans-serif; }
.rb-section { padding: 108px 0; position: relative; }
.rb-section--cream { background: var(--rb-cream); }
.rb-section--white { background: var(--rb-white); }
.rb-section--ink { background: linear-gradient(90deg, #604e44 0%, #735d50 30%, #96735e 57%, #c68f68 78%, #efb376 100%); color: var(--rb-linen); }
.rb-section--sand { background: var(--rb-sand); }
.rb-eyebrow { margin: 0 0 18px; color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.rb-section--ink .rb-eyebrow { color: var(--rb-gold); }
.rb-title { margin: 0; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(42px, 5.2vw, 76px); font-weight: 400; line-height: 1.04; letter-spacing: -.035em; }
.rb-title--medium { font-size: clamp(34px, 4vw, 58px); }
.rb-section--ink .rb-title { color: var(--rb-linen); }
.rb-lead { margin: 28px 0 0; color: #554a43; font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 300; line-height: 1.9; }
.rb-section--ink .rb-lead { color: #ddd0c1; }
.rb-copy { color: #554a43; font-size: 16px; font-weight: 300; line-height: 1.9; }
.rb-copy p { margin: 0 0 22px; }
.rb-copy strong { color: var(--rb-ink); font-weight: 600; }
.rb-section--ink .rb-copy { color: #ddd0c1; }
.rb-section--ink .rb-copy strong { color: var(--rb-white); }
.rb-rule { width: 74px; height: 1px; margin: 30px 0; background: var(--rb-gold); }
.rb-quote { margin: 34px 0 0; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(25px, 3vw, 38px); font-style: italic; line-height: 1.35; }
.rb-section--ink .rb-quote { color: var(--rb-linen); }
.rb-btns { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.rb-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 26px; border: 1px solid var(--rb-bronze); color: var(--rb-ink); background: transparent; font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-decoration: none; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.rb-btn:hover { transform: translateY(-2px); background: var(--rb-bronze); color: var(--rb-white); }
.rb-btn--filled { background: var(--rb-bronze); color: var(--rb-white); }
.rb-btn--light { border-color: var(--rb-gold); color: var(--rb-linen); }
.rb-btn--light:hover { background: var(--rb-gold); color: var(--rb-ink); }

/* Navigation */
.rb-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 76px; display: flex; align-items: center; border-bottom: 1px solid rgba(166,124,82,.22); background: rgba(242,239,233,.93); backdrop-filter: blur(14px); }
.rb-nav { width: min(1320px, calc(100% - 40px)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.rb-brand { color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 400; line-height: 1; letter-spacing: .035em; text-decoration: none; text-transform: uppercase; }
.rb-navlinks { display: flex; align-items: center; gap: 29px; }
.rb-navlinks a, .rb-lang { color: var(--rb-ink-soft); background: transparent; border: 0; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: .055em; text-decoration: none; text-transform: uppercase; cursor: pointer; }
.rb-navlinks a:hover, .rb-lang:hover { color: var(--rb-bronze); }
.rb-menu { display: none; width: 42px; height: 42px; padding: 10px; border: 1px solid rgba(166,124,82,.38); background: transparent; color: var(--rb-ink); cursor: pointer; }
.rb-mobile { display: none; position: fixed; top: 76px; left: 0; right: 0; z-index: 99; padding: 26px 24px 30px; background: rgba(242,239,233,.98); border-top: 1px solid rgba(166,124,82,.22); box-shadow: 0 22px 42px rgba(61,54,48,.12); }
.rb-mobile.is-open { display: grid; gap: 22px; }
.rb-mobile a, .rb-mobile button { color: var(--rb-ink-soft); background: none; border: 0; text-align: left; font-family: 'Poppins', sans-serif; font-size: 14px; letter-spacing: .055em; text-decoration: none; text-transform: uppercase; }

/* Homepage hero */
.rb-home-hero { --rb-right-fade: clamp(150px, 12vw, 230px); position: relative; min-height: max(820px, calc(100svh - 76px)); display: flex; align-items: center; padding: 136px 0 78px; overflow: hidden; background: linear-gradient(90deg, #604e44 0%, #735d50 24%, #96735e 47%, #c68f68 67%, #efb376 100%); }
.rb-home-hero__image { position: absolute; z-index: 0; top: 0; right: var(--rb-right-fade); bottom: 0; left: auto; width: auto; height: 100%; transform: none; aspect-ratio: 1365 / 2048; object-fit: cover; object-position: center; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.32) 7%, #000 18%, #000 72%, rgba(0,0,0,.82) 82%, rgba(0,0,0,.36) 92%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.32) 7%, #000 18%, #000 72%, rgba(0,0,0,.82) 82%, rgba(0,0,0,.36) 92%, transparent 100%); }
.rb-home-hero::before { display: none; }
.rb-home-hero::after { content: ''; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(37,24,14,.12) 0%, rgba(37,24,14,.03) 24%, transparent 48%); }
.rb-home-hero__content { position: relative; z-index: 2; width: min(760px, 58%); color: var(--rb-linen); }
.rb-home-hero .rb-eyebrow { margin-left: .16em; color: rgba(250,247,242,.76); font-weight: 300; letter-spacing: .18em; }
.rb-home-hero h1 { margin: 0 0 18px; color: var(--rb-linen); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(58px, 6.2vw, 102px); font-weight: 400; line-height: .9; letter-spacing: -.03em; }
.rb-home-hero h2 { margin: 0; max-width: 700px; color: var(--rb-linen); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(29px, 3.15vw, 48px); font-weight: 400; line-height: .98; letter-spacing: -.03em; }
.rb-home-hero p { max-width: 680px; margin: 20px 0 0; color: rgba(250,247,242,.88); font-family: 'Poppins', sans-serif; font-size: 17px; line-height: 1.68; }
.rb-home-hero .rb-home-method { margin-top: 18px; color: rgba(250,247,242,.96); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(20px, 1.75vw, 25px); font-style: normal; line-height: 1.12; letter-spacing: -.025em; }
.rb-home-hero .rb-home-intro { max-width: 650px; font-size: 17px; line-height: 1.68; }
.rb-hero-authority { max-width: 730px !important; margin-top: 24px !important; padding-top: 18px; border-top: 1px solid rgba(250,247,242,.34); color: rgba(250,247,242,.84) !important; font-size: 14px !important; font-weight: 400; line-height: 1.5 !important; letter-spacing: .035em; text-transform: uppercase; }
.rb-home-hero .rb-btn--light { border-color: rgba(250,247,242,.68); color: var(--rb-linen); }
.rb-home-hero .rb-btn--light:hover { background: var(--rb-linen); color: var(--rb-ink); }
.rb-signature { margin: 20px 0 0; color: var(--rb-bronze); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(24px, 2.5vw, 34px); font-style: italic; line-height: 1.2; }
.rb-positioning { padding: 92px 0 94px; text-align: center; }
.rb-positioning__title { margin: 0 auto; max-width: 1040px; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(34px, 4.1vw, 58px); font-weight: 400; letter-spacing: -.03em; line-height: 1.04; }
.rb-positioning__copy { max-width: 940px; margin: 28px auto 0; color: #554a43; font-family: 'Poppins', sans-serif; font-size: 17px; font-weight: 300; line-height: 1.85; }
.rb-method-declaration { padding: 104px 0; background: linear-gradient(135deg, var(--rb-cream) 0%, var(--rb-sand) 100%); }
.rb-method-declaration__grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(300px,.68fr); gap: clamp(48px,7vw,108px); align-items: center; }
.rb-method-declaration__text { margin: 0; max-width: 760px; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(34px, 4vw, 58px); font-weight: 400; letter-spacing: -.035em; line-height: 1.04; }
.rb-method-declaration__photo { margin: 0; overflow: hidden; border-radius: 22px 22px 4px 22px; background: var(--rb-sand); box-shadow: var(--rb-shadow); }
.rb-method-declaration__photo img { display: block; width: 100%; height: auto; }
.rb-method-declaration sup { position: relative; top: -.45em; font-family: 'Poppins', sans-serif; font-size: .32em; letter-spacing: .04em; }

/* Shared grids */
.rb-split { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(330px,.95fr); gap: clamp(48px,7vw,100px); align-items: center; }
.rb-split--reverse { grid-template-columns: minmax(330px,.95fr) minmax(0,1.05fr); }
.rb-photo { position: relative; overflow: hidden; min-height: 520px; border-radius: 22px 22px 4px 22px; background: var(--rb-sand); box-shadow: var(--rb-shadow); }
.rb-photo img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; object-position: top center; }
.rb-photo--contain img { object-fit: contain; background: var(--rb-cream); }
.rb-media { padding: 34px 0; background: var(--rb-white); border-bottom: 1px solid var(--rb-sand); }
.rb-media__grid { width: min(980px, calc(100% - 48px)); display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 28px 42px; align-items: center; justify-content: center; }
.rb-media__item { height: 58px; display: flex; align-items: center; justify-content: center; }
.rb-media__item img { max-width: 138px; max-height: 38px; filter: grayscale(1); opacity: .68; object-fit: contain; }
.rb-concepts { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.rb-concept, .rb-card, .rb-foundation, .rb-proof { padding: 30px; border: 1px solid rgba(166,124,82,.24); border-radius: 18px; background: rgba(255,253,249,.78); box-shadow: 0 15px 45px rgba(73,49,33,.05); }
.rb-concept h3, .rb-card h3, .rb-foundation h3, .rb-proof h3 { margin: 0 0 12px; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; font-weight: 500; }
.rb-concept p, .rb-card p, .rb-foundation p, .rb-proof p { margin: 0; color: #62574e; font-size: 14px; font-weight: 300; line-height: 1.75; }
.rb-belief { padding: 52px; border: 1px solid rgba(201,168,130,.36); border-radius: 24px; background: radial-gradient(circle at 90% 10%, rgba(201,168,130,.18), transparent 36%), rgba(255,253,249,.72); }
.rb-belief__line { margin: 0; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(28px,3.5vw,48px); line-height: 1.25; }
.rb-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.rb-door { display: flex; flex-direction: column; min-height: 270px; padding: 34px; border: 1px solid rgba(201,168,130,.36); border-radius: 20px; background: linear-gradient(145deg,#fffdf9 0%,#f4ede4 100%); color: var(--rb-ink); text-decoration: none; box-shadow: 0 18px 50px rgba(74,50,35,.06); transition: transform .28s ease, box-shadow .28s ease; }
.rb-door:hover { transform: translateY(-5px); box-shadow: 0 26px 62px rgba(74,50,35,.11); }
.rb-door__name { font-family: 'Playfair Display', Georgia, serif; font-size: 30px; }
.rb-door__sub { margin-top: 9px; color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.rb-door__desc { margin: 22px 0; color: #62574e; font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.75; }
.rb-door__cta { margin-top: auto; color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

/* About and coaching */
.rb-inner-hero { padding: 145px 0 90px; background: var(--rb-cream); }
.rb-inner-hero--glow { position: relative; display: flex; align-items: center; min-height: max(680px, calc(100svh - 76px)); padding: 136px 0 78px; overflow: hidden; background: linear-gradient(90deg, #604e44 0%, #735d50 30%, #96735e 57%, #c68f68 78%, #efb376 100%); }
.rb-inner-hero--glow::after { content: ''; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(37,24,14,.12) 0%, rgba(37,24,14,.03) 24%, transparent 48%); }
.rb-inner-hero__image { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: auto; width: auto; height: 100%; aspect-ratio: 1365 / 2048; object-fit: cover; object-position: center; -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.32) 7%, #000 18%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.32) 7%, #000 18%, #000 100%); }
.rb-inner-hero__content { position: relative; z-index: 2; width: min(760px, 58%); color: var(--rb-linen); }
.rb-inner-hero--glow .rb-eyebrow { margin-left: .16em; color: rgba(250,247,242,.82); }
.rb-inner-hero--glow .rb-title { color: var(--rb-linen); }
.rb-inner-hero--glow .rb-lead { max-width: 680px; color: rgba(250,247,242,.88); }
.rb-inner-hero--glow .rb-authority { color: rgba(250,247,242,.9); border-top: 1px solid rgba(250,247,242,.34); padding-top: 18px; font-size: 12px; line-height: 1.5; letter-spacing: .055em; }
.rb-inner-hero .rb-split { align-items: center; }
.rb-authority { margin-top: 26px; color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.rb-story { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.rb-story__image { min-height: 500px; overflow: hidden; border-radius: 20px; background: var(--rb-sand); }
.rb-story__image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; object-position: top; }
.rb-timeline { display: grid; gap: 1px; margin-top: 48px; background: var(--rb-sand); border: 1px solid var(--rb-sand); }
.rb-timeline__item { display: grid; grid-template-columns: 190px 1fr; gap: 40px; padding: 34px; background: var(--rb-white); }
.rb-timeline__num { color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.rb-timeline__item h3 { margin: 0 0 10px; font-family: 'Playfair Display', Georgia, serif; font-size: 27px; font-weight: 500; }
.rb-timeline__item p { margin: 0; color: #62574e; font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.75; }
.rb-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; margin-top: 46px; }
.rb-step { padding: 27px 22px; border: 1px solid rgba(201,168,130,.28); border-radius: 18px; background: rgba(255,255,255,.06); }
.rb-step__num { color: var(--rb-gold); font-size: 11px; letter-spacing: .15em; }
.rb-step h3 { margin: 16px 0 12px; color: var(--rb-linen); font-family: 'Playfair Display', Georgia, serif; font-size: 25px; font-weight: 500; }
.rb-step p { margin: 0; color: #d8cabc; font-size: 13px; line-height: 1.7; }
.rb-foundations { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 42px; }
.rb-foundation { background: var(--rb-white); }
.rb-origin { padding: 42px; border-left: 2px solid var(--rb-gold); background: rgba(255,253,249,.82); }
.rb-origin p { margin: 0 0 19px; }
.rb-proof-clone { position: relative; }
.rb-proof-clone section { background: inherit; }
.rb-proof-clone h2 { font-family: 'Playfair Display', Georgia, serif !important; }
.rb-fit { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 42px; }
.rb-fit__row { padding: 26px; border: 1px solid rgba(201,168,130,.28); border-radius: 16px; background: var(--rb-white); }
.rb-fit__row h3 { margin: 0 0 12px; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 500; }
.rb-fit__row p { margin: 0; color: #63584f; font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.7; }
.rb-layers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 42px; }
.rb-layer { padding: 38px; border-radius: 16px; background: linear-gradient(135deg, #735d50 0%, #b07e5b 100%); color: var(--rb-linen); }
.rb-layer h3 { margin: 0 0 18px; color: var(--rb-linen); font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.rb-layer p { margin: 0; color: rgba(250,247,242,.92); font-family: 'Playfair Display', Georgia, serif; font-size: 24px; line-height: 1.35; }
.rb-included { display: grid; gap: 14px; margin-top: 44px; }
.rb-included__item { display: grid; grid-template-columns: 240px 1fr; gap: 35px; padding: 28px 30px; border: 1px solid rgba(201,168,130,.27); border-radius: 17px; background: var(--rb-white); }
.rb-included__item h3 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: 23px; font-weight: 500; }
.rb-included__item p { margin: 0; color: #62574e; font-family: 'Poppins', sans-serif; font-size: 14px; line-height: 1.75; }
.rb-offer { padding: 52px; border: 1px solid rgba(201,168,130,.35); border-radius: 16px; background: linear-gradient(145deg,#fffdf9,#eee0d1); box-shadow: var(--rb-shadow); }
.rb-offer .rb-title { margin-bottom: 38px; }
.rb-offer .rb-copy + .rb-quote { margin-top: 40px; }
.rb-offer .rb-quote + .rb-copy { margin-top: 34px; }
.rb-section--ink .rb-offer .rb-title { color: var(--rb-ink); }
.rb-section--ink .rb-offer .rb-copy { color: #554a43; }
.rb-section--ink .rb-offer .rb-copy strong { color: var(--rb-ink); }
.rb-section--ink .rb-offer .rb-quote { color: var(--rb-ink); }

/* Editorial Playfair system — light, tight and consistent */
.rb-title,
.rb-home-hero h1,
.rb-home-hero h2,
.rb-belief__line,
.rb-door__name,
.rb-concept h3,
.rb-card h3,
.rb-foundation h3,
.rb-proof h3,
.rb-timeline__item h3,
.rb-step h3,
.rb-fit__row h3,
.rb-included__item h3,
.rb-proof-clone h1,
.rb-proof-clone h2,
.rb-proof-clone h3 {
  font-weight: 400 !important;
  letter-spacing: -.03em !important;
  line-height: 1 !important;
}
.rb-quote,
.rb-signature,
.rb-layer p,
.rb-home-hero .rb-home-method {
  font-weight: 400 !important;
  letter-spacing: -.025em !important;
  line-height: 1.14 !important;
}

/* Footer */
.rb-footer { padding: 54px 0; border-top: 1px solid rgba(166,124,82,.2); background: var(--rb-sand); color: var(--rb-ink-soft); }
.rb-footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.rb-footer p { margin: 0; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .08em; }
.rb-social { display: flex; align-items: center; gap: 15px; }
.rb-social a { width: 34px; height: 34px; display: grid; place-items: center; color: var(--rb-bronze); border: 1px solid rgba(166,124,82,.28); border-radius: 50%; }
.rb-social svg { width: 16px; height: 16px; }

@media (max-width: 980px) {
  .rb-navlinks { display: none; }
  .rb-menu { display: block; }
  .rb-inner-hero--glow { min-height: 820px; align-items: flex-end; background: linear-gradient(90deg, #604e44 0%, #735d50 30%, #96735e 57%, #c68f68 78%, #efb376 100%); }
  .rb-inner-hero--glow::after { background: linear-gradient(180deg,rgba(37,24,14,.06) 0%,rgba(37,24,14,.16) 34%,rgba(37,24,14,.72) 72%,rgba(37,24,14,.92) 100%); }
  .rb-inner-hero--glow .rb-inner-hero__image { inset: 0; width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: 64% center; -webkit-mask-image: none; mask-image: none; }
  .rb-inner-hero--glow .rb-inner-hero__content { width: 100%; }
  .rb-home-hero { min-height: 820px; align-items: flex-end; background: linear-gradient(90deg, #604e44 0%, #735d50 30%, #96735e 57%, #c68f68 78%, #efb376 100%); }
  .rb-home-hero::before { display: none; }
  .rb-home-hero::after { background: linear-gradient(180deg,rgba(37,24,14,.06) 0%,rgba(37,24,14,.16) 34%,rgba(37,24,14,.72) 72%,rgba(37,24,14,.92) 100%); }
  .rb-home-hero__image { inset: 0; width: 100%; height: 100%; transform: none; aspect-ratio: auto; object-fit: cover; object-position: 64% center; -webkit-mask-image: none; mask-image: none; }
  .rb-home-hero__content { width: 100%; }
  .rb-split, .rb-split--reverse { grid-template-columns: 1fr; }
  .rb-split--reverse .rb-photo { order: 2; }
  .rb-concepts { grid-template-columns: 1fr; }
  .rb-media__grid { grid-template-columns: repeat(4,1fr); }
  .rb-steps { grid-template-columns: 1fr 1fr; }
  .rb-foundations { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .rb-container, .rb-narrow { width: min(100% - 32px, 1180px); }
  .rb-header { height: 68px; }
  .rb-brand { font-size: 21px; letter-spacing: .03em; }
  .rb-mobile { top: 68px; }
  .rb-section { padding: 76px 0; }
  .rb-inner-hero--glow { min-height: 760px; padding: 110px 0 48px; }
  .rb-inner-hero--glow .rb-title { font-size: 38px; line-height: .98; }
  .rb-inner-hero--glow .rb-lead { margin-top: 18px; font-size: 15px; line-height: 1.65; }
  .rb-inner-hero--glow .rb-authority { margin-top: 18px; font-size: 10px; line-height: 1.55; }
  .rb-inner-hero--glow .rb-eyebrow { margin-left: 0; }
  .rb-home-hero { min-height: 760px; padding: 110px 0 48px; }
  .rb-home-hero h1 { font-size: 58px; }
  .rb-home-hero h2 { font-size: 31px; }
  .rb-home-hero p { font-size: 15px; line-height: 1.65; }
  .rb-home-hero .rb-home-intro { font-size: 15px; }
  .rb-hero-authority { font-size: 11.5px !important; line-height: 1.5 !important; }
  .rb-positioning { padding: 72px 0; }
  .rb-positioning__title { font-size: 34px; }
  .rb-positioning__copy { font-size: 15px; line-height: 1.75; }
  .rb-method-declaration { padding: 76px 0; }
  .rb-method-declaration__grid { grid-template-columns: 1fr; gap: 34px; }
  .rb-method-declaration__text { font-size: 34px; line-height: 1.03; }
  .rb-method-declaration__photo { width: min(100%, 390px); margin: 0 auto; }
  .rb-btns { flex-direction: column; align-items: stretch; }
  .rb-btn { width: 100%; }
  .rb-media__grid { width: min(100% - 32px, 520px); grid-template-columns: repeat(2,1fr); gap: 18px 16px; }
  .rb-media__item { height: 42px; }
  .rb-media__item img { max-width: 90px; max-height: 28px; }
  .rb-photo, .rb-photo img { min-height: 420px; }
  .rb-belief, .rb-origin, .rb-offer { padding: 30px 24px; border-radius: 18px; }
  .rb-cards, .rb-fit, .rb-layers, .rb-story { grid-template-columns: 1fr; }
  .rb-door { min-height: 245px; padding: 28px; }
  .rb-timeline__item { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .rb-steps, .rb-foundations { grid-template-columns: 1fr; }
  .rb-included__item { grid-template-columns: 1fr; gap: 10px; padding: 25px 22px; }
  .rb-footer__inner { flex-direction: column; text-align: center; }
}

/* GLOW Operating System */
.rb-glow-os { position: relative; overflow: hidden; padding: 118px 0; background: linear-gradient(128deg, #f8f3ec 0%, #eee2d5 47%, #dfc8af 100%); }
.rb-glow-os::before { content: ''; position: absolute; width: 58vw; height: 58vw; right: -24vw; top: -34vw; border-radius: 50%; background: radial-gradient(circle, rgba(242,188,127,.40) 0%, rgba(242,188,127,0) 67%); pointer-events: none; }
.rb-glow-os .rb-container { position: relative; z-index: 1; }
.rb-glow-os__intro { max-width: 930px; margin: 0 auto; text-align: center; }
.rb-glow-os__intro .rb-title { margin: 16px 0 24px; }
.rb-glow-os__lead { max-width: 900px; margin: 0 auto; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 3vw, 42px); font-weight: 400; letter-spacing: -.03em; line-height: 1.14; }
.rb-glow-os__position { max-width: 780px; margin: 25px auto 0; color: #65574c; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 300; line-height: 1.8; }
.rb-glow-os__phases { display: grid; gap: 18px; margin-top: clamp(50px, 7vw, 86px); }
.rb-glow-os__phase { border: 1px solid rgba(138,94,48,.22); border-radius: 22px; box-shadow: 0 18px 48px rgba(73,49,33,.07); }
.rb-glow-os__phase--be { padding: clamp(28px,4vw,50px); background: rgba(255,252,247,.76); }
.rb-glow-os__phase--do, .rb-glow-os__phase--have { display: grid; grid-template-columns: minmax(210px,.72fr) minmax(0,1.28fr); gap: clamp(26px,5vw,68px); align-items: center; padding: clamp(28px,4vw,48px); }
.rb-glow-os__phase--do { background: linear-gradient(105deg, rgba(244,229,217,.94), rgba(255,250,245,.84)); }
.rb-glow-os__phase--have { background: linear-gradient(105deg, rgba(224,196,164,.92), rgba(251,241,225,.83)); }
.rb-glow-os__phase-head { align-self: start; }
.rb-glow-os__phase-head span { color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.rb-glow-os__phase-head p { max-width: 320px; margin: 16px 0 0; color: #615349; font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 400; letter-spacing: -.025em; line-height: 1.16; }
.rb-glow-os__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.rb-glow-os__step { min-height: 100%; padding: 27px 23px; border: 1px solid rgba(166,124,82,.22); border-radius: 16px; background: rgba(255,255,255,.57); }
.rb-glow-os__step > span { color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .14em; }
.rb-glow-os__step h3 { margin: 15px 0 11px; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 400; letter-spacing: -.03em; line-height: 1.03; }
.rb-glow-os__step p { margin: 0; color: #60544b; font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 300; line-height: 1.76; }
.rb-glow-os__phase--do .rb-glow-os__step, .rb-glow-os__phase--have .rb-glow-os__step { padding: 30px; }
.rb-glow-os__foundations { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; margin-top: 20px; color: #695644; font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.rb-glow-os__foundations strong { margin-right: 7px; color: var(--rb-ink); font-weight: 500; }
.rb-glow-os__foundations span { padding: 8px 11px; border: 1px solid rgba(166,124,82,.22); border-radius: 999px; background: rgba(255,255,255,.50); }
.rb-glow-os__closing { max-width: 920px; margin: 34px auto 0; padding: 30px 35px; border-left: 2px solid var(--rb-gold); background: rgba(255,253,249,.62); }
.rb-glow-os__closing p { margin: 0; color: #584c43; font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 400; letter-spacing: -.025em; line-height: 1.25; }
@media (max-width: 980px) { .rb-glow-os { padding: 82px 0; } .rb-glow-os__phase--do, .rb-glow-os__phase--have { grid-template-columns: 1fr; } .rb-glow-os__steps { grid-template-columns: 1fr; } .rb-glow-os__phase--do .rb-glow-os__step, .rb-glow-os__phase--have .rb-glow-os__step { padding: 27px 23px; } }
@media (max-width: 640px) { .rb-glow-os { padding: 70px 0; } .rb-glow-os__lead { font-size: 29px; line-height: 1.1; } .rb-glow-os__position { font-size: 14px; } .rb-glow-os__phase--be, .rb-glow-os__phase--do, .rb-glow-os__phase--have { padding: 24px 18px; border-radius: 16px; } .rb-glow-os__phase-head p { font-size: 22px; } .rb-glow-os__steps { margin-top: 25px; } .rb-glow-os__step, .rb-glow-os__phase--do .rb-glow-os__step, .rb-glow-os__phase--have .rb-glow-os__step { padding: 23px 19px; } .rb-glow-os__step h3 { font-size: 26px; } .rb-glow-os__closing { padding: 25px 21px; } .rb-glow-os__closing p { font-size: 22px; } .rb-glow-os__foundations strong { width: 100%; margin: 0 0 3px; } }

/* Mon travail refinement */
.rb-positioning .rb-narrow { max-width: 1240px; }
.rb-positioning__title { max-width: 1210px; font-size: clamp(31px, 3.25vw, 50px); line-height: 1.08; }
.rb-positioning__title em { font-style: italic; font-weight: 400; }
.rb-positioning__copy strong { color: var(--rb-ink); font-weight: 500; }
@media (max-width: 640px) { .rb-positioning__title { max-width: 100%; font-size: 31px; line-height: 1.08; } }

/* Unified Mon travail and GLOW method refinement */
.rb-work-unified .rb-title { max-width: 690px; font-size: clamp(28px, 2.85vw, 45px); line-height: 1.1; }
.rb-work-unified .rb-copy { max-width: 690px; }
.rb-method-declaration__support { max-width: 700px; margin-top: 27px; }
.rb-method-declaration__support p { margin: 0; color: #60544b; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 300; line-height: 1.82; }
.rb-method-declaration__support p + p { margin-top: 16px; }
.rb-method-declaration__support strong { color: var(--rb-ink); font-weight: 500; }
.rb-glow-summary { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: clamp(42px,6vw,74px); }
.rb-glow-summary article { padding: 27px 23px; border: 1px solid rgba(166,124,82,.22); border-radius: 17px; background: rgba(255,253,249,.72); box-shadow: 0 12px 35px rgba(73,49,33,.05); }
.rb-glow-summary article > span { color: var(--rb-bronze); font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: .15em; }
.rb-glow-summary h3 { margin: 15px 0 11px; color: var(--rb-ink); font-family: 'Playfair Display', Georgia, serif; font-size: 27px; font-weight: 400; letter-spacing: -.03em; line-height: 1.04; }
.rb-glow-summary p { margin: 0; color: #62574e; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 300; line-height: 1.72; }
@media (max-width: 980px) { .rb-glow-summary { grid-template-columns: 1fr 1fr; } .rb-work-unified .rb-title, .rb-work-unified .rb-copy { max-width: none; } }
@media (max-width: 640px) { .rb-work-unified .rb-title { font-size: 31px; line-height: 1.08; } .rb-method-declaration__support p { font-size: 14px; line-height: 1.75; } .rb-glow-summary { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; } .rb-glow-summary article { padding: 24px 20px; } }
