/* Net Data Stream — Han Stream Celadon theme */
:root {
  --ink: #13241f;
  --ink-soft: #3d524a;
  --mist: #e4efe9;
  --fog: #f3f8f5;
  --paper: #dceae3;
  --deep: #0f2f2a;
  --stream: #2a6f5e;
  --stream-mid: #3d8f78;
  --stream-bright: #5db8a0;
  --brass: #c4923a;
  --brass-deep: #a67828;
  --line: rgba(19, 36, 31, 0.12);
  --shadow: 0 20px 48px rgba(15, 47, 42, 0.14);
  --radius: 3px;
  --font-display: "Bricolage Grotesque", Georgia, sans-serif;
  --font-body: "Literata", Georgia, serif;
  --font-ui: "Sora", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(93, 184, 160, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 5%, rgba(196, 146, 58, 0.1), transparent 45%),
    linear-gradient(168deg, #f0f7f3 0%, #e2ece7 42%, #edf4f0 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 36px,
      rgba(42, 111, 94, 0.035) 36px,
      rgba(42, 111, 94, 0.035) 37px
    );
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--stream);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brass-deep);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--deep);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.35rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin: 0 0 0.65rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }

.visually-hidden {
  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: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--deep);
  color: #fff;
  padding: 0.55rem 0.9rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0.75rem;
  color: #fff;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-main {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.inline-error {
  background: #fde8e4;
  color: #7a2e22;
  border: 1px solid #e4b4aa;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 248, 245, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--deep);
}

.brand:hover { color: var(--deep); }

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 5px;
  background:
    linear-gradient(135deg, var(--stream-bright) 0%, var(--stream) 55%, var(--deep) 100%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.15);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brass);
  right: 0.28rem;
  top: 0.28rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--fog);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--deep);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
}

.nav-toggle-bar::before { transform: translate(-50%, -7px); }
.nav-toggle-bar::after { transform: translate(-50%, 5px); content: ""; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.nav-list a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--deep);
}

.nav-cta {
  background: var(--deep);
  color: #f3f8f5 !important;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--stream);
  color: #fff !important;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--fog);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open { max-height: 28rem; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.25rem;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.7rem 0.4rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* Hero — full-bleed */
.hero-bleed {
  position: relative;
  min-height: min(92vh, 720px);
  display: grid;
  align-items: end;
  color: #f5fbf8;
  overflow: hidden;
}

.hero-bleed-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bleed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-bleed-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 47, 42, 0.88) 0%, rgba(15, 47, 42, 0.55) 48%, rgba(15, 47, 42, 0.35) 100%),
    linear-gradient(to top, rgba(15, 47, 42, 0.75) 0%, transparent 45%);
}

.hero-bleed-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 5rem 0 3.5rem;
  animation: riseIn 0.9s ease both;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0 0 1.25rem;
  color: #fff;
  max-width: 12ch;
}

.hero-statement {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 36rem;
  color: rgba(245, 251, 248, 0.9);
  margin-bottom: 1.75rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--stream-bright);
  color: var(--deep);
}

.btn-primary:hover {
  background: #7ecdb8;
  color: var(--deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-secondary {
  background: var(--deep);
  color: #f3f8f5;
}

.btn-secondary:hover {
  background: var(--stream);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--deep);
  border-color: var(--deep);
}

.btn-outline:hover {
  background: var(--deep);
  color: #fff;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}

.section-tight { padding: 2.5rem 0; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stream);
  margin: 0 0 0.6rem;
}

.lede {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.page-hero {
  padding: 3.25rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(93, 184, 160, 0.12), transparent);
}

.page-hero h1 { max-width: 18ch; }

/* Quote / social proof early */
.quote-panel {
  padding: 3rem 0;
  background: var(--deep);
  color: #e8f4ef;
}

.quote-panel blockquote {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 42rem;
}

.quote-panel cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--stream-bright);
}

/* Course rail */
.course-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.course-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.course-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.course-tile-body {
  padding: 1.15rem 1.2rem 1.35rem;
}

.course-tile h3 {
  color: var(--deep);
  margin-bottom: 0.4rem;
}

.course-tile p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 800px) {
  .course-rail { grid-template-columns: 1fr; }
}

/* Benefits as numbered stream */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.benefit-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.benefit-index {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--stream-bright);
  line-height: 1;
}

