// tamara-body.jsx — Tamara Lifestyle body sections.
//
// Layout vocabulary: editorial magazine spread. Each section opens
// with a numbered flag ("01 / VOICE", "02 / ENVIRONMENT", "03 /
// LEVEL II · APPLY") so the page reads as a sequenced spread rather
// than a stacked column of marketing blocks. The vocabulary is the
// same across all three palette artboards on the design canvas;
// what changes is the chamber color and the accent.
//
// Page sequence (per the brief):
//   01 Editorial intro paragraph        — ivory
//   02 Where pivots are happening       — environment, recognition-first
//   03 Level II · The Founding 21       — offer, deep chamber
//
// 02 is placed BEFORE 03 because Tamara's conversion mechanism is
// recognition: she has to see herself in the world before she's
// invited to commit to the offer. The page flow is see her world →
// see herself in it → receive the offer.

// ─────────────────────────────────────────────────────────────
// A · The Tech Lifestyle space — section 2. Mirrors the Brenda
// Builder's Lab editorial pattern beat-for-beat: full-bleed
// photograph with the section title set in display serif at its
// lower edge, body copy on the navy ground, hairline destination
// box closing the section. The pattern is the system's; here it
// is dressed in Tamara's locked Navy + Bronze chamber.
//
// Photograph: the loft interior with floor-to-ceiling windows
// onto the Atlanta skyline and a wall-mounted display carrying
// the LIVING DIGITALLY wordmark — the literal space where the
// pivot gets recognized as work.
// ─────────────────────────────────────────────────────────────
const TamaraIntro = () => (
  <section id="voice"
    data-screen-label="Tamara · 02 The Tech Lifestyle space"
    style={{
      background: 'var(--t-structure)',
      color: 'var(--t-text-on-dark)',
      position: 'relative', overflow: 'hidden',
    }}>
    {/* ── 1. Photograph — full-bleed, with the section title set
        in display serif italic at the lower edge of the image on
        a navy-fading scrim, exactly as the Builder's Lab pattern
        renders it. The bronze period at the end of the title is
        Tamara's signature stamp (matches the "Tamara." nameplate
        on the hero). */}
    <div style={{ position: 'relative' }}>
      <img
        src="assets/space-tamara-private-community-atlanta.png"
        alt="The Tech Lifestyle space — a sun-lit Atlanta loft with floor-to-ceiling windows onto the downtown skyline, white-brick walls, polished concrete floor, a glass table catching the afternoon light, and a wall-mounted display carrying the LIVING DIGITALLY wordmark above a residential photograph."
        style={{
          display: 'block', width: '100%', height: 'auto',
          aspectRatio: '4 / 3', objectFit: 'cover',
        }} />

      {/* Bottom-of-image scrim so the title stays legible no matter
          where the photo is cropped on small screens. */}
      <div aria-hidden="true" style={{
        position: 'absolute', left: 0, right: 0, bottom: 0, height: '52%',
        background: 'linear-gradient(180deg, rgba(13,27,61,0) 0%, rgba(13,27,61,0.55) 55%, rgba(13,27,61,0.94) 100%)',
        pointerEvents: 'none',
      }} />

      <div style={{
        position: 'absolute', left: 0, right: 0, bottom: 0,
        padding: '0 24px 22px',
      }}>
        <h2 style={{
          fontFamily: 'var(--font-display)', fontWeight: 300,
          fontStyle: 'italic',
          fontSize: 42, lineHeight: 1.0, letterSpacing: '-0.018em',
          color: 'var(--t-text-on-dark)', margin: 0,
          textShadow: '0 2px 18px rgba(0,0,0,0.45)',
        }}>
          The Tech Lifestyle<span style={{
            fontStyle: 'normal', color: 'var(--t-accent)',
          }}>.</span>
        </h2>
      </div>
    </div>

    {/* ── 2. Body copy — pearl on navy. The replacement paragraph
        is broken into two stanzas at the natural pivot ("Every
        Resident walks in…") so the cohort line lands rather than
        being buried mid-paragraph. Same editorial rhythm as the
        Builder's Lab excerpt. */}
    <div style={{ padding: '36px 24px 36px' }}>
      <p style={{
        fontFamily: 'var(--font-body)', fontSize: 15, lineHeight: 1.72,
        color: 'var(--t-text-on-dark-2)', margin: '0 0 18px',
      }}>
        <span style={{
          fontFamily: 'var(--font-display)', fontStyle: 'italic',
          fontWeight: 400, fontSize: 17,
          color: 'var(--t-text-on-dark)',
        }}>Living Digitally<sup style={{ fontSize: 10, marginLeft: 1 }}>™</sup></span>{' '}
        is the space where the pivot gets recognized as work. The
        transferable skills you've already built become the
        infrastructure for what's next.
      </p>

      <p style={{
        fontFamily: 'var(--font-body)', fontSize: 15, lineHeight: 1.72,
        color: 'var(--t-text-on-dark-2)', margin: '0 0 26px',
      }}>
        Every Resident walks in and immediately receives the{' '}
        <em style={{
          fontStyle: 'italic', color: 'var(--t-text-on-dark)',
        }}>Core Curriculum.</em>{' '}
        The seven-day live cohort inside The Tech Lifestyle is where
        you start trying something new in the company of women doing
        the same.
      </p>

      {/* Bronze hairline + "By the end of the seven days…" signature
          paragraph were removed per direction — the destination box
          now follows the body copy directly, with a single short
          bronze rule as the only beat between them. Keeps the
          section tight; no dead space. */}
      <div style={{
        height: 1, background: 'var(--t-accent)', width: 48,
        margin: '0 0 24px', opacity: 0.85,
      }} />

      {/* ── 3. Destination box — hairline aqua frame, aqua serif
          title, small-caps subtitle in pearl. Mirrors the Builder's
          Lab CTA card beat-for-beat (the pattern is the system's).
          The box is a callout, not a button — the click target is
          implicit; the BAND app is where you actually walk in. */}
      <a href="/tech-lifestyle" style={{
        display: 'block', textDecoration: 'none',
        border: '1px solid rgba(95,224,230,0.55)',
        borderRadius: 2,
        padding: '24px 22px 22px',
        background: 'rgba(95,224,230,0.04)',
        transition: 'background 180ms ease, border-color 180ms ease',
      }}
      onMouseEnter={(e) => { e.currentTarget.style.background = 'rgba(95,224,230,0.08)'; e.currentTarget.style.borderColor = 'var(--ld-aqua)'; }}
      onMouseLeave={(e) => { e.currentTarget.style.background = 'rgba(95,224,230,0.04)'; e.currentTarget.style.borderColor = 'rgba(95,224,230,0.55)'; }}>
        <div style={{
          fontFamily: 'var(--font-display)', fontWeight: 300,
          fontSize: 26, lineHeight: 1.15, letterSpacing: '-0.008em',
          color: 'var(--ld-aqua)', margin: 0,
        }}>
          Living Digitally<sup style={{ fontSize: 12, marginLeft: 1 }}>™</sup> Tech Lifestyle
        </div>
        <div style={{
          marginTop: 10,
          fontFamily: 'var(--font-body)', fontWeight: 600,
          fontSize: 10.5, letterSpacing: '0.24em', textTransform: 'uppercase',
          color: 'var(--t-text-on-dark-2)',
        }}>
          By appointment + open hours in the Band app
        </div>
      </a>
    </div>
  </section>
);

