:root { display: block; min-height: 100%; color-scheme: dark; }
.iam-page { min-height: 100vh; }
:root {
      --ink: #1d1d1f;
      --ink-soft: #2c2c2e;
      --paper: #f5f5f7;
      --white: #ffffff;
      --bronze: #9b7040;
      --bronze-soft: #caa87c;
      --muted: #6e6e73;
      --line: rgba(29, 29, 31, .12);
      --max: 1200px;
      --radius: 30px;
      --shadow: 0 30px 80px rgba(0, 0, 0, .13);
    }

    * { box-sizing: border-box; }
    :root { scroll-behavior: smooth; }
    .iam-page {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; }
    .wrap { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .82);
      border-bottom: 1px solid rgba(29, 29, 31, .08);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
    }

    .header-inner {
      position: relative;
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      font-size: 1.02rem;
      font-weight: 650;
      letter-spacing: -.02em;
      text-decoration: none;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      min-height: 38px;
      align-items: center;
      gap: 10px;
      padding: 0 14px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 999px;
      background: rgba(255, 255, 255, .06);
      color: #fff;
      font: inherit;
      font-size: .76rem;
      font-weight: 650;
      cursor: pointer;
    }
    .menu-toggle-icon { font-size: 1rem; line-height: 1; }

    nav { display: flex; align-items: center; gap: clamp(16px, 2.6vw, 32px); }
    nav a {
      color: #424245;
      font-size: .75rem;
      font-weight: 500;
      text-decoration: none;
      transition: color .18s ease;
    }
    nav a:hover { color: var(--bronze); }

    .hero {
      padding: clamp(84px, 11vw, 150px) 0 42px;
      text-align: center;
      overflow: hidden;
    }

    .eyebrow {
      margin: 0 0 20px;
      color: var(--bronze);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 1000px;
      margin: 0 auto;
      font-size: clamp(3rem, 5.4vw, 4.75rem);
      font-weight: 620;
      letter-spacing: -.055em;
      line-height: .98;
      padding-bottom: .11em;
      overflow: visible;
    }

    .hero-copy {
      max-width: 760px;
      margin: 34px auto 0;
      color: var(--muted);
      font-size: clamp(1.16rem, 2vw, 1.48rem);
      font-weight: 450;
      letter-spacing: -.025em;
      line-height: 1.42;
    }

    .hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .button {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      border: 1px solid var(--ink);
      border-radius: 999px;
      background: var(--ink);
      color: var(--white);
      font-size: .88rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform .18s ease, background .18s ease, color .18s ease;
    }
    .button:hover { transform: translateY(-2px); background: #000; }
    .button.secondary { background: transparent; color: var(--ink); }
    .button.secondary:hover { background: var(--white); }
    .button.light { background: var(--white); border-color: var(--white); color: var(--ink); }

    .hero-logo {
      width: min(calc(100% - 48px), 1160px);
      margin: clamp(64px, 8vw, 100px) auto 0;
    }
    .hero-logo img {
      width: 100%;
      height: auto;
      object-fit: contain;
      border: 0;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transform: none;
    }

    .metrics { padding: 24px 0 clamp(90px, 12vw, 150px); }
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      background: var(--white);
      border: 1px solid rgba(29, 29, 31, .08);
      border-radius: var(--radius);
      box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
    }
    .metric { padding: 36px clamp(24px, 4vw, 48px); text-align: center; border-right: 1px solid var(--line); }
    .metric:last-child { border-right: 0; }
    .metric strong { display: block; font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 650; letter-spacing: -.06em; }
    .metric span { display: block; margin-top: 8px; color: var(--muted); font-size: .78rem; font-weight: 600; }

    .section { padding: clamp(90px, 12vw, 160px) 0; }
    .section.white { background: var(--white); }
    .section.dark { background: var(--ink); color: var(--white); }
    .section-heading { max-width: 900px; margin-bottom: clamp(48px, 7vw, 84px); }
    .section-heading.center { margin-inline: auto; text-align: center; }
    h2 {
      margin-bottom: 0;
      font-size: clamp(2.5rem, 4.2vw, 4rem);
      font-weight: 620;
      letter-spacing: -.05em;
      line-height: 1;
    }
    .section-lead {
      max-width: 700px;
      margin: 26px 0 0;
      color: var(--muted);
      font-size: clamp(1.05rem, 1.7vw, 1.3rem);
      letter-spacing: -.02em;
      line-height: 1.5;
    }
    .section-heading.center .section-lead { margin-inline: auto; }
    .dark .section-lead { color: rgba(255, 255, 255, .62); }

    .about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(50px, 9vw, 120px); }
    .portrait img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: 0 26px 70px rgba(0, 0, 0, .14);
      filter: none;
    }
    .about-copy h2 { font-size: clamp(2.5rem, 4.2vw, 4rem); }
    .about-copy p {
      margin: 26px 0 0;
      color: var(--muted);
      font-size: clamp(1.04rem, 1.6vw, 1.22rem);
      letter-spacing: -.015em;
      line-height: 1.58;
    }
    .about-copy strong { color: var(--ink); font-weight: 650; }
    .text-link {
      display: inline-block;
      margin-top: 28px;
      color: var(--bronze);
      font-size: .92rem;
      font-weight: 600;
      text-decoration: none;
    }
    .text-link::after { content: "  ›"; }

    .bento { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
    .bento-side { display: grid; gap: 20px; }
    .feature {
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: clamp(30px, 4vw, 52px);
      overflow: hidden;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid rgba(29, 29, 31, .07);
    }
    .feature.primary {
      min-height: 660px;
      background:
        radial-gradient(circle at 85% 15%, rgba(202, 168, 124, .42), transparent 34%),
        linear-gradient(145deg, #24211e, #111);
      color: var(--white);
    }
    .feature.accent { background: linear-gradient(145deg, #d1b18a, #a27645); color: #211a13; }
    .feature-label { font-size: .75rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; opacity: .72; }
    .feature h3 { max-width: 620px; margin: 0; font-size: clamp(1.65rem, 2.7vw, 2.75rem); font-weight: 620; letter-spacing: -.045em; line-height: 1.04; }
    .feature p { max-width: 560px; margin: 20px 0 0; color: var(--muted); line-height: 1.55; }
    .feature.primary p { color: rgba(255, 255, 255, .62); }

    .work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .work-card {
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 36px;
      border-radius: var(--radius);
      background: #f5f5f7;
      text-decoration: none;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .work-card:hover { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(0, 0, 0, .1); }
    .work-card span { color: var(--bronze); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .work-card h3 { margin: 0; font-size: clamp(1.55rem, 2.25vw, 2.35rem); font-weight: 620; letter-spacing: -.04em; line-height: 1.06; }
    .work-card p { margin: 18px 0 0; color: var(--muted); line-height: 1.55; }

    .instagram-top { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
    .instagram-top .section-heading { margin: 0; }
    .instagram-link { color: var(--bronze-soft); white-space: nowrap; }
    .social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
    .reel-card {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      contain: layout paint;
      border-radius: 22px;
      background: #0b0b0c;
      width: 100%;
      padding: 0;
      border: 0;
      color: var(--white);
      font: inherit;
      text-align: left;
      text-decoration: none;
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
    }
    .reel-card::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .72)); pointer-events: none; }
    .reel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, filter .3s ease; }
    .reel-card:hover img { transform: scale(1.035); filter: brightness(.85); }
    .play {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 2;
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(0, 0, 0, .45);
      border: 1px solid rgba(255, 255, 255, .4);
      backdrop-filter: blur(10px);
    }
    .play::before { content: ""; margin-left: 2px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid white; }
    .reel-label { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; display: flex; justify-content: space-between; font-size: .68rem; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
    .reel-modal[hidden] { display: none; }
    .reel-modal {
      position: fixed;
      inset: 0;
      z-index: 2400;
      display: grid;
      place-items: center;
      padding: 24px;
      background: rgba(5, 6, 8, .88);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      overscroll-behavior: contain;
      isolation: isolate;
    }
    .reel-modal-shell {
      position: relative;
      z-index: 1;
      width: min(100%, 560px);
      height: min(90vh, 760px);
      height: min(90dvh, 760px);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 28px;
      background: #0d0f13;
      box-shadow: 0 40px 130px rgba(0, 0, 0, .72);
    }
    .reel-player,
    .reel-player iframe,
    .reel-player video { width: 100%; height: 100%; }
    .reel-player > [hidden] { display: none !important; }
    .reel-player { background: #000; }
    .reel-player iframe { display: block; border: 0; }
    .reel-player video {
      display: block;
      background: #000;
      object-fit: contain;
      object-position: center center;
    }
    .reel-modal-close {
      position: fixed;
      top: max(16px, env(safe-area-inset-top, 0px));
      right: max(16px, env(safe-area-inset-right, 0px));
      z-index: 2402;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, .34);
      border-radius: 50%;
      background: rgba(10, 10, 12, .76);
      color: #fff;
      font: inherit;
      font-size: 1.45rem;
      line-height: 1;
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }
    .reel-modal-close:hover, .reel-modal-close:focus-visible { background: rgba(197, 138, 70, .92); color: #15110d; }
    .back-to-top[data-reel-open="true"],
    .back-to-top[data-reel-open="true"] + .back-to-top-label {
      opacity: 0 !important;
      visibility: hidden;
      pointer-events: none !important;
    }
    .feed-note { margin: 20px 0 0; color: rgba(255, 255, 255, .48); font-size: .8rem; }

    .contact-panel {
      padding: clamp(54px, 8vw, 100px);
      overflow: hidden;
      border-radius: 38px;
      background:
        radial-gradient(circle at 82% 5%, rgba(202, 168, 124, .72), transparent 30%),
        linear-gradient(145deg, #25211d, #0f0f10);
      color: var(--white);
      text-align: center;
    }
    .contact-panel h2 { max-width: 900px; margin-inline: auto; }
    .contact-panel p { max-width: 650px; margin: 26px auto 0; color: rgba(255, 255, 255, .64); font-size: 1.15rem; line-height: 1.5; }
    .contact-panel .button { margin-top: 30px; }
    .home-contact { padding-bottom: clamp(132px, 15vw, 204px); }

    footer { padding: 34px 0; color: #aaa6a1; font-size: .75rem; text-align: center; }

    /* Consistent scroll motion */
    .iam-page.motion-ready [data-reveal] {
      opacity: 0;
      transform: translate3d(0, 28px, 0) scale(.992);
      transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--reveal-delay, 0ms);
      will-change: opacity, transform;
    }
    .iam-page.motion-ready [data-reveal].is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
    .scroll-progress {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      z-index: 100;
      height: 2px;
      pointer-events: none;
    }
    .scroll-progress span {
      display: block;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #9b7040, #efd1a4);
      box-shadow: 0 0 14px rgba(212,168,106,.5);
      transform: scaleX(var(--scroll-progress, 0));
      transform-origin: left center;
    }

    @media (max-width: 930px) {
      .menu-toggle { display: inline-flex; }
      nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 22px;
        background: rgba(18, 20, 25, .97);
        box-shadow: 0 28px 80px rgba(0, 0, 0, .52);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
      }
      nav[data-open="true"] { display: flex; }
      nav a { width: 100%; padding: 13px 15px; border-radius: 14px; color: rgba(255, 255, 255, .76); font-size: .9rem; }
      nav a:hover, nav a[aria-current="page"] { background: rgba(255, 255, 255, .07); color: var(--bronze-soft); }
      .about-grid, .bento { grid-template-columns: 1fr; }
      .bento-side { grid-template-columns: 1fr 1fr; }
      .feature.primary { min-height: 520px; }
      .work-grid { grid-template-columns: 1fr; }
      .work-card { min-height: 290px; }
      .social-grid { grid-template-columns: repeat(2, 1fr); }
      .instagram-top { align-items: start; flex-direction: column; }
    }

    @media (max-width: 620px) {
      .wrap { width: min(calc(100% - 30px), var(--max)); }
      .header-inner { min-height: 58px; }
      .hero { padding-top: 74px; }
      h1 {
        max-width: 100%;
        font-size: clamp(2.75rem, 13.2vw, 3.55rem);
        font-weight: 620;
        letter-spacing: -.055em;
        line-height: .98;
        padding-bottom: .1em;
        overflow: visible;
        text-wrap: balance;
      }
      .hero-logo { width: min(calc(100% - 24px), 1160px); }
      .hero-logo img { border-radius: 20px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .button { width: 100%; }
      .metrics-grid { grid-template-columns: 1fr; }
      .metric { border-right: 0; border-bottom: 1px solid var(--line); }
      .metric:last-child { border-bottom: 0; }
      .bento-side { grid-template-columns: 1fr; }
      .feature, .feature.primary { min-height: 330px; }
      .social-grid { gap: 8px; }
      .reel-card { border-radius: 14px; }
      .play { top: 9px; right: 9px; width: 31px; height: 31px; }
      .reel-label { left: 11px; right: 11px; bottom: 10px; font-size: .56rem; }
      .reel-modal {
        padding:
          max(12px, env(safe-area-inset-top, 0px))
          max(12px, env(safe-area-inset-right, 0px))
          max(12px, env(safe-area-inset-bottom, 0px))
          max(12px, env(safe-area-inset-left, 0px));
        background: rgba(5, 6, 8, .96);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      .reel-modal-shell { width: 100%; }
      .reel-modal-close {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
      }
      .contact-panel { border-radius: 26px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .scroll-progress { display: none; }
      :root { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; }
    }

    /* Cinematic dark direction */
    :root {
      --ink: #f4f1eb;
      --ink-soft: #191b21;
      --paper: #0d0f13;
      --white: #f8f5ef;
      --bronze: #d4a86a;
      --bronze-soft: #efd1a4;
      --muted: #a4a1a0;
      --line: rgba(255, 255, 255, .11);
      --shadow: 0 42px 120px rgba(0, 0, 0, .58);
    }

    .iam-page {
      background:
        radial-gradient(circle at 12% 8%, rgba(181, 122, 58, .12), transparent 24%),
        radial-gradient(circle at 90% 32%, rgba(111, 74, 39, .10), transparent 26%),
        linear-gradient(180deg, #111318 0%, var(--paper) 100%);
      color: var(--ink);
    }

    .site-header {
      background: rgba(13, 15, 19, .78);
      border-bottom-color: rgba(255, 255, 255, .09);
      box-shadow: 0 12px 45px rgba(0, 0, 0, .22);
    }
    .brand { color: var(--white); }
    nav a { color: rgba(255, 255, 255, .66); }
    nav a:hover { color: var(--bronze-soft); }

    .hero {
      position: relative;
      padding-top: clamp(110px, 14vw, 190px);
      background:
        radial-gradient(circle at 22% 12%, rgba(212, 168, 106, .18), transparent 28%),
        radial-gradient(circle at 82% 32%, rgba(130, 88, 48, .13), transparent 29%),
        linear-gradient(180deg, #17191f 0%, #0d0f13 76%);
    }
    .hero::after {
      position: absolute;
      left: 50%;
      top: 118px;
      width: min(760px, 80vw);
      height: 260px;
      border-radius: 50%;
      background: rgba(216, 168, 101, .11);
      filter: blur(90px);
      content: "";
      pointer-events: none;
      transform: translateX(-50%);
    }
    .hero .wrap, .hero-logo { position: relative; z-index: 2; }
    .hero .eyebrow { color: var(--bronze-soft); }
    h1 {
      color: #fff;
      background: linear-gradient(180deg, #ffffff 8%, #dbd6cd 56%, #8c857d 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 24px 80px rgba(0, 0, 0, .42);
    }
    .hero-copy { color: #aaa7a3; }
    .button {
      border-color: rgba(239, 209, 164, .62);
      background: linear-gradient(135deg, #e5bd84, #a96f35);
      box-shadow: 0 12px 32px rgba(169, 111, 53, .22);
      color: #15110d;
    }
    .button:hover { background: linear-gradient(135deg, #f1d09e, #bb7f40); box-shadow: 0 16px 42px rgba(169, 111, 53, .34); }
    .button.secondary { border-color: rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .055); color: #f5f2eb; backdrop-filter: blur(18px); }
    .button.secondary:hover { background: rgba(255, 255, 255, .11); }
    .button.light { border-color: #f4e7d2; background: #f4e7d2; color: #18120e; }

    @media (min-width: 621px) {
      .hero-actions .button:not(.secondary),
      .hero-actions .button:not(.secondary):link,
      .hero-actions .button:not(.secondary):visited,
      .hero-actions .button:not(.secondary):focus {
        border-color: rgba(239, 209, 164, .72);
        background-color: #c58a46;
        background-image: linear-gradient(135deg, #e5bd84, #a96f35);
        box-shadow: 0 12px 32px rgba(169, 111, 53, .26);
        color: #15110d;
        opacity: 1;
        -webkit-appearance: none;
        appearance: none;
      }
      .hero-actions .button:not(.secondary):hover,
      .hero-actions .button:not(.secondary):focus-visible {
        background-color: #d49a55;
        background-image: linear-gradient(135deg, #f1d09e, #bb7f40);
        box-shadow: 0 16px 42px rgba(169, 111, 53, .34);
      }
    }

    .hero-logo { margin-top: clamp(70px, 9vw, 118px); }
    .hero-logo img {
      border-radius: 36px;
      box-shadow: 0 50px 150px rgba(0, 0, 0, .72), 0 0 110px rgba(190, 133, 70, .12);
    }

    .metrics { position: relative; padding-top: 34px; }
    .metrics-grid {
      background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
      border-color: rgba(255, 255, 255, .11);
      box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
      backdrop-filter: blur(22px);
    }
    .metric { border-color: rgba(255, 255, 255, .1); }
    .metric strong { color: #f7f3ec; }
    .metric span { color: #8e8c8a; }

    .section { position: relative; }
    .section.white { background: #15171d; }
    .section.dark { background: #0e1014; }
    h2 { color: #f5f2ec; }
    .section-lead, .about-copy p { color: #9b9997; }
    .about-copy strong { color: #f4eee5; }
    .portrait img {
      box-shadow: 0 40px 110px rgba(0, 0, 0, .52), 0 0 0 1px rgba(255, 255, 255, .08);
    }
    .text-link { color: var(--bronze-soft); }

    .feature {
      position: relative;
      background:
        radial-gradient(circle at 90% 0%, rgba(212, 168, 106, .12), transparent 32%),
        linear-gradient(145deg, #20232a, #14161b);
      border-color: rgba(255, 255, 255, .1);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 28px 75px rgba(0, 0, 0, .24);
      color: var(--white);
      text-decoration: none;
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .feature::before {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(120deg, transparent 36%, rgba(255, 255, 255, .055), transparent 64%);
      content: "";
      opacity: 0;
      transition: opacity .25s ease;
      pointer-events: none;
    }
    .feature:hover { transform: translateY(-7px); border-color: rgba(239, 209, 164, .4); box-shadow: 0 38px 100px rgba(0, 0, 0, .45); }
    .feature:hover::before { opacity: 1; }
    .feature.primary {
      background:
        radial-gradient(circle at 78% 16%, rgba(224, 174, 106, .34), transparent 31%),
        linear-gradient(145deg, #342a22 0%, #1d1c20 48%, #121419 100%);
    }
    .feature.accent {
      background:
        radial-gradient(circle at 92% 8%, rgba(255, 235, 198, .42), transparent 28%),
        linear-gradient(145deg, #b77b3e, #6d4425);
      color: #fff9ef;
    }
    .feature p, .feature.primary p { color: rgba(255, 255, 255, .62); }
    .feature-action, .card-action {
      position: relative;
      z-index: 2;
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      margin-top: 30px;
      color: var(--bronze-soft);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .04em;
    }
    .feature.accent .feature-action { color: #fff5e8; }
    .feature-action b, .card-action b { transition: transform .2s ease; }
    .feature:hover .feature-action b, .work-card:hover .card-action b { transform: translate(3px, -3px); }

    .work-card {
      background:
        radial-gradient(circle at 100% 0%, rgba(212, 168, 106, .12), transparent 31%),
        linear-gradient(145deg, #22252c, #15171c);
      border: 1px solid rgba(255, 255, 255, .09);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
      color: var(--white);
    }
    .work-card:hover { border-color: rgba(239, 209, 164, .38); box-shadow: 0 32px 90px rgba(0, 0, 0, .45); }
    .work-card .work-label { color: var(--bronze-soft); }
    .work-card h3 { color: #f7f3ed; }
    .work-card p { color: #94918e; }
    .work-card .card-action { color: var(--bronze-soft); font-size: .82rem; letter-spacing: .02em; text-transform: none; }

    .reel-card { border: 1px solid rgba(255, 255, 255, .1); box-shadow: 0 24px 65px rgba(0, 0, 0, .35); }
    .reel-card:hover { border-color: rgba(239, 209, 164, .42); }

    .contact-panel {
      border: 1px solid rgba(255, 255, 255, .11);
      background:
        radial-gradient(circle at 18% 15%, rgba(224, 174, 106, .25), transparent 28%),
        radial-gradient(circle at 86% 0%, rgba(142, 83, 35, .46), transparent 34%),
        linear-gradient(145deg, #25262c, #121419);
      box-shadow: 0 44px 120px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .06);
    }
    footer { border-top: 1px solid rgba(255, 255, 255, .07); color: #aaa6a1; }

    @media (max-width: 620px) {
      .hero { padding-top: 92px; }
      .hero-logo img { border-radius: 22px; }
      .feature-action, .card-action { font-size: .76rem; }
    }

.journey-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 168, 106, .13), transparent 34%),
    linear-gradient(180deg, #101217, #15171d 52%, #101217);
}
.journey-heading { margin-inline: auto; text-align: center; }
.journey-rail {
  --journey-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 42px);
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}
.journey-rail::before,
.journey-rail::after {
  position: absolute;
  top: 22px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  border-radius: 999px;
  content: "";
  transform-origin: left center;
}
.journey-rail::before { background: rgba(255, 255, 255, .11); }
.journey-rail::after {
  background: linear-gradient(90deg, #9b7040, #efd1a4, #b77b3e);
  box-shadow: 0 0 18px rgba(212, 168, 106, .42);
  transform: scaleX(var(--journey-progress));
}
.journey-step {
  position: relative;
  z-index: 2;
  padding-top: 54px;
  opacity: .4;
  text-align: center;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.journey-step[data-active="true"] { opacity: 1; transform: translateY(0); }
.journey-dot {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 36px;
  height: 36px;
  border: 8px solid #15171d;
  border-radius: 50%;
  background: #5a5147;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .14);
  transform: translateX(-50%);
  transition: background .35s ease, box-shadow .35s ease, transform .35s ease;
}
.journey-step[data-active="true"] .journey-dot { background: #d4a86a; box-shadow: 0 0 0 1px rgba(239, 209, 164, .5), 0 0 26px rgba(212, 168, 106, .34); }
.journey-step[data-state="current"][data-active="true"] .journey-dot { box-shadow: 0 0 0 1px rgba(239, 209, 164, .7), 0 0 34px rgba(212, 168, 106, .58); animation: iam-current-step 2.8s ease-in-out infinite; }
.journey-time { display: block; margin-bottom: 13px; color: var(--bronze-soft); font-size: .7rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.journey-step h3 { color: #f7f3ed; font-size: clamp(1.15rem, 1.8vw, 1.48rem); letter-spacing: -.025em; line-height: 1.12; }
.journey-step p { max-width: 230px; margin: 14px auto 0; color: #8f8d8a; font-size: .88rem; line-height: 1.55; }

.metrics-grid.iam-metrics-ready .metric {
  opacity: 0;
  transform: translateY(22px) scale(.975);
  transition: opacity .62s cubic-bezier(.22, 1, .36, 1), transform .62s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--metric-delay, 0ms);
}
.metrics-grid.iam-metrics-ready[data-animated="true"] .metric { opacity: 1; transform: translateY(0) scale(1); }
.metrics-grid.iam-metrics-ready .metric strong { transition: color .3s ease, text-shadow .3s ease; }
.metrics-grid.iam-metrics-ready .metric strong[data-counting="true"] { color: var(--bronze-soft); text-shadow: 0 0 24px rgba(212, 168, 106, .28); }

.iam-spotlight { position: relative; isolation: isolate; }
.iam-card-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(circle at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(239, 209, 164, .2), rgba(212, 168, 106, .07) 24%, transparent 48%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}
.iam-spotlight[data-spotlight-active="true"] .iam-card-glow { opacity: 1; }
.iam-nav-spotlight { position: relative; isolation: isolate; }
.iam-nav-spotlight > a { position: relative; z-index: 3; }
.iam-nav-spotlight > .nav-indicator { z-index: 4; bottom: -10px; }
.iam-nav-spotlight > .iam-card-glow {
  inset: -6px -8px;
  z-index: 1;
  border-radius: 999px;
  background: radial-gradient(ellipse 88px 30px at var(--spotlight-x, 50%) var(--spotlight-y, 50%), rgba(239, 209, 164, .26), rgba(212, 168, 106, .09) 44%, transparent 76%);
  filter: blur(4px);
}
@media (max-width: 930px) {
  .iam-nav-spotlight > .iam-card-glow { display: none; }
}

.iam-touch-spotlight { position: relative; isolation: isolate; overflow: hidden; }
.iam-touch-spotlight > .iam-touch-glow-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background: radial-gradient(circle 112px at var(--touch-x, 50%) var(--touch-y, 50%), rgba(239, 209, 164, .25), rgba(212, 168, 106, .08) 42%, transparent 72%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.iam-touch-spotlight[data-touch-active="true"] > .iam-touch-glow-layer { opacity: 1; }
.portrait,
.achievement-image {
  position: relative;
  isolation: isolate;
  border-radius: var(--radius);
}
.hero-logo.iam-touch-spotlight { overflow: visible; }
.iam-mobile-hero-light { display: none; }
.iam-scroll-heading {
  scale: var(--heading-scroll-scale, 1);
  transform-origin: left center;
  transition: scale .12s linear;
  will-change: scale;
}
.hero .iam-scroll-heading,
.section-heading.center .iam-scroll-heading { transform-origin: center; }

.site-header { transition: background .28s ease, border-color .28s ease, box-shadow .28s ease; }
.header-inner { transition: min-height .3s cubic-bezier(.22, 1, .36, 1); }
@media (min-width: 931px) {
  .site-header[data-mobile-compact="true"] {
    background: rgba(13, 15, 19, .72);
    border-color: rgba(255, 255, 255, .07);
    box-shadow: 0 9px 32px rgba(0, 0, 0, .18);
  }
  .site-header[data-mobile-compact="true"] .header-inner { min-height: 56px; }
}

@media (max-width: 930px) {
  .site-header {
    z-index: 200;
    transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
  }
  .header-inner { transition: min-height .3s cubic-bezier(.22, 1, .36, 1); }
  .brand,
  .menu-toggle {
    position: relative;
    z-index: 222;
    transform-origin: center;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), opacity .24s ease, background .24s ease, border-color .24s ease;
  }
  .brand { transform-origin: left center; }
  .site-header[data-mobile-compact="true"] {
    background: rgba(13, 15, 19, .7);
    border-color: rgba(255, 255, 255, .07);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .18);
  }
  .site-header[data-mobile-compact="true"] .header-inner { min-height: 52px; }
  .site-header[data-mobile-compact="true"] .brand,
  .site-header[data-mobile-compact="true"] .menu-toggle { transform: scale(.94); }
  .hero .iam-mobile-hero-light {
    --mobile-light-scroll: 0px;
    position: absolute;
    inset: -7%;
    z-index: 1;
    display: block;
    border-radius: 32%;
    background:
      radial-gradient(circle 220px at var(--mobile-light-x, 50%) var(--mobile-light-y, 54%), rgba(239, 209, 164, .26), rgba(212, 168, 106, .1) 44%, transparent 72%);
    filter: blur(10px);
    opacity: .56;
    pointer-events: none;
    transform: translate3d(0, var(--mobile-light-scroll), 0) scale(1.02);
    transition: opacity .24s ease;
  }
  .hero[data-mobile-light-active="true"] .iam-mobile-hero-light { opacity: .82; }
}

@media (hover: none), (pointer: coarse) {
  .iam-tap-target {
    scale: 1;
    transition: scale .18s cubic-bezier(.22, 1, .36, 1), filter .18s ease;
    will-change: scale;
  }
  .iam-tap-target[data-pressed="true"] { scale: .975; filter: brightness(1.07) saturate(1.035); }
}

@media (hover: hover) and (pointer: fine) {
  .iam-tap-target {
    scale: 1;
    transition: scale .16s cubic-bezier(.22, 1, .36, 1), filter .16s ease;
    will-change: scale;
  }
  .iam-tap-target[data-pressed="true"] { scale: .985; filter: brightness(1.045) saturate(1.02); }
}

/* Deter direct saving, dragging, and press-and-hold menus without disabling page zoom. */
.iam-page img,
.certificate-lightbox img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.iam-page a:has(img),
.iam-page button:has(img) {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  .iam-touch-glow-layer,
  .iam-tap-target,
  .iam-scroll-heading,
  #primary-navigation,
  #primary-navigation > a,
  .site-header,
  .header-inner,
  .brand,
  .menu-toggle { transition: none; }
  .iam-scroll-heading { scale: 1; }
}

.iam-page { max-width: 100%; overflow-x: clip; }
.iam-transition-host { position: relative; overflow-x: clip; isolation: isolate; }
.iam-transition-host > .wrap,
.iam-transition-host > .hero-logo { position: relative; z-index: 2; }
.iam-section-transition-light {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(1180px, 112vw);
  height: clamp(360px, 54vw, 650px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 42%, rgba(239, 209, 164, .30), rgba(212, 168, 106, .10) 30%, transparent 58%),
    radial-gradient(circle at 74% 58%, rgba(212, 168, 106, .26), rgba(132, 82, 39, .09) 34%, transparent 62%);
  box-shadow: 0 34px 150px rgba(107, 66, 31, .16);
  content: "";
  filter: blur(44px);
  opacity: var(--section-light-opacity, 0);
  pointer-events: none;
  transform: translate3d(calc(-50% + var(--section-light-x, 0px)), calc(-50% + var(--section-light-y, 0px)), 0) scale(var(--section-light-scale, .92));
  transition: opacity .08s linear;
  will-change: transform, opacity;
}

.certificate-lightbox[hidden] { display: none; }
.certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 34px);
  background: rgba(5, 6, 8, .9);
  opacity: 0;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: opacity .22s ease;
}
.certificate-lightbox[data-open="true"] { opacity: 1; }
.certificate-lightbox-shell {
  position: relative;
  width: min(1120px, 94vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  overflow: hidden;
  border: 1px solid rgba(239, 209, 164, .22);
  border-radius: 30px;
  background: linear-gradient(145deg, #202229, #0f1115);
  box-shadow: 0 48px 150px rgba(0, 0, 0, .72), 0 0 74px rgba(212, 168, 106, .14);
  transform: translateY(16px) scale(.975);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}
.certificate-lightbox[data-open="true"] .certificate-lightbox-shell { transform: translateY(0) scale(1); }
.certificate-lightbox-media { min-height: min(76vh, 760px); display: grid; place-items: center; padding: clamp(18px, 4vw, 48px); background: #e8e4dd; }
.certificate-lightbox-media img { width: 100%; height: 100%; max-height: min(78vh, 780px); object-fit: contain; }
.certificate-lightbox-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 46px); }
.certificate-lightbox-copy .eyebrow { margin-bottom: 16px; }
.certificate-lightbox-copy h3 { color: #f7f3ed; font-size: clamp(1.6rem, 2.7vw, 2.35rem); }
.certificate-lightbox-copy p { margin: 18px 0 0; color: #9b9996; line-height: 1.55; }
.certificate-lightbox-counter { margin-top: 26px; color: var(--bronze-soft); font-size: .74rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.certificate-lightbox-close,
.certificate-lightbox-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(11, 13, 17, .74);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.certificate-lightbox-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 1.45rem; }
.certificate-lightbox-nav { top: 50%; width: 48px; height: 48px; font-size: 1.25rem; transform: translateY(-50%); }
.certificate-lightbox-nav[data-certificate-prev] { left: 16px; }
.certificate-lightbox-nav[data-certificate-next] { right: 336px; }
.certificate-lightbox-close:hover,
.certificate-lightbox-close:focus-visible,
.certificate-lightbox-nav:hover,
.certificate-lightbox-nav:focus-visible { border-color: rgba(239, 209, 164, .7); background: rgba(159, 107, 56, .82); outline: none; }

@keyframes iam-current-step {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.13); }
}
@media (max-width: 930px) {
  .certificate-lightbox-shell { grid-template-columns: 1fr; overflow: auto; }
  .certificate-lightbox-media { min-height: min(62vh, 620px); }
  .certificate-lightbox-copy { padding: 26px; }
  .certificate-lightbox-nav { top: 42%; }
  .certificate-lightbox-nav[data-certificate-next] { right: 16px; }
}
@media (max-width: 620px) {
  .journey-rail { grid-template-columns: 1fr; gap: 30px; padding: 0 0 0 50px; }
  .journey-rail::before,
  .journey-rail::after { top: 18px; bottom: 18px; left: 17px; width: 2px; height: auto; transform-origin: center top; }
  .journey-rail::after { transform: scaleY(var(--journey-progress)); }
  .journey-step { min-height: 118px; padding: 0; text-align: left; }
  .journey-dot { top: 0; left: -50px; transform: none; }
  .journey-step[data-state="current"][data-active="true"] .journey-dot { animation-name: iam-current-step-mobile; }
  .journey-step p { margin-inline: 0; }
  .iam-section-transition-light { width: 132vw; height: 430px; filter: blur(34px); }
  .certificate-lightbox { padding: 10px; }
  .certificate-lightbox-shell { width: 100%; max-height: 94vh; border-radius: 22px; }
  .certificate-lightbox-media { min-height: min(58vh, 520px); padding: 14px; }
  .certificate-lightbox-close { top: 10px; right: 10px; }
  .certificate-lightbox-nav { top: 38%; width: 42px; height: 42px; }
  .certificate-lightbox-nav[data-certificate-prev] { left: 10px; }
  .certificate-lightbox-nav[data-certificate-next] { right: 10px; }
}
@keyframes iam-current-step-mobile {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.13); }
}
@media (prefers-reduced-motion: reduce) {
  .journey-step[data-state="current"] .journey-dot { animation: none; }
  .iam-card-glow,
  .certificate-lightbox,
  .certificate-lightbox-shell,
  .metrics-grid.iam-metrics-ready .metric { transition: none; }
}
.hero {
  --hero-logo-shift: 0px;
}
.hero-actions {
  align-items: center;
  justify-content: center;
}
.hero-actions .button {
  width: 230px;
  min-width: 230px;
  flex: 0 0 230px;
}
/* Keep the primary homepage CTA visually stable across redirects, history restores, and link states. */
.hero-actions .button:not(.secondary),
.hero-actions .button:not(.secondary):link,
.hero-actions .button:not(.secondary):visited,
.hero-actions .button:not(.secondary):focus,
.hero-actions .button:not(.secondary):focus-visible,
.hero-actions .button:not(.secondary):active {
  border-color: rgba(239, 209, 164, .72) !important;
  background-color: #c58a46 !important;
  background-image: linear-gradient(135deg, #e5bd84, #a96f35) !important;
  box-shadow: 0 12px 32px rgba(169, 111, 53, .26) !important;
  color: #15110d !important;
  opacity: 1 !important;
}
.hero-actions .button:not(.secondary):hover,
.hero-actions .button:not(.secondary):focus-visible {
  background-color: #d49a55 !important;
  background-image: linear-gradient(135deg, #f1d09e, #bb7f40) !important;
  box-shadow: 0 16px 42px rgba(169, 111, 53, .34) !important;
}
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 72%, rgba(224, 174, 106, .22), transparent 30%),
    radial-gradient(circle at 20% 42%, rgba(212, 168, 106, .10), transparent 24%),
    radial-gradient(circle at 82% 56%, rgba(147, 92, 42, .11), transparent 25%);
  content: "";
  opacity: .72;
  pointer-events: none;
  animation: iam-hero-ambient 9s ease-in-out infinite alternate;
}
.hero-logo {
  --hero-intro-shift: 0px;
  width: min(calc(100% - 48px), 560px);
  aspect-ratio: 125 / 187;
  border-radius: 36px;
  isolation: isolate;
  opacity: 1;
  transform: translate3d(0, calc(var(--hero-logo-shift) + var(--hero-intro-shift)), 0) scale(1);
  transition: opacity .9s cubic-bezier(.22, 1, .36, 1), transform .9s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.hero-logo.iam-logo-intro {
  --hero-intro-shift: 24px;
  opacity: 0;
  transform: translate3d(0, calc(var(--hero-logo-shift) + var(--hero-intro-shift)), 0) scale(.986);
}
.hero-logo.iam-logo-intro.is-ready {
  --hero-intro-shift: 0px;
  opacity: 1;
  transform: translate3d(0, var(--hero-logo-shift), 0) scale(1);
}
.hero-logo::before {
  position: absolute;
  inset: -10% -5%;
  z-index: 1;
  border-radius: 42%;
  background: radial-gradient(ellipse at center, rgba(212, 168, 106, .34), rgba(169, 105, 47, .13) 38%, transparent 70%);
  content: "";
  filter: blur(38px);
  opacity: .62;
  pointer-events: none;
  animation: iam-logo-glow 7s ease-in-out infinite alternate;
}
.hero-logo::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 36px;
  background: linear-gradient(108deg, transparent 28%, rgba(212, 168, 106, .08) 38%, rgba(255, 248, 235, .52) 49%, rgba(239, 209, 164, .18) 57%, transparent 70%);
  background-position: 160% 0;
  background-size: 320% 100%;
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  animation: iam-logo-sheen 4.9s ease-in-out infinite;
}
.hero-logo > .iam-card-glow,
.hero-logo > .iam-touch-glow-layer { z-index: 2; }
.hero-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  aspect-ratio: 125 / 187;
  border-radius: inherit;
  object-fit: cover;
  transition: filter .55s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.hero-logo:hover img {
  filter: brightness(1.035) saturate(1.035);
  transform: scale(1.008);
}
.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 7px;
  z-index: 2;
  width: var(--nav-indicator-width, 0px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #9b7040, #efd1a4, #b77b3e);
  box-shadow: 0 0 14px rgba(212, 168, 106, .46);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--nav-indicator-x, 0px), 0, 0);
  transition: width .34s cubic-bezier(.22, 1, .36, 1), transform .34s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
}
.nav-indicator[data-visible="true"] { opacity: 1; }
nav a[data-indicator-active] { color: var(--bronze-soft); }
@keyframes iam-hero-ambient {
  from { opacity: .58; transform: scale(.98); }
  to { opacity: .84; transform: scale(1.035); }
}
@keyframes iam-logo-glow {
  from { opacity: .48; transform: scale(.96); }
  to { opacity: .72; transform: scale(1.035); }
}
@keyframes iam-logo-sheen {
  0%, 56% { opacity: 0; background-position: 160% 0; }
  68% { opacity: .78; }
  84% { opacity: 0; background-position: -160% 0; }
  100% { opacity: 0; background-position: -160% 0; }
}
@media (max-width: 930px) {
  .nav-indicator { display: none; }
  nav a[data-indicator-active] { background: rgba(255, 255, 255, .07); color: var(--bronze-soft); }
}
@media (max-width: 620px) {
  .hero-actions .button {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }
  .hero-logo { width: min(calc(100% - 30px), 430px); aspect-ratio: 125 / 187; border-radius: 22px; }
  .hero-logo img { aspect-ratio: 125 / 187; }
  .hero-logo::before { inset: -8% -3%; filter: blur(28px); opacity: .52; }
  .hero-logo::after { border-radius: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-logo::before,
  .hero-logo::after { animation: none; }
  .hero-logo { transform: none; }
  .hero-logo img { transition: none; }
  .nav-indicator { transition: none; }
}
.back-to-top {
  position: fixed;
  right: clamp(40px, 7vw, 110px);
  bottom: calc(clamp(60px, 10vh, 120px) + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(239, 209, 164, .24);
  border-radius: 50%;
  background: rgba(18, 20, 25, .70);
  box-shadow: 0 18px 56px rgba(0, 0, 0, .36), 0 0 54px rgba(212, 168, 106, .48), 0 0 128px rgba(212, 168, 106, .25);
  color: #efd1a4;
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(.92);
  transition: opacity .24s ease, transform .24s cubic-bezier(.22, 1, .36, 1), background .24s ease, border-color .24s ease, box-shadow .24s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.back-to-top span {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 16px rgba(239, 209, 164, .72);
}
.back-to-top-label {
  position: fixed;
  right: clamp(40px, 7vw, 110px);
  bottom: calc(clamp(42px, calc(10vh - 18px), 102px) + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  width: 80px;
  color: rgba(239, 209, 164, .88);
  font-size: .52rem;
  font-weight: 750;
  letter-spacing: .055em;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-shadow: 0 0 14px rgba(239, 209, 164, .54);
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity .24s ease, transform .24s cubic-bezier(.22, 1, .36, 1), text-shadow .24s ease;
  white-space: nowrap;
}
.back-to-top[data-visible="true"] + .back-to-top-label {
  opacity: .78;
  transform: translateY(0);
}
.back-to-top[data-visible="true"]:hover + .back-to-top-label,
.back-to-top[data-visible="true"]:focus-visible + .back-to-top-label {
  opacity: 1;
  text-shadow: 0 0 20px rgba(239, 209, 164, .74);
}
.back-to-top[data-visible="true"] {
  opacity: .78;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top[data-visible="true"]:hover,
.back-to-top[data-visible="true"]:focus-visible {
  border-color: rgba(239, 209, 164, .42);
  background: rgba(31, 29, 27, .78);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .4), 0 0 72px rgba(224, 174, 106, .62), 0 0 156px rgba(212, 168, 106, .3);
  opacity: 1;
  outline: none;
  transform: translateY(-3px) scale(1.035);
}
@media (max-width: 620px) {
  .back-to-top {
    right: 30px;
    bottom: calc(54px + env(safe-area-inset-bottom, 0px));
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }
  .back-to-top-label {
    right: 30px;
    bottom: calc(34px + env(safe-area-inset-bottom, 0px));
    width: 68px;
    font-size: .44rem;
    letter-spacing: .04em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top-label { transition: none; }
}


.home-speaking-jump {
  background:
    radial-gradient(circle at 88% 12%, rgba(239,209,164,.19), transparent 30%),
    linear-gradient(145deg, #26221f, #17191f 62%, #111318);
}
.home-speaking-jump:hover .feature-action b { transform: translateY(4px); }
@media (min-width: 931px) {
  .bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(360px, 1fr);
    align-items: stretch;
  }
  .bento-side { display: contents; }
  .bento .feature,
  .bento .feature.primary,
  .home-speaking-jump {
    min-height: 360px;
    height: 100%;
  }
  .work-grid .work-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-items: start;
  }
  .work-grid .work-card > div {
    width: 100%;
    margin-top: 48px;
  }
  .work-grid .work-card h3 { min-height: 3.18em; }
  .work-grid .work-card .card-action { align-self: end; }
}
@media (min-width: 761px) and (max-width: 930px) {
  .bento { grid-template-columns: 1fr; }
  .bento-side { grid-template-columns: 1fr; }
  .bento .feature,
  .bento .feature.primary,
  .home-speaking-jump { min-height: 320px; height: auto; }
}
.home-speaking-feature { scroll-margin-top: 86px; }
.home-speaking-feature {
  padding: clamp(76px, 9vw, 124px) 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(212,168,106,.14), transparent 28%),
    linear-gradient(180deg, #0d0f13, #12141a 52%, #0d0f13);
}
@media (min-width: 931px) {
  .link-grid.link-grid-expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.home-speaking-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(36px, 7vw, 96px);
  min-height: 410px;
  align-items: end;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(239,209,164,.24);
  border-radius: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 88% 12%, rgba(239,209,164,.22), transparent 30%),
    radial-gradient(circle at 5% 100%, rgba(151,91,43,.18), transparent 34%),
    linear-gradient(145deg, rgba(42,38,36,.98), rgba(23,24,29,.99) 54%, rgba(14,16,20,.99));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 44px 120px rgba(0,0,0,.42), 0 0 70px rgba(212,168,106,.07);
  color: #fff;
  text-decoration: none;
  transition: transform .32s cubic-bezier(.22,1,.36,1), border-color .32s ease, box-shadow .32s ease, filter .32s ease;
}
.home-speaking-panel::after {
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(239,209,164,.12);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(212,168,106,.08), inset 0 0 80px rgba(212,168,106,.035);
  content: "";
  pointer-events: none;
}
.home-speaking-panel > *:not(.iam-card-glow):not(.iam-touch-glow-layer) { position: relative; z-index: 2; }
.home-speaking-panel > .iam-card-glow,
.home-speaking-panel > .iam-touch-glow-layer {
  z-index: 1;
  background: radial-gradient(circle 360px at var(--spotlight-x, var(--touch-x, 50%)) var(--spotlight-y, var(--touch-y, 50%)), rgba(239,209,164,.18), rgba(212,168,106,.065) 36%, transparent 72%);
}
.home-speaking-panel:hover {
  transform: translateY(-7px);
  border-color: rgba(239,209,164,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 54px 140px rgba(0,0,0,.5), 0 0 90px rgba(212,168,106,.13);
  filter: brightness(1.025);
}
.home-speaking-copy { max-width: 760px; }
.home-speaking-copy h2 { max-width: 780px; font-size: clamp(2.45rem, 4.8vw, 4.7rem); font-weight: 590; line-height: 1; }
.home-speaking-copy > p:last-child { max-width: 720px; margin: 28px 0 0; color: #aaa7a3; font-size: clamp(1rem, 1.45vw, 1.18rem); line-height: 1.65; }
.home-speaking-details { display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.home-speaking-status { color: var(--bronze-soft); font-size: .72rem; font-weight: 760; letter-spacing: .1em; text-transform: uppercase; }
.home-speaking-options { display: flex; flex-wrap: wrap; gap: 9px; }
.home-speaking-options span { padding: 9px 12px; border: 1px solid rgba(239,209,164,.2); border-radius: 999px; background: rgba(255,255,255,.045); color: #d7c7b1; font-size: .68rem; font-weight: 680; letter-spacing: .025em; }
.home-speaking-action { display: inline-flex; align-items: center; gap: 12px; color: var(--bronze-soft); font-size: .82rem; font-weight: 720; }
.home-speaking-action b { transition: transform .24s ease; }
.home-speaking-panel:hover .home-speaking-action b { transform: translate(4px,-4px); }
@media (max-width: 760px) {
  .home-speaking-feature { padding: 66px 0; }
  .home-speaking-panel { grid-template-columns: 1fr; min-height: 0; align-items: start; padding: 34px 28px; border-radius: 30px; }
  .home-speaking-copy h2 { font-size: clamp(2.25rem, 10.8vw, 3.25rem); }
  .home-speaking-copy > p:last-child { margin-top: 24px; }
  .home-speaking-details { gap: 20px; }
}