.benefit-row h3 { margin-bottom: 0.35rem; }
.benefit-row p { margin: 0; color: var(--ink-soft); }

/* Split feature */
.split-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.split-feature img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 800px) {
  .split-feature { grid-template-columns: 1fr; }
  .split-feature img { height: 240px; }
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 3rem 0;
  background:
    linear-gradient(120deg, var(--deep) 0%, #1a4a40 55%, #245a4d 100%);
  color: #eef8f3;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(238, 248, 243, 0.85); max-width: 34rem; }

/* Proof strip */
.proof-strip {
  padding: 2rem 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--deep);
  letter-spacing: -0.03em;
}

.proof-item span {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

@media (max-width: 700px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.price-tier {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
}

.price-tier.is-featured {
  background: var(--deep);
  color: #e8f4ef;
  border-color: var(--deep);
}

.price-tier.is-featured h3,
.price-tier.is-featured .price-amount { color: #fff; }

.price-tier.is-featured p { color: rgba(232, 244, 239, 0.8); }

.price-amount {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--deep);
  margin: 0.75rem 0;
}

.price-tier ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.1rem;
  color: inherit;
  font-size: 0.92rem;
}

.price-tier li { margin-bottom: 0.4rem; }

@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Reviews */
.review-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.review-item p { margin-bottom: 0.75rem; }

.review-meta {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.review-rating {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brass-deep);
  margin-bottom: 0.5rem;
}

.case-study {
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-study h3 { margin-top: 0; }

/* Blog */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: background 0.2s ease;
}

.blog-row:hover {
  background: rgba(255, 255, 255, 0.45);
  color: inherit;
}

.blog-row img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-row time {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--stream);
}

@media (max-width: 600px) {
  .blog-row { grid-template-columns: 1fr; }
}

.article-body {
  max-width: 42rem;
  margin-top: 2rem;
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.article-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.form-field {
  margin-bottom: 1.15rem;
}

.form-field label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  color: var(--ink);
}

.form-field textarea { min-height: 140px; resize: vertical; }

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #c45a4a;
}

.field-error {
  display: none;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: #a33d30;
  margin-top: 0.3rem;
}

.form-field.has-error .field-error { display: block; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  border-radius: var(--radius);
}

.form-status.is-success {
  display: block;
  background: #dceee6;
  color: #1a4a3a;
  border: 1px solid #a8d0c0;
}

.form-status.is-error {
  display: block;
  background: #fde8e4;
  color: #7a2e22;
  border: 1px solid #e4b4aa;
}

.contact-aside {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  height: fit-content;
}

.contact-aside address {
  font-style: normal;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

/* Course detail */
.module-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.module-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
}

.module-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--stream-mid);
}

.outcome-list {
  padding-left: 1.2rem;
}

.outcome-list li { margin-bottom: 0.5rem; }

.instructor-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin: 2rem 0;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
}

.instructor-block img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.faq-list summary {
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  color: var(--deep);
}

.faq-list details p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

/* Legal */
.legal-body {
  max-width: 44rem;
  margin-top: 1.5rem;
}

.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
}

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  font-family: var(--font-ui);
}

.legal-body th,
.legal-body td {
  border: 1px solid var(--line);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-body th {
  background: rgba(42, 111, 94, 0.08);
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  color: var(--stream-bright);
  line-height: 1;
  margin: 0;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: var(--deep);
  color: #c9ddd5;
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.75rem;
}

.footer-tag {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stream-bright);
  margin: 0 0 0.85rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.45rem; }

.footer-links a,
.site-footer a {
  color: #d5e8e0;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.footer-links a:hover,
.site-footer a:hover {
  color: #fff;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer-base {
  width: min(100% - 2rem, var(--max));
  margin: 2.5rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  color: #8faba1;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 520px;
  margin-inline: auto;
  background: var(--fog);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  font-family: var(--font-ui);
  font-size: 0.88rem;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner p { margin: 0 0 1rem; color: var(--ink-soft); }

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
}

.cookie-accept {
  background: var(--deep);
  color: #fff;
}

.cookie-reject {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.cookie-accept:hover { background: var(--stream); }
.cookie-reject:hover { border-color: var(--ink-soft); }

/* Motion */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bleed-media img,
  .hero-bleed-content,
  .cookie-banner {
    animation: none !important;
    transition: none !important;
  }
}