// ─────────────────────────────────────────────────────────────
// B · "Where pivots are happening" — environment section. The
// Atlanta Reinvention Archive image sits as the chamber: empty
// room, glass desk, certifications, the sculptural object, the
// skyline through the window. The figure (Tamara) is absent here
// — this is the room she walks into, not her portrait.
//
// Recognition-first placement: this section is BEFORE the offer.
// The visitor sees the cities, sees the chamber, then receives
// the offer.
// ─────────────────────────────────────────────────────────────
const TAMARA_CITIES = [
  { city: 'Atlanta',    state: 'GA' },
  { city: 'Charlotte',  state: 'NC' },
  { city: 'Birmingham', state: 'AL' },
  { city: 'Memphis',    state: 'TN' },
];

const TamaraEnvironment = () => (
  <section id="environment"
    data-screen-label="Tamara · 03 Where pivots are happening"
    style={{
      background: 'var(--t-ground)',
      borderTop: '1px solid var(--t-line)',
    }}>
    <div style={{
      display: 'flex', alignItems: 'center', gap: 12,
      padding: '24px 22px 24px',
    }}>
      <TFlag color="var(--t-accent)">02 / Environment</TFlag>
      <span style={{
        flex: 1, height: 1, background: 'var(--t-line)',
      }} />
    </div>

    {/* Full-bleed photo with the section title settled at the
        bottom of the image on a scrim. Same pattern as the
        Brenda Legacy Library — keeps the system reading as one
        across Lifestyles, with the photograph carrying the
        sectional weight. */}
    <div style={{ position: 'relative' }}>
      <img
        src="assets/space-tamara-archive-atlanta.png"
        alt="The Atlanta Reinvention Archive — an empty corner office on a high floor, white-brick wall, polished concrete floor, glass desk holding a stack of navy-bound certifications and a small sculptural object, with the Atlanta skyline framed by floor-to-ceiling windows."
        style={{
          display: 'block', width: '100%', height: 'auto',
          aspectRatio: '11 / 9', objectFit: 'cover',
        }} />

      <div aria-hidden="true" style={{
        position: 'absolute', left: 0, right: 0, bottom: 0, height: '46%',
        background: 'linear-gradient(180deg, rgba(14,27,54,0) 0%, rgba(14,27,54,0.55) 60%, rgba(14,27,54,0.92) 100%)',
        pointerEvents: 'none',
      }} />

      <div style={{
        position: 'absolute', left: 0, right: 0, bottom: 0,
        padding: '0 22px 22px',
      }}>
        <TFlag color="var(--ld-aqua)" style={{ display: 'block', marginBottom: 12 }}>
          The Reinvention Archive · Atlanta
        </TFlag>
        <h2 style={{
          fontFamily: 'var(--font-display)', fontWeight: 300,
          fontSize: 40, lineHeight: 0.98, letterSpacing: '-0.018em',
          color: '#F4ECDD', margin: 0,
          textShadow: '0 2px 18px rgba(0,0,0,0.45)',
        }}>
          Where pivots <em style={{ fontStyle: 'italic' }}>are happening.</em>
        </h2>
      </div>
    </div>

    {/* The cities — set as a four-line stanza with state codes
        in the accent color. Reads as an editorial map. Each city
        on its own line; the editorial weight comes from the
        scale + the hairline rules between, not from numbered
        bullets or icons. */}
    <div style={{ padding: '40px 22px 8px' }}>
      <div style={{
        borderTop: '1px solid var(--t-line)',
      }}>
        {TAMARA_CITIES.map((c, i) => (
          <div key={c.city} style={{
            display: 'flex', alignItems: 'baseline',
            justifyContent: 'space-between',
            padding: '18px 0',
            borderBottom: '1px solid var(--t-line)',
          }}>
            <span style={{
              fontFamily: 'var(--font-display)', fontWeight: 300,
              fontSize: 28, lineHeight: 1, letterSpacing: '-0.01em',
              color: 'var(--t-text)',
            }}>{c.city}</span>
            <TFlag color="var(--t-accent)">{c.state}</TFlag>
          </div>
        ))}
      </div>
      <p style={{
        fontFamily: 'var(--font-body)', fontSize: 12.5, lineHeight: 1.55,
        color: 'var(--t-text-3)', margin: '16px 0 0',
        fontStyle: 'italic',
      }}>
        Cities full of women in the middle of becoming.
      </p>
    </div>

    {/* Body — three editorial sentences. The "retail manager / single
        mother / professional in her forties" rhythm is preserved
        from the brief, with each archetype set as a separate line
        so the cadence reads as a roll-call rather than a list. */}
    <div style={{ padding: '24px 22px 8px' }}>
      <p style={{
        fontFamily: 'var(--font-body)', fontSize: 15, lineHeight: 1.72,
        color: 'var(--t-text-2)', margin: '0 0 18px',
      }}>
        The retail manager opening her own consulting practice. The
        single mother adding a contract income while her teenager
        finishes high school. The professional in her forties pivoting
        into something she couldn't name a year ago. The woman who
        knows she's smart, knows she has experience, and is finally
        adding the digital vocabulary to carry it forward.
      </p>

      {/* Closing italic — the recognition statement. Lifted off the
          paragraph with a hairline rule above so it reads as the
          chapter close, not as part of the previous prose. */}
      <div style={{
        marginTop: 24, paddingTop: 22,
        borderTop: '1px solid var(--t-line)',
      }}>
        <p style={{
          fontFamily: 'var(--font-display)', fontStyle: 'italic',
          fontWeight: 400, fontSize: 19, lineHeight: 1.45,
          color: 'var(--t-text)', margin: 0,
        }}>
          Living Digitally<sup style={{ fontSize: 10 }}>™</sup> is not a
          course for people starting from zero. It is the recognition that
          your skills are{' '}
          <span style={{ color: 'var(--t-accent)' }}>transferable</span>
          {' '}— and the infrastructure to make them visible in the next
          chapter.
        </p>
      </div>
    </div>
  </section>
);

