:root {
  --ink: #111111;
  --muted: #66666c;
  --paper: #ffffff;
  --soft: #f6f6f8;
  --cyan: #00a4df;
  --magenta: #e5007d;
  --yellow: #ffc400;
  --violet: #6036cf;
  --line: rgba(17, 17, 17, 0.14);
  --max: 1220px;
  --shadow: 0 28px 80px rgba(30, 22, 71, 0.14);
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: page-out 260ms ease both;
}

::view-transition-new(root) {
  animation: page-in 420ms ease both;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  animation: page-in 420ms ease both;
}

body.page-leaving {
  animation: page-out 260ms ease both;
  pointer-events: none;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes page-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-8px); }
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(26, 25, 35, 0.05);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand img {
  width: 126px;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  transition: right 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(90px, 17vw, 230px);
  background: url("assets/iridescent-wave.png") center bottom / 100% 100% no-repeat;
  opacity: 0.78;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 84px);
  padding: 9vh 0 18vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 8vw, 120px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan) 0 33%, var(--magenta) 33% 66%, var(--yellow) 66%);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 7.6vw, 8.2rem);
  line-height: 0.91;
  letter-spacing: -0.072em;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.lede {
  max-width: 650px;
  color: #35353a;
  font-size: clamp(1.16rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 19, 43, 0.12);
}

.button.primary { background: var(--ink); color: #fff; }
.button.ghost { background: rgba(255, 255, 255, 0.7); }

.hero-mark {
  position: relative;
  justify-self: center;
  width: min(82%, 420px);
  filter: drop-shadow(0 32px 36px rgba(33, 21, 84, 0.16));
  animation: markFloat 8s ease-in-out infinite;
}

.hero-mark::after {
  content: "";
  position: absolute;
  inset: 15% 8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 164, 223, 0.18), rgba(229, 0, 125, 0.07) 52%, transparent 72%);
  filter: blur(20px);
}

@keyframes markFloat {
  0%, 100% { transform: translate(-18px, 10px) rotate(-2deg); }
  25% { transform: translate(14px, -16px) rotate(1deg); }
  50% { transform: translate(24px, 12px) rotate(2deg); }
  75% { transform: translate(-8px, -20px) rotate(-1deg); }
}

.section { padding: clamp(90px, 12vw, 170px) 0; }
.section.compact { padding: clamp(72px, 9vw, 120px) 0; }
.section.soft { background: var(--soft); }
.section.dark { background: #111; color: #fff; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 10vw, 140px);
  align-items: start;
}

