
:root {
  --bg: #F8F6F0;
  --surface: #e8e3d8;
  --text: #1c1c1c;
  --secondary: #6b6054;
  --meta: #96877a;
  --terra: #b44a2d;
  --amber: #D17E19;
  --border: #d4cfc2;
  --serif: 'Spectral', Georgia, serif;
  --sans: 'Albert Sans', system-ui, sans-serif;
  --gutter: 48px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.heading {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--secondary);
}

.pull-quote {
  border-left: 2px solid var(--amber);
  padding-left: 14px;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #4a4238;
}

.stat {
  margin-bottom: 20px;
}

.stat-number {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6054;
  margin-top: 4px;
}

.margin-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b6054;
  line-height: 1.8;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.bullet-list li {
  font-size: 13px;
  line-height: 1.7;
  color: var(--secondary);
  padding-left: 20px;
  position: relative;
}
.bullet-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--border);
}

.section {
  display: grid;
  grid-template-columns: 3fr 1px 1fr;
  border-bottom: 1px solid var(--border);
}

.section-main {
  padding: 40px var(--gutter);
}

.section-divider {
  background: var(--border);
}

.section-margin {
  padding: 40px 24px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--gutter);
  border-bottom: 1px solid var(--border);
}

.nav-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-name a {
  color: var(--text);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--amber);
}

.hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid var(--text);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 var(--gutter) 56px;
  max-width: 50%;
  transition: opacity 0.5s ease;
}

.hero-name {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 12px;
}
.hero-name em {
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: -0.01em;
}

.cs-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.cs-link:hover .link-title {
  color: var(--amber);
  transition: color 0.2s;
}
.cs-link:hover .cs-arrow {
  transform: translateX(4px);
}

.link-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.2s;
}

.cs-arrow {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--amber);
  margin-top: 12px;
  display: inline-block;
  transition: transform 0.2s;
}

.talk {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.talk:first-child {
  border-top: 1px solid var(--border);
}
.talk:last-child {
  border-bottom: none;
}

.talk-name {
  font-size: 13px;
  line-height: 1.5;
}
.talk-name a {
  color: var(--text);
  text-underline-offset: 3px;
}

.talk-year {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--secondary);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-photo {
    width: 50%;
  }
  .hero-content {
    max-width: 55%;
  }
}
@media (max-width: 640px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }
  .hero-photo {
    position: relative;
    width: 100%;
    height: 50vw;
    min-height: 240px;
  }
  .hero-photo::after {
    background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  }
  .hero-content {
    position: relative;
    max-width: 100%;
    padding: 24px var(--gutter) 40px;
  }
  .hero-name {
    font-size: clamp(36px, 10vw, 48px);
  }
  .hero-subtitle {
    font-size: 17px;
  }
  .link-title {
    font-size: 18px;
  }
}
.video-block {
  background: var(--surface);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  margin-top: 20px;
}
.video-block .video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  transform: scale(1.08);
  pointer-events: none;
}
.video-block .video-main {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}

.ds-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.ds-images img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.locked-content {
  position: relative;
  margin-top: 8px;
}

.locked-placeholder {
  height: 260px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.locked-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, var(--border) 0px, var(--border) 1px, transparent 1px, transparent 18px);
  opacity: 0.4;
  mask-image: linear-gradient(180deg, black 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 80%);
}

.locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.locked-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.locked-icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.locked-label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.locked-form {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 4px;
}
.locked-form input[type=password] {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--bg);
  color: var(--text);
  outline: none;
  width: 180px;
  transition: border-color 0.2s;
}
.locked-form input[type=password]:focus {
  border-color: var(--amber);
}
.locked-form input[type=password]::placeholder {
  color: var(--meta);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.locked-form input[type=submit] {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  background: var(--text);
  color: var(--bg);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.locked-form input[type=submit]:hover {
  opacity: 0.85;
}

.locked-error {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--terra);
  height: 14px;
  margin-top: 6px;
}

.paper {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.paper:first-child {
  border-top: 1px solid var(--border);
}

.paper-title {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.paper-meta {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--secondary);
  letter-spacing: 0.08em;
}

.rec {
  margin-bottom: 32px;
}
.rec:last-child {
  margin-bottom: 0;
}

.rec-quote {
  border-left: 2px solid var(--amber);
  padding-left: 14px;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  line-height: 1.65;
  color: #4a4238;
  margin-bottom: 10px;
}
.rec-quote::before {
  content: "“";
  color: var(--terra);
  margin-right: 2px;
}
.rec-quote::after {
  content: "”";
  color: var(--terra);
  margin-left: 2px;
}

.rec-attr {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  padding-left: 14px;
}
.rec-attr strong {
  color: var(--text);
}

@media (max-width: 640px) {
  .ds-images {
    grid-template-columns: 1fr;
  }
  .video-block {
    aspect-ratio: 16/9;
  }
  .rec-quote {
    font-size: 13px;
  }
}
.cs-link:hover .heading {
  color: var(--amber);
  transition: color 0.2s;
}

.image-full {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  margin-top: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.image-grid img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.image-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.image-grid-3 img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.device-mock {
  position: relative;
  display: inline-block;
}
.device-mock img.device-frame {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.device-mock .device-scroll {
  position: absolute;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.device-mock .device-scroll::-webkit-scrollbar {
  display: none;
}
.device-mock .device-scroll img {
  width: 100%;
  display: block;
}
.device-mock.desktop-mock {
  width: 100%;
}
.device-mock.desktop-mock .device-scroll {
  left: 6.95%;
  top: 5.08%;
  width: 86.09%;
  height: 81.36%;
}
.device-mock.mobile-mock {
  width: 220px;
}
.device-mock.mobile-mock .device-scroll {
  left: 8.97%;
  top: 5.28%;
  width: 82.05%;
  height: 89.37%;
}

.device-mocks {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 20px;
}
.device-mocks .desktop-mock {
  flex: 1;
}

.insight-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.insight-card {
  border-top: 2px solid var(--amber);
  padding-top: 8px;
}
.insight-card .insight-strategy {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}
.insight-card .insight-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 10px;
}
.insight-card .insight-hmw {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  line-height: 1.5;
  color: var(--secondary);
}

.quick-facts {
  display: flex;
  gap: 24px;
  margin-top: 12px;
}

.quick-fact {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--secondary);
  padding: 8px 16px;
  border: 1px solid var(--border);
}

@media (max-width: 640px) {
  .insight-cards {
    grid-template-columns: 1fr;
  }
  .image-grid-3 {
    grid-template-columns: 1fr;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  :root {
    --gutter: 32px;
  }
}
@media (max-width: 640px) {
  :root {
    --gutter: 24px;
  }
  .section {
    grid-template-columns: 1fr;
  }
  .section-divider {
    height: 1px;
    background: var(--border);
  }
  .section-margin {
    padding: 16px var(--gutter) 32px;
  }
  .section-margin:empty {
    display: none;
  }
  .section-divider:has(+ .section-margin:empty) {
    display: none;
  }
  nav {
    padding: 14px var(--gutter);
  }
  .heading {
    font-size: 18px;
  }
  .pull-quote {
    font-size: 14px;
  }
}