// ─────────────────────────────────────────────────────────────
// C · Level II · The Founding 21 — the offer chamber. Set on
// --t-structure (the deep ground) so it reads as a serious moment
// of decision. Mirrors Brenda's Level I bridge skeleton beat-for-
// beat (intro with accent-keyed phrases → section tag → giant
// numeral → italic display headline → accent left-rule pull-quote
// → body → italic finale with "One Culture." in aqua → aqua
// pillow CTA → italic underline tertiary), tuned for Level II.
// ─────────────────────────────────────────────────────────────
const TamaraLevelII = () => (
  <section id="level-ii"
    data-screen-label="Tamara · 04 Level II · The Founding 21"
    style={{
      // Local palette tokens — the three-chamber treatment.
      // This section breaks out of the page's ivory-bronze palette
      // into its own braid of OXBLOOD + DEEP TEAL + BRONZE
      // (the accents from the three retired palette directions).
      // Background = deep teal (deepest of the three). Oxblood
      // does cool-cut editorial work (pull-quote rule, finale
      // highlight, italic "21."). Bronze does the warm call-to-
      // action work (numeral, CTA fill, eyebrow).
      '--ox':   '#6B1E2A',
      '--teal': '#1F4E4F',
      '--brz':  '#824807',
      '--ink':  '#F2E6CC',
      '--ink-2':'rgba(242,230,204,0.78)',
      '--rule': 'rgba(242,230,204,0.20)',

      background: 'var(--teal)',
      color: 'var(--ink)',
      padding: '72px 22px 80px',
      position: 'relative',
    }}>
    {/* Three-bar palette-chamber band + "03 / Level II · Apply"
        flag and its rule line were removed per direction. The
        section now opens directly into the intro paragraph and
        bleeds out of the navy intro above with the soft gradient
        below — no hard label, no horizontal rule. */}

    {/* Top-bleed band — a 28px strip that extends ABOVE the
        section's top edge, fading from transparent into this
        section's teal ground. The result: a soft, gradient
        transition between the navy intro and the teal Level II
        chamber, rather than a hard color cut. Same trick is used
        on the founder's-note and cross-nav sections below so the
        whole page reads as a continuous editorial flow. */}
    <div aria-hidden="true" style={{
      position: 'absolute', top: -28, left: 0, right: 0, height: 28,
      background:
        'linear-gradient(180deg, color-mix(in srgb, var(--teal) 0%, transparent) 0%, color-mix(in srgb, var(--teal) 60%, transparent) 65%, var(--teal) 100%)',
      pointerEvents: 'none',
    }} />

    {/* 1 · Intro paragraph — mirrors the Level III · Access
        reference treatment: key nouns rendered as aqua-underlined
        phrases that read like inline links / pull-words, against
        quiet pearl body copy. Same emphasis technique, anchored
        to Tamara's locked palette. */}
    <p style={{
      fontFamily: 'var(--font-body)', fontSize: 16, lineHeight: 1.65,
      color: 'var(--ink-2)', margin: '0 0 48px', maxWidth: 480,
    }}>
      To experience{' '}
      <span style={{
        fontFamily: 'var(--font-display)', fontStyle: 'italic',
        fontWeight: 700,
        fontSize: 19,
        backgroundImage: 'linear-gradient(180deg, #F4D88A 0%, #C9A24A 55%, #824807 100%)',
        WebkitBackgroundClip: 'text', backgroundClip: 'text',
        color: 'transparent',
        WebkitTextFillColor: 'transparent',
        textShadow: '0 0 18px rgba(201,162,74,0.55)',
      }}>The Tech Lifestyle</span>{' '}
      in the middle of becoming, walk in through{' '}
      <span style={{
        fontFamily: 'var(--font-display)', fontStyle: 'italic',
        fontWeight: 700,
        fontSize: 19,
        backgroundImage: 'linear-gradient(180deg, #F4D88A 0%, #C9A24A 55%, #824807 100%)',
        WebkitBackgroundClip: 'text', backgroundClip: 'text',
        color: 'transparent',
        WebkitTextFillColor: 'transparent',
        textShadow: '0 0 18px rgba(201,162,74,0.55)',
      }}>Apply</span>{' '}
      and become one of{' '}
      <span style={{
        fontFamily: 'var(--font-display)', fontStyle: 'italic',
        fontWeight: 700,
        fontSize: 19,
        backgroundImage: 'linear-gradient(180deg, #F4D88A 0%, #C9A24A 55%, #824807 100%)',
        WebkitBackgroundClip: 'text', backgroundClip: 'text',
        color: 'transparent',
        WebkitTextFillColor: 'transparent',
        textShadow: '0 0 18px rgba(201,162,74,0.55)',
      }}>The Founding 21</span>. By the end of the seven days,
      you'll walk away with a personalized AI prompt built for
      one real moment in your next chapter, a new way to translate
      what you already know into the language of what's next, and
      recognition from women who aren't starting over but starting
      something new.
    </p>

    {/* 2 · Section tag — heavy-weight, shimmer-gradient fill,
        with a soft aqua bloom behind so it carries off the field.
        Reads as the section's nameplate, not a footnote. */}
    <div style={{
      fontFamily: 'var(--font-body)', fontWeight: 900,
      fontSize: 14, letterSpacing: '0.34em', textTransform: 'uppercase',
      backgroundImage: 'linear-gradient(180deg, #C7F5F8 0%, #5FE0E6 55%, #2BB7BE 100%)',
      WebkitBackgroundClip: 'text', backgroundClip: 'text',
      color: 'transparent',
      WebkitTextFillColor: 'transparent',
      filter: 'drop-shadow(0 0 14px rgba(95,224,230,0.6))',
      margin: '0 0 24px',
    }}>
      Level II · Apply
    </div>

    {/* 3 · Giant numeral — polished-bronze gradient fill so it
        reads like brushed metal under stage light rather than a
        flat-painted shape. Stronger halo + a faint highlight
        stroke at the top edge for the "shine" cue. */}
    <div style={{
      fontFamily: 'var(--font-display)', fontWeight: 700,
      fontSize: 168, lineHeight: 0.86, letterSpacing: '-0.045em',
      backgroundImage: 'linear-gradient(180deg, #F4C977 0%, #C9852E 38%, #824807 78%, #5B2E04 100%)',
      WebkitBackgroundClip: 'text', backgroundClip: 'text',
      color: 'transparent',
      WebkitTextFillColor: 'transparent',
      filter: 'drop-shadow(0 0 42px rgba(201,133,46,0.55)) drop-shadow(0 2px 0 rgba(244,201,119,0.35))',
      margin: '0 0 10px',
    }}>II</div>

    {/* 4 · Italic display headline. "21." is now the loudest
        editorial pop on the page — oxblood→ember gradient,
        weight 700, larger again, with a strong oxblood halo so
        it carries the same visual weight "II" does above. */}
    <h2 style={{
      fontFamily: 'var(--font-display)', fontWeight: 400,
      fontSize: 48, lineHeight: 1.02, letterSpacing: '-0.014em',
      color: 'var(--ink)',
      margin: '0 0 38px',
    }}>
      The Founding<br />
      <em style={{
        fontStyle: 'italic',
        fontWeight: 700,
        fontSize: 68,
        backgroundImage: 'linear-gradient(180deg, #C7F5F8 0%, #5FE0E6 55%, #2BB7BE 100%)',
        WebkitBackgroundClip: 'text', backgroundClip: 'text',
        color: 'transparent',
        WebkitTextFillColor: 'transparent',
        filter: 'drop-shadow(0 0 32px rgba(95,224,230,0.6))',
        letterSpacing: '-0.025em',
      }}>21.</em>
    </h2>

    {/* 5 · Pull-quote — OXBLOOD left rule, italic. Oxblood now
        carries the role aqua previously held: the editorial rule
      {/* Pull-quote rail — bronze hairline. Was oxblood; bronze
        ties the rule into the section's warm-metal voice (the
        "LEVEL II · APPLY" tag and the giant "II"). */}
    <div style={{
      borderLeft: '2px solid var(--brz)',
      paddingLeft: 18,
      margin: '0 0 28px',
      maxWidth: 460,
    }}>
      <p style={{
        fontFamily: 'var(--font-display)', fontStyle: 'italic',
        fontWeight: 400, fontSize: 19, lineHeight: 1.45,
        color: 'var(--ink)', margin: 0,
      }}>
        Apply is the only doorway with a private{' '}
        <span style={{
          fontFamily: 'var(--font-display)', fontStyle: 'italic',
          fontWeight: 700,
          backgroundImage: 'linear-gradient(180deg, #F4D88A 0%, #C9A24A 55%, #824807 100%)',
          WebkitBackgroundClip: 'text', backgroundClip: 'text',
          color: 'transparent',
          WebkitTextFillColor: 'transparent',
          textShadow: '0 0 14px rgba(201,162,74,0.45)',
        }}>15-minute Prompt Precision Session</span>{' '}
        led by Lacey, built for the woman reinventing herself.
        This group is close to Lacey's heart, as she is proudly
        navigating this phase of life herself.
      </p>
    </div>

    {/* 6 · Body paragraph. */}
    <p style={{
      fontFamily: 'var(--font-body)', fontSize: 15, lineHeight: 1.72,
      color: 'var(--ink-2)', margin: '0 0 44px', maxWidth: 460,
    }}>
      Together, we refine one prompt for one real moment in your
      transition: a job application, a difficult email, a portfolio
      caption, a LinkedIn rewrite. You leave with a working tool in
      your hands, yours to use again, and a digital language that
      translates your transferable skills into what the next chapter
      requires.
    </p>

    {/* 7 · Italic finale — "One Culture." carries the same aqua
        gradient as the giant "21." above so the two editorial
        pops rhyme. */}
    <p style={{
      fontFamily: 'var(--font-display)', fontStyle: 'italic',
      fontWeight: 400, fontSize: 22, lineHeight: 1.35,
      color: 'var(--ink)', margin: '0 0 36px',
    }}>
      <span style={{ fontWeight: 700 }}>Thirty-five seats. Three doorways.</span><br />
      <span style={{
        fontStyle: 'italic',
        fontWeight: 700,
        backgroundImage: 'linear-gradient(180deg, #C7F5F8 0%, #5FE0E6 55%, #2BB7BE 100%)',
        WebkitBackgroundClip: 'text', backgroundClip: 'text',
        color: 'transparent',
        WebkitTextFillColor: 'transparent',
        filter: 'drop-shadow(0 0 22px rgba(95,224,230,0.5))',
      }}>One Culture.</span>
    </p>

    {/* 8 · Primary CTA — BRONZE pillow. The hero CTA on this page
        is already a bronze pillow, so anchoring the Level II CTA
        in the same color keeps the page's primary-action color
        consistent while the surrounding chamber holds the three
        accent colors. */}
    <a href="/signature-program" style={{
      display: 'inline-block', textDecoration: 'none', borderBottom: 'none',
      color: 'inherit',
    }}>
      {/* "From Woman Reinventing to...." eyebrow removed per
          direction — the bronze button now stands on its own
          above the Founder's Loft link stack. The same eyebrow
          still appears above the HERO button in tamara-hero.jsx;
          this only retires the duplicate in the Level II section. */}
      <div style={{
        display: 'inline-flex', alignItems: 'center', gap: 12,
        fontFamily: 'var(--font-body)', fontWeight: 700,
        fontSize: 12, letterSpacing: '0.26em', textTransform: 'uppercase',
        background: 'var(--brz)', color: 'var(--ink)',
        padding: '17px 26px', borderRadius: 2,
        boxShadow: '0 0 32px rgba(130,72,7,0.28)',
      }}>
        <span>1 of the Founding 21</span>
        <span>→</span>
      </div>
    </a>

    {/* Under-button reassurance line removed per direction —
        the bronze button now stands without a caption beneath it,
        and the tertiary link below carries the rest of the work. */}

    {/* Tertiary — italic underline link. The previous stacked
        "Explore The Founder's Loft / Private Learning / Community"
        treatment was retired per direction; the link now reads as
        a single quiet doorway-comparison line. */}
    <div style={{ marginTop: 24 }}>
      <a href="/foyer-faq" style={{
display: 'inline-block',
        fontFamily: 'var(--font-display)',
        fontStyle: 'italic',
        fontSize: 15,
        color: 'var(--ink-2)'
        }}>
        Compare all three doorways
      </a>
    </div>
  </section>
);

Object.assign(window, { TamaraIntro, TamaraEnvironment, TamaraLevelII });