.section-copy p { max-width: 720px; color: #46464c; }
.dark .section-copy p { color: rgba(255,255,255,.72); }

.quote-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.quote-stage img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.quote {
  position: relative;
  margin: 0;
  padding-top: 28px;
  font-size: clamp(2.4rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.quote::before {
  content: "“";
  position: absolute;
  top: -0.5em;
  left: -0.06em;
  color: var(--magenta);
  font-size: 2em;
  line-height: 1;
}

.quote-credit {
  margin-top: 28px;
  color: rgba(255,255,255,.62);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-frame:hover img { transform: scale(1.025); }

.portrait-pair {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 48px;
}

.portrait-pair figure {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.portrait-pair figure:first-child { transform: translateY(38px); }

.portrait-pair img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.portrait-pair figure:first-child img { object-position: 50% 35%; }

.business-photo {
  margin: 48px 0 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 18px 50px rgba(26, 25, 35, 0.1);
}

.business-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 72%;
}

.partner-logo {
  width: 100%;
  height: 105px;
  padding: 12px 18px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.network a:hover .partner-logo { background: var(--soft); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-weight: 700;
  text-decoration: none;
}

.link-arrow::after { content: "→"; transition: transform 160ms ease; }
.link-arrow:hover::after { transform: translateX(5px); }

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.quote-card {
  min-height: 290px;
  padding: 32px 32px 24px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card + .quote-card { padding-left: 32px; }
.quote-card:last-child { border-right: 0; }
.quote-card p { font-size: clamp(1.25rem, 2.2vw, 1.8rem); line-height: 1.25; letter-spacing: -0.03em; }
.quote-card span { color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }

.page-hero {
  position: relative;
  min-height: 66vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero .container { position: relative; z-index: 1; padding: 110px 0 170px; }
.page-hero h1 { max-width: 960px; font-size: clamp(3.5rem, 7vw, 7.3rem); }

.page-hero.visual-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(44px, 8vw, 110px);
  align-items: center;
}

.page-hero.visual-hero h1 { font-size: clamp(3.2rem, 6vw, 6.6rem); }

.hero-feature-image {
  width: 100%;
  height: clamp(390px, 46vw, 590px);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-feature-image.ideas {
  object-fit: contain;
  object-position: center;
  background: #151b21;
}
.hero-feature-image.bicycle {
  object-fit: contain;
  object-position: center;
  background: #171b20;
}

.hero-feature-image.contact-portrait {
  width: min(100%, 430px);
  height: clamp(340px, 38vw, 480px);
  justify-self: end;
  object-position: center 28%;
}

.coffee-image { object-position: 38% center !important; }

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.fact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.fact-list strong { color: var(--magenta); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; }

.value-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card,
.industry-card {
  position: relative;
  min-height: 310px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.value-card::before,
.industry-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  width: 48px;
  height: 4px;
  background: var(--cyan);
}

.value-card:nth-child(2)::before,
.industry-card:nth-child(2)::before { background: var(--magenta); }
.value-card:nth-child(3)::before,
.industry-card:nth-child(3)::before { background: var(--yellow); }

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.industry-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}

.industry-list div {
  min-height: 170px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--line);
}

.industry-list div:nth-child(odd) { border-right: 1px solid var(--line); }
.industry-list div:nth-child(even) { padding-left: 28px; }
.industry-list p { margin-bottom: 0; color: var(--muted); }

.network {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.network a {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.network a:hover { background: #fff; color: #111; }
.network small { color: inherit; opacity: 0.62; letter-spacing: 0.1em; text-transform: uppercase; }
.network strong { font-size: clamp(1.8rem, 4vw, 3.7rem); letter-spacing: -0.05em; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.portrait-frame {
  overflow: hidden;
  min-height: 620px;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 30%;
}

.form-section { padding-top: 0; }

.form-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(44px, 8vw, 110px);
  align-items: start;
}

.contact-quote-image { object-position: left top !important; }

.contact-details { margin: 34px 0 0; padding: 0; list-style: none; }
.contact-details li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-details small { display: block; color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.contact-details a { font-size: clamp(1.05rem, 2vw, 1.35rem); text-decoration: none; }

.contact-form {
  padding: clamp(28px, 5vw, 56px);
  background: var(--soft);
}

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #8c8c92;
  border-radius: 0;
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 135px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: 0; border-color: var(--magenta); box-shadow: 0 2px 0 var(--magenta); }
.form-note { color: var(--muted); font-size: 0.82rem; }

.site-footer {
  position: relative;
  padding: 72px 0 32px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.footer-brand img { width: 120px; margin-bottom: 18px; }
.footer-brand p { max-width: 430px; color: var(--muted); font-size: 0.9rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 28px; }
.footer-links a { font-size: 0.82rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; }
.copyright { margin-top: 46px; color: #7a7a80; font-size: 0.75rem; }

.js .reveal {
  opacity: 1;
  transform: none;
}

.js .reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 900px) {
  .nav-wrap { min-height: 74px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto;
    min-height: calc(100vh - 74px);
    padding: 50px 24px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.35rem; }
  .hero-grid,
  .split,
  .quote-stage,
  .intro-grid,
  .contact-grid,
  .form-layout,
  .page-hero.visual-hero .container { grid-template-columns: 1fr; }
  .hero-grid { padding-top: 70px; text-align: left; }
  .hero-mark { width: min(78vw, 420px); grid-row: 1; }
  .quote-stage img { min-height: 420px; }
  .value-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .network { grid-template-columns: 1fr; }
  .value-card,
  .industry-card { min-height: 250px; }
  .card-number { margin-bottom: 45px; }
  .portrait-pair { margin-bottom: 46px; }
  .page-hero.visual-hero .container { padding-top: 80px; }
  .hero-feature-image { height: min(72vw, 540px); }
  .portrait-frame { min-height: 520px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container, .nav-wrap { width: min(100% - 32px, var(--max)); }
  .brand img { width: 108px; height: 54px; }
  h1 { font-size: clamp(3.1rem, 16vw, 5rem); }
  .hero::after, .page-hero::after { height: 110px; background-size: auto 100%; }
  .hero-grid { min-height: auto; padding: 50px 0 150px; }
  .hero-mark { width: min(74vw, 330px); }
  .portrait-pair { grid-template-columns: 1fr; }
  .portrait-pair figure:first-child { transform: none; }
  .portrait-pair img { height: 360px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card,
  .quote-card + .quote-card { min-height: 220px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .quote-card:last-child { border-bottom: 0; }
  .industry-list,
  .field-grid { grid-template-columns: 1fr; }
  .industry-list div:nth-child(odd) { border-right: 0; }
  .industry-list div:nth-child(even) { padding-left: 0; }
  .network a { min-height: 190px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
