@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, ol, ul { margin: 0; }
  img, video, svg { display: block; max-width: 100%; }
  button, input { font: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }
}

@layer base {
  :root {
    --ink: #08090b;
    --paper: #f3efe7;
    --panel: #121417;
    --panel-2: #171a1e;
    --line: rgba(243, 239, 231, .12);
    --muted: #aaa59c;
    --ember: #e99a4a;
    --ember-deep: #b85c2e;
    --sage: #93bca5;
    --red: #de6b56;
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    --sans: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, sans-serif;
    --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --wrap: 1180px;
    --radius: 26px;
  }

  body {
    min-width: 320px;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    line-height: 1.55;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  }

  a { color: inherit; text-decoration: none; }
  button { color: inherit; }
  ::selection { background: var(--ember); color: #17100a; }
  :focus-visible { outline: 2px solid var(--ember); outline-offset: 4px; }
  section { scroll-margin-top: 94px; }
  .wrap { width: min(var(--wrap), calc(100% - 40px)); margin-inline: auto; }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .skip-link { position: fixed; top: 8px; left: 8px; z-index: 999; padding: .7rem 1rem; border-radius: 999px; background: var(--paper); color: var(--ink); transform: translateY(-140%); transition: transform .2s; }
  .skip-link:focus { transform: none; }
  .no-script { position: fixed; inset: auto 1rem 1rem; z-index: 40; padding: .8rem; text-align: center; background: var(--red); color: #fff; border-radius: 12px; }
}

@layer components {
  .site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s, transform .3s;
  }
  .site-header.scrolled { background: rgba(8,9,11,.83); border-color: var(--line); backdrop-filter: blur(18px); }
  .site-header.header-hidden { transform: translateY(-105%); }
  .nav { height: 82px; display: flex; align-items: center; gap: 2rem; }
  .brand { display: inline-flex; align-items: center; gap: .75rem; margin-right: auto; }
  .brand-mark { position: relative; display: grid; place-items: center; width: 37px; height: 37px; border: 1px solid rgba(233,154,74,.55); border-radius: 50%; }
  .brand-mark::before, .brand-mark::after, .brand-mark i { content: ""; position: absolute; width: 1px; height: 22px; background: var(--ember); transform-origin: center; }
  .brand-mark::before { transform: rotate(45deg); }
  .brand-mark::after { transform: rotate(-45deg); }
  .brand-mark i { height: 16px; transform: rotate(90deg); }
  .brand strong { display: block; letter-spacing: .2em; font-size: .85rem; line-height: 1.2; }
  .brand small { display: block; margin-top: .15rem; color: var(--muted); font-size: .7rem; }
  .nav-links { display: flex; align-items: center; gap: 1.5rem; color: #c7c1b7; font-size: .82rem; }
  .nav-links a { position: relative; }
  .nav-links a::after { content: ""; position: absolute; inset: auto 0 -7px; height: 1px; background: var(--ember); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
  .nav-links a:hover::after { transform: scaleX(1); }
  .menu-toggle { display: none; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
  .menu-toggle i { display: block; width: 16px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s; }

  .btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .78rem 1.16rem; border: 1px solid transparent; border-radius: 999px; font-weight: 700; font-size: .86rem; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s, background .2s; }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: linear-gradient(135deg, #f1ad61, var(--ember)); color: #201306; box-shadow: 0 10px 35px rgba(233,154,74,.16); }
  .btn-primary:hover { box-shadow: 0 14px 38px rgba(233,154,74,.28); }
  .btn-ghost { border-color: var(--line); background: rgba(255,255,255,.025); }
  .btn-ghost:hover { border-color: rgba(243,239,231,.35); }
  .btn-glass { border-color: rgba(255,255,255,.25); background: rgba(8,9,11,.3); backdrop-filter: blur(12px); }
  .text-link { display: inline-flex; gap: .5rem; align-items: center; margin-top: 1.5rem; color: var(--ember); font-weight: 700; font-size: .9rem; }

  .eyebrow { display: flex; align-items: center; gap: .65rem; color: var(--ember); text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; font-weight: 800; }
  .eyebrow span { color: #69665f; font-family: var(--mono); letter-spacing: normal; }
  .kicker { color: var(--ember); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 800; }
  h1, h2, h3, blockquote { font-family: var(--serif); font-weight: 600; line-height: .98; }
  h1 { font-size: clamp(3rem, 6.7vw, 6.8rem); letter-spacing: -.052em; }
  h2 { font-size: clamp(2.5rem, 5.2vw, 5.1rem); letter-spacing: -.045em; }
  h3 { font-size: clamp(1.35rem, 2.1vw, 2rem); letter-spacing: -.025em; }
  h1 em { color: var(--ember); font-style: italic; font-weight: 500; }

  .hero { position: relative; min-height: 100svh; padding: 128px 0 34px; display: grid; align-content: center; overflow: hidden; }
  .hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(70% 70% at 90% 2%, rgba(233,154,74,.12), transparent 65%), radial-gradient(55% 65% at 0% 60%, rgba(147,188,165,.09), transparent 70%); }
  .hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .82fr; gap: 1rem; align-items: stretch; }
  .hero-copy { min-height: 640px; padding: clamp(2rem,4.7vw,4.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(23,26,30,.93), rgba(13,14,17,.9)); display: flex; flex-direction: column; justify-content: center; box-shadow: 0 40px 100px rgba(0,0,0,.35); }
  .hero-copy h1 { margin-top: 1.6rem; max-width: 840px; }
  .lede { max-width: 650px; margin-top: 1.7rem; color: #b9b3a9; font-size: clamp(1rem,1.4vw,1.16rem); }
  .hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }
  .hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 3.2rem; border-top: 1px solid var(--line); }
  .hero-proof div { padding: 1rem .6rem 0 0; }
  .hero-proof strong, .hero-proof span { display: block; }
  .hero-proof strong { font-family: var(--serif); font-size: 1.18rem; }
  .hero-proof span { color: #7f7b74; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
  .hero-media { position: relative; min-height: 640px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #000; box-shadow: 0 40px 100px rgba(0,0,0,.35); }
  .hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
  .media-vignette { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 40%, rgba(6,7,8,.82)); }
  .media-caption { position: absolute; left: 1.25rem; bottom: 1.25rem; display: flex; align-items: center; gap: .55rem; padding: .55rem .8rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,8,9,.52); font-size: .72rem; backdrop-filter: blur(12px); }
  .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 5px rgba(233,154,74,.14); animation: pulse 2s infinite; }
  .sound-toggle { position: absolute; top: 1rem; right: 1rem; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: .5rem .75rem; background: rgba(7,8,9,.55); font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; cursor: pointer; backdrop-filter: blur(12px); }
  .breath-seal { position: absolute; right: 1.35rem; bottom: 1.35rem; width: 86px; height: 86px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; display: grid; place-items: center; animation: breathe 8s ease-in-out infinite; }
  .breath-seal span { position: absolute; color: rgba(255,255,255,.6); font-size: .52rem; text-transform: uppercase; letter-spacing: .1em; }
  .breath-seal span:first-child { top: 13px; } .breath-seal span:last-child { bottom: 13px; }
  .breath-seal i { width: 8px; height: 8px; border-radius: 50%; background: var(--ember); }
  .hero-foot { position: relative; z-index: 2; margin-top: 1.3rem; display: grid; grid-template-columns: auto 1fr auto; gap: 1.2rem; align-items: center; color: #8f8b83; font-family: var(--serif); font-style: italic; }
  .hero-foot span { height: 1px; background: linear-gradient(90deg, var(--line), rgba(233,154,74,.45), var(--line)); }
  .hero-orbit { position: absolute; border: 1px solid rgba(233,154,74,.08); border-radius: 50%; pointer-events: none; }
  .orbit-one { width: 650px; height: 650px; right: -360px; top: -240px; }
  .orbit-two { width: 430px; height: 430px; left: -300px; bottom: -100px; }

  .manifesto, .arc-section, .series-section, .gallery-section, .culture-section { padding: clamp(6rem,10vw,10rem) 0; }
  .section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: end; margin-bottom: 3.5rem; }
  .section-head h2 { margin-top: 1rem; }
  .section-head > p { max-width: 500px; justify-self: end; color: var(--muted); font-size: 1.02rem; }

  .method-grid { display: grid; grid-template-columns: minmax(0,1fr) 100px minmax(0,1fr); gap: 1rem; align-items: stretch; }
  .method-grid > * { min-width: 0; }
  .method-card { position: relative; min-height: 470px; padding: clamp(1.5rem,3.5vw,3.2rem); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); display: flex; flex-direction: column; justify-content: space-between; }
  .method-card::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(80px); opacity: .12; pointer-events: none; }
  .method-card.yoga::after { left: -100px; bottom: -100px; background: var(--sage); }
  .method-card.karate::after { right: -100px; top: -100px; background: var(--ember); }
  .method-index { position: absolute; right: 1.3rem; top: .5rem; color: rgba(243,239,231,.035); font-family: var(--serif); font-size: 10rem; line-height: 1; }
  .method-card h3 { margin-top: .5rem; }
  .method-card ul { list-style: none; padding: 0; display: grid; gap: .65rem; color: #aaa59c; }
  .method-card li { padding-bottom: .65rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .method-bridge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .7rem; color: #77736d; font-size: .62rem; text-transform: uppercase; letter-spacing: .14em; }
  .method-bridge i { width: 1px; height: 25px; background: linear-gradient(var(--sage), var(--ember)); }
  .promise-strip { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 1rem; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
  .promise-strip div { padding: 1.35rem; background: rgba(255,255,255,.018); }
  .promise-strip div + div { border-left: 1px solid var(--line); }
  .promise-strip strong, .promise-strip span { display: block; }
  .promise-strip strong { font-family: var(--serif); font-size: 1.15rem; }
  .promise-strip span { margin-top: .2rem; color: #77736d; font-size: .75rem; }

  .arc-section { background: linear-gradient(180deg, transparent, rgba(255,255,255,.02), transparent); }
  .duration-switch { width: fit-content; display: flex; gap: .35rem; padding: .35rem; margin-bottom: 1rem; border: 1px solid var(--line); border-radius: 999px; background: #0d0e10; }
  .duration-switch button { min-width: 125px; padding: .72rem 1rem; border: 0; border-radius: 999px; background: transparent; color: #89857e; cursor: pointer; font-weight: 800; }
  .duration-switch button span { margin-left: .3rem; font-size: .7rem; font-weight: 500; }
  .duration-switch button.active { background: var(--paper); color: var(--ink); }
  .arc-shell { position: relative; padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
  .arc-rail { height: 3px; margin-bottom: 1rem; overflow: hidden; border-radius: 10px; background: rgba(255,255,255,.07); }
  .arc-rail i { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--sage),var(--ember)); transition: width .6s ease; }
  .arc { list-style: none; padding: 0; }
  .arc-item { display: grid; grid-template-columns: 90px 120px 1fr auto; gap: 1rem; align-items: center; min-height: 85px; padding: 1rem; border-bottom: 1px solid rgba(255,255,255,.065); }
  .arc-item:last-child { border-bottom: 0; }
  .arc-item .stage { color: #6f6c66; font-family: var(--mono); font-size: .65rem; }
  .arc-item .time { color: var(--sage); font-family: var(--mono); font-size: .8rem; }
  .arc-item h3 { font-family: var(--sans); font-size: .98rem; line-height: 1.25; letter-spacing: 0; }
  .arc-item p { margin-top: .24rem; color: #858078; font-size: .85rem; }
  .arc-item .verb { color: var(--ember); text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; }
  .arc-summary { display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; align-items: center; margin-top: 1rem; padding: 1.2rem 1rem .4rem; }
  .arc-summary span, .arc-summary strong { display: block; }
  .arc-summary span { color: #6e6a63; font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; }
  .arc-summary strong { font-family: var(--serif); font-size: 1.5rem; }
  .arc-summary p { color: var(--muted); font-size: .85rem; }

  .series-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
  .series-card { position: relative; min-height: 500px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
  .series-card > span { position: absolute; z-index: 3; top: 1rem; left: 1rem; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(8,9,11,.45); font-family: var(--serif); backdrop-filter: blur(8px); }
  .series-card img { width: 100%; height: 62%; object-fit: cover; filter: saturate(.8) contrast(1.06); transition: transform .7s cubic-bezier(.2,.7,.2,1); }
  .series-card:hover img { transform: scale(1.035); }
  .series-card > div { padding: 1.4rem; }
  .series-card p { margin-bottom: .55rem; color: var(--ember); text-transform: uppercase; letter-spacing: .14em; font-size: .65rem; font-weight: 800; }
  .series-card h3 { font-size: 1.45rem; line-height: 1.1; }
  blockquote { max-width: 880px; margin: 5rem auto 0; text-align: center; color: #d7d0c5; font-size: clamp(2rem,4vw,4rem); font-style: italic; }

  .gallery { display: grid; grid-template-columns: 1.35fr .8fr .8fr; grid-template-rows: 310px 310px; gap: 1rem; }
  .shot { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); }
  .shot-wide { grid-row: span 2; }
  .shot-long { grid-column: span 2; }
  .shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .75s cubic-bezier(.2,.7,.2,1), filter .5s; }
  .shot:hover img { transform: scale(1.03); filter: saturate(1.08); }
  .shot figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; padding: 1.8rem 1.25rem 1.1rem; background: linear-gradient(transparent, rgba(4,5,6,.8)); font-size: .82rem; }
  .shot figcaption span { color: var(--ember); font-family: var(--mono); }

  .culture-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }
  .culture-copy { position: sticky; top: 130px; }
  .culture-copy h2 { margin-top: 1rem; }
  .culture-copy > p { max-width: 460px; margin-top: 1.5rem; color: var(--muted); }
  .rules { border-top: 1px solid var(--line); }
  .rules article { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.5rem .5rem; border-bottom: 1px solid var(--line); }
  .rules article > span { color: #67645e; font-family: var(--mono); font-size: .68rem; }
  .rules strong { font-family: var(--serif); font-size: 1.25rem; }
  .rules p { margin-top: .25rem; color: #8d8880; font-size: .86rem; }

  .closing { padding: 2rem 0 7rem; }
  .closing-panel { position: relative; min-height: 600px; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; display: flex; align-items: center; }
  .closing-panel video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .closing-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.74) 48%, rgba(5,6,7,.15)), linear-gradient(0deg, rgba(5,6,7,.55), transparent 45%); }
  .closing-copy { position: relative; z-index: 2; max-width: 670px; padding: clamp(2rem,6vw,5rem); }
  .closing-copy h2 { margin-top: 1rem; }
  .closing-copy > p { max-width: 520px; margin: 1.25rem 0 2rem; color: #c1bbb1; }
  .closing-copy > div { display: flex; flex-wrap: wrap; gap: .7rem; }
  .closing-line { position: absolute; z-index: 2; right: 2rem; bottom: 1.7rem; color: rgba(255,255,255,.62); font-family: var(--serif); font-style: italic; }

  .footer { padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: #7c7871; font-size: .78rem; }
  .footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .footer strong, .footer span { display: block; }
  .footer strong { color: #d2ccc1; letter-spacing: .18em; }

  .runner { width: min(680px, calc(100% - 24px)); max-height: calc(100dvh - 24px); padding: 0; border: 1px solid rgba(243,239,231,.18); border-radius: 28px; background: #101215; color: var(--paper); box-shadow: 0 40px 120px rgba(0,0,0,.75); }
  .runner::backdrop { background: rgba(4,5,6,.82); backdrop-filter: blur(14px); }
  .runner[open] { animation: dialog-in .25s ease-out; }
  .runner-shell { position: relative; padding: clamp(1.4rem,5vw,3rem); }
  .runner-close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; font-size: 1.5rem; cursor: pointer; }
  .runner-head h2 { margin-top: .7rem; font-size: clamp(2rem,7vw,4rem); }
  .runner-stage { display: grid; grid-template-columns: 170px 1fr; gap: 1.6rem; align-items: center; margin-top: 2rem; padding: 1.2rem; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }
  .runner-stage h3 { margin-top: .45rem; font-size: 1.8rem; line-height: 1.02; }
  .runner-stage > div > p:last-child { margin-top: .75rem; color: var(--muted); font-size: .86rem; }
  .runner-ring { position: relative; display: grid; place-items: center; }
  .runner-ring svg { width: 160px; height: 160px; transform: rotate(-90deg); }
  .runner-ring circle { fill: none; stroke-width: 4; }
  .ring-bg { stroke: rgba(255,255,255,.08); }
  .ring-progress { stroke: var(--ember); stroke-linecap: round; stroke-dasharray: 603.19; stroke-dashoffset: 0; transition: stroke-dashoffset .4s linear; }
  .runner-ring > span { position: absolute; font-family: var(--serif); font-size: 2rem; }
  .runner-time { margin: 2rem 0 1.25rem; text-align: center; }
  .runner-time strong, .runner-time span { display: block; }
  .runner-time strong { font-family: var(--mono); font-size: clamp(3.5rem,11vw,6rem); line-height: 1; font-variant-numeric: tabular-nums; }
  .runner-time span { margin-top: .4rem; color: #6f6b64; text-transform: uppercase; letter-spacing: .13em; font-size: .6rem; }
  .runner-controls { display: flex; justify-content: center; align-items: center; gap: .7rem; }
  .runner-controls button { width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
  .runner-controls .runner-play { width: 110px; border-radius: 999px; border-color: transparent; background: var(--ember); color: #201306; font-weight: 800; }
  .runner-progress { height: 4px; margin-top: 2rem; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.07); }
  .runner-progress i { display: block; width: 0; height: 100%; background: linear-gradient(90deg,var(--sage),var(--ember)); transition: width .4s; }
  .runner-foot { display: flex; justify-content: space-between; margin-top: 1rem; color: #8b877f; font-size: .72rem; }
  .runner-foot button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; }

  .js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
  .js [data-reveal].revealed { opacity: 1; transform: none; }
}

@layer utilities {
  @keyframes pulse { 0%,100% { opacity: .55; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }
  @keyframes breathe { 0%,100% { transform: scale(.88); opacity: .7; } 50% { transform: scale(1); opacity: 1; } }
  @keyframes dialog-in { from { opacity: 0; transform: translateY(20px) scale(.98); } }

  @media (max-width: 980px) {
    .nav-cta { display: none; }
    .menu-toggle { display: block; order: 3; }
    .nav-links { position: fixed; inset: 72px 12px auto; display: grid; gap: 0; padding: .75rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(13,14,16,.96); backdrop-filter: blur(18px); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .2s, transform .2s; }
    .nav-links.open { opacity: 1; pointer-events: auto; transform: none; }
    .nav-links a { padding: .9rem; }
    .hero { padding-top: 100px; }
    .hero-grid, .section-head, .culture-grid { grid-template-columns: 1fr; }
    .hero-copy, .hero-media { min-height: 560px; }
    .section-head > p { justify-self: start; }
    .method-grid { grid-template-columns: 1fr; }
    .method-bridge { flex-direction: row; padding: 1rem; }
    .method-bridge i { width: 20px; height: 1px; }
    .method-card { min-height: 390px; }
    .series-grid { grid-template-columns: 1fr 1fr; }
    .series-card:last-child { grid-column: span 2; min-height: 440px; }
    .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 370px 260px 340px; }
    .shot-wide { grid-column: span 2; grid-row: auto; }
    .shot-long { grid-column: span 2; }
    .culture-grid { gap: 2.5rem; }
    .culture-copy { position: static; }
  }

  @media (max-width: 680px) {
    .wrap { width: min(var(--wrap), calc(100% - 24px)); }
    .nav { height: 70px; }
    .brand-mark { width: 32px; height: 32px; }
    .brand small { display: none; }
    .hero { min-height: auto; padding: 84px 0 24px; }
    .hero-grid { gap: .75rem; }
    .hero-copy { min-height: auto; padding: 2rem 1.25rem; }
    .hero-copy h1 { font-size: clamp(2.85rem,14vw,4.5rem); }
    .lede { font-size: .96rem; }
    .hero-actions .btn { width: 100%; }
    .hero-proof { margin-top: 2.2rem; gap: .4rem; }
    .hero-proof strong { font-size: .95rem; }
    .hero-proof span { font-size: .56rem; }
    .hero-media { min-height: 500px; }
    .hero-foot { grid-template-columns: 1fr; gap: .35rem; padding: .5rem 0; }
    .hero-foot span { display: none; }
    .manifesto, .arc-section, .series-section, .gallery-section, .culture-section { padding: 5rem 0; }
    .section-head { margin-bottom: 2.2rem; }
    .section-head h2 { font-size: 3rem; }
    .method-card { min-height: 410px; padding: 1.5rem; }
    .promise-strip { grid-template-columns: 1fr 1fr; }
    .promise-strip div + div { border-left: 0; }
    .promise-strip div:nth-child(even) { border-left: 1px solid var(--line); }
    .promise-strip div:nth-child(n+3) { border-top: 1px solid var(--line); }
    .duration-switch { width: 100%; }
    .duration-switch button { min-width: 0; flex: 1; padding-inline: .4rem; }
    .duration-switch button span { display: none; }
    .arc-shell { padding: .55rem; }
    .arc-item { grid-template-columns: 46px 76px 1fr; gap: .55rem; padding: 1rem .5rem; }
    .arc-item .verb { display: none; }
    .arc-item h3 { font-size: .87rem; }
    .arc-item p { display: none; }
    .arc-summary { grid-template-columns: auto 1fr; gap: .8rem; }
    .arc-summary .btn { grid-column: span 2; width: 100%; }
    .series-grid { grid-template-columns: 1fr; }
    .series-card, .series-card:last-child { grid-column: auto; min-height: 450px; }
    blockquote { margin-top: 3.5rem; }
    .gallery { grid-template-columns: 1fr; grid-template-rows: 430px 330px 330px 330px; }
    .shot-wide, .shot-long { grid-column: auto; }
    .closing-panel { min-height: 610px; align-items: flex-end; }
    .closing-overlay { background: linear-gradient(0deg, rgba(5,6,7,.98) 0%, rgba(5,6,7,.72) 60%, rgba(5,6,7,.1)); }
    .closing-copy { padding: 2rem 1.4rem 5rem; }
    .closing-copy .btn { width: 100%; }
    .closing-line { right: 1.4rem; left: 1.4rem; bottom: 1.2rem; }
    .footer .wrap { align-items: flex-start; flex-direction: column; }
    .runner-shell { padding: 1.35rem; }
    .runner-stage { grid-template-columns: 1fr; text-align: center; }
    .runner-ring { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
  }
}

@layer components {
  /* ─── Rates (07) — the other half of the name ─── */
  .rates-section { padding-block: clamp(4rem, 9vw, 7.5rem); }
  .rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
    margin-top: 2.6rem;
  }
  .rate-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
    padding: 2.1rem 1.9rem 1.9rem;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }
  .rate-price { display: flex; align-items: baseline; gap: .5rem; }
  .rate-price strong {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 4.4vw, 3.4rem);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1;
  }
  .rate-price span { color: var(--muted); font-size: .95rem; }
  .rate-card h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
  .rate-card ul { list-style: none; padding: 0; display: grid; gap: .55rem; color: var(--muted); font-size: .95rem; }
  .rate-card ul li::before { content: "— "; color: var(--ember); }
  .rate-card .btn { margin-top: auto; justify-content: center; }
  .rate-card.featured {
    background: linear-gradient(165deg, rgba(233, 154, 74, .13), rgba(184, 92, 46, .04) 55%), var(--panel-2);
    border-color: rgba(233, 154, 74, .42);
  }
  .rate-card.featured::before {
    content: "most chosen";
    position: absolute;
    top: -11px;
    right: 22px;
    padding: .28rem .75rem;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: var(--ember);
    color: #17100a;
    border-radius: 999px;
  }
  .rates-note { margin-top: 1.7rem; color: var(--muted); font-size: .92rem; max-width: 56ch; }
  .rates-note strong { color: var(--paper); }
  @media (max-width: 900px) {
    .rates-grid { grid-template-columns: 1fr; }
    .rate-card.featured { order: -1; }
  }
}
