:root {
  --ink: #211d1b;
  --muted: #6f625e;
  --paper: #fff7f1;
  --paper-deep: #f3e3da;
  --red: #c84234;
  --red-dark: #94291f;
  --sage: #59665b;
  --line: rgba(33, 29, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Gill Sans", "Trebuchet MS", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 247, 241, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 18px;
  color: var(--red);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.brand-mark {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 14px;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 122px clamp(22px, 7vw, 112px) 72px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background:
    linear-gradient(115deg, rgba(148, 41, 31, 0.10), transparent 38%),
    radial-gradient(circle at 88% 24%, rgba(89, 102, 91, 0.18), transparent 28%),
    linear-gradient(180deg, var(--paper), #f7eae4 68%, #efe1d7);
}

.hero-copy {
  min-width: 0;
  max-width: 780px;
  width: min(100%, 780px);
}

.mascot-figure {
  position: relative;
  align-self: end;
  min-width: 0;
  margin: 0 0 clamp(16px, 4vh, 52px);
}

.mascot-orbit {
  position: absolute;
  z-index: -1;
  inset: 12% -4% 3% 7%;
  border: 1px solid rgba(200, 66, 52, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 44%, rgba(255, 247, 241, 0.94) 0 27%, transparent 28%),
    repeating-radial-gradient(circle, transparent 0 52px, rgba(89, 102, 91, 0.09) 53px 54px);
  transform: rotate(-8deg);
}

.hero-mascot {
  display: block;
  width: 118%;
  max-width: none;
  margin-left: -10%;
  filter: drop-shadow(0 34px 28px rgba(62, 42, 34, 0.18));
  transform: translateY(2%);
}

.mascot-figure figcaption {
  position: absolute;
  right: 3%;
  bottom: 3%;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 13px 17px;
  color: var(--paper);
  background: var(--ink);
  border-left: 5px solid var(--red);
  box-shadow: 0 14px 32px rgba(33, 29, 27, 0.18);
}

.mascot-figure figcaption span {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mascot-figure figcaption small {
  color: rgba(255, 247, 241, 0.68);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--red);
  font-size: clamp(68px, 13vw, 190px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-text {
  width: min(100%, 660px);
  max-width: 660px;
  margin: 34px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 650;
  line-height: 1.12;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  border-bottom: 2px solid currentColor;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.primary-link {
  color: var(--red-dark);
}

.secondary-link {
  color: var(--sage);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
}

.ticker span {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 247, 241, 0.18);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:last-child {
  border-right: 0;
}

.content-section,
.split-band,
.mascot-story {
  padding: clamp(70px, 11vw, 138px) clamp(22px, 7vw, 112px);
}

.mascot-story {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: center;
  overflow: hidden;
  background: var(--paper-deep);
}

.mascot-name {
  color: transparent;
  font-size: clamp(100px, 17vw, 250px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 2px rgba(200, 66, 52, 0.3);
  transform: rotate(-90deg);
}

.mascot-copy {
  min-width: 0;
  max-width: 820px;
}

.mascot-copy p {
  max-width: 700px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.32;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  background: #f8eee8;
}

.section-body {
  min-width: 0;
  max-width: 880px;
}

h2 {
  margin: 0;
  font-size: clamp(38px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-body p {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 28px);
  line-height: 1.32;
}

.signal-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: clamp(74px, 10vw, 128px) clamp(22px, 7vw, 112px);
  background:
    linear-gradient(90deg, rgba(255, 247, 241, 0.92), rgba(243, 227, 218, 0.9)),
    linear-gradient(135deg, rgba(200, 66, 52, 0.08), rgba(89, 102, 91, 0.14));
  border-top: 1px solid var(--line);
}

.signal-copy {
  min-width: 0;
  max-width: 720px;
}

.signal-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.35;
}

.route-panel {
  position: relative;
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  background: rgba(33, 29, 27, 0.92);
  color: var(--paper);
}

.route-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 247, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 241, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 90%);
}

.route-status,
.route-readout,
.route-map {
  position: relative;
}

.route-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.route-status span {
  padding: 7px 10px;
  background: rgba(255, 247, 241, 0.09);
  color: rgba(255, 247, 241, 0.82);
  border: 1px solid rgba(255, 247, 241, 0.14);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.route-map {
  width: 100%;
  height: auto;
  display: block;
}

.route-line {
  fill: none;
  stroke-linecap: round;
}

.route-shadow {
  stroke: rgba(255, 247, 241, 0.18);
  stroke-width: 18;
}

.route-live {
  stroke: #ffd6ca;
  stroke-width: 5;
  stroke-dasharray: 52 26;
  animation: route-flow 3.4s linear infinite;
}

.route-node circle {
  fill: var(--red);
  stroke: #ffd6ca;
  stroke-width: 4;
}

.route-node text {
  fill: var(--paper);
  font-size: 15px;
  font-weight: 900;
  text-anchor: middle;
}

.node-depot circle {
  fill: var(--sage);
}

.route-pulse circle {
  fill: none;
  stroke: rgba(255, 214, 202, 0.55);
  stroke-width: 3;
  animation: route-pulse 2.4s ease-out infinite;
}

.route-readout {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 247, 241, 0.18);
}

.route-readout span {
  color: rgba(255, 247, 241, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-readout strong {
  color: #ffd6ca;
  font-size: clamp(18px, 2.4vw, 28px);
  line-height: 1.05;
  text-align: right;
}

.brand-system {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding: clamp(74px, 10vw, 132px) clamp(22px, 7vw, 112px);
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 66, 52, 0.10), transparent 30%),
    linear-gradient(180deg, #fff8f4, #f5e7df);
  border-top: 1px solid var(--line);
}

.brand-system-copy {
  min-width: 0;
  max-width: 720px;
}

.brand-system-copy p {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.36;
}

.brand-showcase {
  min-width: 0;
  padding: clamp(22px, 3vw, 36px);
  background: rgba(255, 247, 241, 0.78);
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(33, 29, 27, 0.10);
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  min-height: clamp(280px, 38vw, 450px);
  background:
    linear-gradient(rgba(33, 29, 27, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 29, 27, 0.07) 1px, transparent 1px),
    linear-gradient(145deg, #fffaf7, #f1dfd4);
  background-size: 36px 36px, 36px 36px, auto;
  overflow: hidden;
}

.brand-logo-frame img {
  width: min(72%, 420px);
  filter: saturate(0.98) contrast(1.02);
}

.brand-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.brand-note {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 247, 241, 0.9);
}

.brand-note span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-note strong {
  display: block;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.brand-swatches {
  display: flex;
  gap: 8px;
}

.brand-swatches i {
  width: 28px;
  height: 28px;
  display: block;
  border: 1px solid rgba(33, 29, 27, 0.12);
  border-radius: 50%;
}

.swatch-red {
  background: var(--red);
}

.swatch-sage {
  background: var(--sage);
}

.swatch-ink {
  background: var(--ink);
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -78;
  }
}

@keyframes route-pulse {
  0% {
    opacity: 0.92;
    transform: scale(0.45);
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(44px, 7vw, 104px);
  background: var(--sage);
  color: var(--paper);
}

.split-band .section-kicker {
  color: #ffd6ca;
}

.approach-list {
  min-width: 0;
  display: grid;
  gap: 1px;
  background: rgba(255, 247, 241, 0.24);
}

.approach-list article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  background: var(--sage);
}

.approach-list span {
  color: #ffd6ca;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.approach-list h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.05;
}

.approach-list p {
  margin: 0;
  color: rgba(255, 247, 241, 0.74);
  font-size: 17px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px clamp(22px, 7vw, 112px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer span {
  color: var(--red);
}

@media (max-width: 1040px) {
  .hero {
    min-height: 820px;
  }

  .content-section {
    grid-template-columns: minmax(96px, 0.28fr) minmax(0, 1fr);
  }

  .split-band {
    grid-template-columns: 1fr;
  }

  .signal-band {
    grid-template-columns: 1fr;
  }

  .brand-system {
    grid-template-columns: 1fr;
  }

  .approach-list {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
  }

  .site-nav {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 12px;
    line-height: 1.1;
    text-align: left;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 76px 20px 58px;
  }

  .hero-copy,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .mascot-figure {
    width: 100%;
    margin: -18px 0 0;
  }

  .hero-mascot {
    width: 100%;
    margin-left: 0;
  }

  .mascot-figure figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    max-width: 92%;
    margin: -8px 0 0 auto;
  }

  .hero-text {
    max-width: 20rem;
    margin-top: 26px;
    font-size: clamp(20px, 5.6vw, 26px);
    line-height: 1.18;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 86px);
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.17em;
  }

  .hero-actions {
    gap: 14px 22px;
    margin-top: 34px;
  }

  .primary-link,
  .secondary-link {
    min-height: 42px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }

  .ticker,
  .content-section,
  .signal-band,
  .brand-system,
  .split-band {
    grid-template-columns: 1fr;
  }

  .mascot-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mascot-name {
    font-size: 28vw;
    line-height: 0.7;
    transform: none;
  }

  .ticker span {
    justify-content: flex-start;
    min-height: 68px;
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 241, 0.18);
    text-align: left;
  }

  .ticker span:last-child {
    border-bottom: 0;
  }

  .content-section,
  .signal-band,
  .brand-system,
  .split-band,
  .mascot-story {
    padding: 62px 20px;
  }

  h2 {
    font-size: clamp(34px, 12vw, 58px);
    line-height: 0.98;
  }

  .section-body p {
    margin-top: 24px;
    font-size: 19px;
  }

  .signal-copy p {
    margin-top: 22px;
    font-size: 18px;
  }

  .brand-system-copy p {
    margin-top: 22px;
    font-size: 18px;
  }

  .route-panel {
    padding: 20px;
  }

  .route-status {
    gap: 8px;
    margin-bottom: 18px;
  }

  .route-status span {
    font-size: 10px;
  }

  .route-readout {
    display: grid;
    gap: 6px;
  }

  .route-readout strong {
    text-align: left;
  }

  .brand-showcase {
    padding: 16px;
  }

  .brand-logo-frame {
    min-height: 260px;
    background-size: 28px 28px, 28px 28px, auto;
  }

  .brand-logo-frame img {
    width: min(82%, 330px);
  }

  .brand-notes {
    grid-template-columns: 1fr;
  }

  .approach-list article {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .approach-list p {
    font-size: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }
}

@media (max-width: 430px) {
  .brand {
    gap: 12px;
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 11px;
  }

  .site-nav {
    gap: 7px 11px;
  }

  .hero {
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 68px);
  }

  .hero-text {
    font-size: clamp(19px, 6.4vw, 24px);
    max-width: 18.75rem;
  }

  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .ticker span {
    min-height: 58px;
  }

  .approach-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-live,
  .route-pulse circle {
    animation: none;
  }
}
