/* Kunis Piano Moving — Direction C (Obsidian & Brass)
   Shared design system: tokens, primitives, nav, footer, form.
   Recreated from the Claude Design handoff. */

:root {
  --c-bg: #0E0C0A;
  --c-surface: #16130F;
  --c-surface-2: #1B1714;
  --c-deep: #070605;
  --c-ink: #F4EFE3;
  --c-ink-2: rgba(244, 239, 227, 0.78);
  --c-ink-3: rgba(244, 239, 227, 0.55);
  --c-rule: rgba(244, 239, 227, 0.10);
  --c-rule-strong: rgba(244, 239, 227, 0.30);
  --c-accent: #C8A24C;
  --c-accent-hover: #D9B662;
  --c-accent-2: #8A6A2E;
  --c-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --c-sans: "Inter", "Söhne", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --c-max: 1320px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--c-sans);
  background: var(--c-bg);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }

/* Eyebrow row — gold rule + uppercase label, used on every section header. */
.k-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.k-eyebrow__rule {
  width: 32px;
  height: 1px;
  background: var(--c-accent);
}
.k-eyebrow__label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}

/* Italic-serif inflection inside a sans display heading. */
.k-italic {
  font-family: var(--c-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent);
}

/* Buttons */
.k-btn {
  display: inline-block;
  font-family: var(--c-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 20px 32px;
  cursor: pointer;
  border: none;
  transition: background .15s ease, color .15s ease, transform .15s ease, border-color .15s ease;
}
.k-btn--primary {
  background: var(--c-accent);
  color: #0E0C0A;
}
.k-btn--primary:hover { background: var(--c-accent-hover); }
.k-btn--ghost {
  color: var(--c-ink);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(244, 239, 227, 0.3);
  backdrop-filter: blur(6px);
}
.k-btn--ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.k-btn--sm { padding: 12px 18px; font-size: 12px; letter-spacing: 0.08em; }

/* Header / sticky nav */
.k-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 12, 10, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-rule);
  transition: background .25s ease;
}
.k-header.is-scrolled { background: rgba(14, 12, 10, 0.92); }
.k-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  gap: 32px;
  transition: padding .25s ease;
}
.k-header.is-scrolled .k-header__inner { padding: 12px 56px; }
.k-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-ink);
}
.k-header__brand img { height: 36px; width: auto; transition: height .25s ease; }
.k-header.is-scrolled .k-header__brand img { height: 28px; }
.k-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.k-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  text-decoration: none;
  padding-bottom: 4px;
  transition: color .15s ease;
}
.k-nav a:hover { color: var(--c-ink); }
.k-nav a.is-active { color: var(--c-accent); }
.k-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.k-nav a:hover::after { transform: scaleX(1); }
.k-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.k-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.k-header__phone {
  font-size: 13px;
  color: var(--c-ink-2);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.k-header__cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--c-accent);
  color: #0E0C0A;
  padding: 12px 18px;
  text-decoration: none;
  transition: padding .25s ease, background .15s ease;
}
.k-header__cta:hover { background: var(--c-accent-hover); }
.k-header.is-scrolled .k-header__cta { padding: 10px 16px; }

/* Mobile hamburger — hidden on desktop */
.k-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-rule);
  color: var(--c-ink);
  padding: 10px 12px;
  cursor: pointer;
  line-height: 0;
}
.k-nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .k-header__inner { padding: 16px 24px; gap: 12px; }
  .k-header.is-scrolled .k-header__inner { padding: 12px 24px; }
  .k-header__phone { display: none; }
  .k-header__cta { display: none; }
  .k-nav-toggle { display: inline-flex; align-items: center; }
  .k-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(14, 12, 10, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-rule);
    padding: 8px 24px 20px;
    display: none;
  }
  .k-nav.is-open { display: flex; }
  .k-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--c-rule);
  }
  .k-nav a:last-child { border-bottom: none; }
  .k-nav a::after { display: none; }
}

/* Footer */
.k-footer {
  background: var(--c-deep);
  color: var(--c-ink-2);
  padding: 80px 56px 36px;
  border-top: 1px solid var(--c-rule);
}
.k-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--c-rule);
}
.k-footer__brand img { height: 52px; width: auto; margin-bottom: 16px; }
.k-footer__tagline { font-size: 13px; line-height: 1.6; color: var(--c-ink-3); max-width: 320px; }
.k-footer__col-h {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.k-footer__col-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
}
.k-footer__col-items a { color: var(--c-ink-2); text-decoration: none; }
.k-footer__col-items a:hover { color: var(--c-accent); }
.k-footer__col-items span { color: var(--c-ink-3); }
.k-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: var(--c-ink-3);
}

@media (max-width: 960px) {
  .k-footer { padding: 64px 24px 28px; }
  .k-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
  .k-footer__brand { grid-column: 1 / -1; }
  .k-footer__legal { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Section + container helpers */
.k-section { padding: 120px 56px; }
.k-section--bg { background: var(--c-bg); }
.k-section--surface { background: var(--c-surface); }
.k-section--bordered { border-top: 1px solid var(--c-rule); }
.k-container { max-width: var(--c-max); margin: 0 auto; }

/* Hero (used by home + several inner pages — image-led) */
.k-hero {
  position: relative;
  overflow: hidden;
  background: var(--c-bg);
}
.k-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(0.85) contrast(1.1);
}
.k-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,12,10,0.5) 0%, rgba(14,12,10,0.3) 40%, rgba(14,12,10,0.95) 100%);
}
.k-hero__scrim--strong {
  background: linear-gradient(180deg, rgba(14,12,10,0.7) 0%, rgba(14,12,10,0.55) 50%, rgba(14,12,10,0.95) 100%);
}
.k-hero__watermark {
  position: absolute;
  right: -80px;
  top: 60px;
  height: 360px;
  width: auto;
  opacity: 0.07;
  pointer-events: none;
}
.k-hero__inner {
  position: relative;
  padding: 120px 56px 88px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.k-display {
  font-family: var(--c-sans);
  font-weight: 600;
  font-size: 124px;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--c-ink);
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}
.k-display--md { font-size: 104px; letter-spacing: -0.035em; }
.k-display--sm { font-size: 96px; }
.k-display--lg { font-size: 132px; letter-spacing: -0.04em; }
.k-h2 {
  font-family: var(--c-sans);
  font-size: 72px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.k-h2--sm { font-size: 56px; letter-spacing: -0.025em; line-height: 1.05; }
.k-h2--md { font-size: 60px; }
.k-h2--lg { font-size: 64px; line-height: 1.05; }
.k-h2--xl { font-size: 96px; letter-spacing: -0.035em; }
.k-lede {
  font-family: var(--c-sans);
  font-size: 19px;
  line-height: 1.55;
  color: var(--c-ink-2);
  margin: 40px 0 0;
  max-width: 720px;
}

/* Card grid items used in differentiators + detail grids */
.k-card {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  padding: 40px 36px 36px;
  position: relative;
}
.k-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--c-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--c-accent-2);
}
.k-card__icon {
  color: var(--c-accent);
  margin-bottom: 28px;
}
.k-card__title {
  font-family: var(--c-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 14px;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.k-card__body {
  font-family: var(--c-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-ink-2);
  margin: 0;
}

/* Photo */
.k-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1612;
}
.k-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7) saturate(0.85) contrast(1.1);
}
.k-photo__caption {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--c-sans);
  font-weight: 500;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.k-photo__caption-note {
  opacity: 0.6;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* Contact form — floating label */
.k-form-note {
  background: rgba(200, 162, 76, 0.06);
  border: 1px solid rgba(200, 162, 76, 0.20);
  padding: 14px 18px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--c-ink-2);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.k-form-note svg { flex: none; }
.k-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.k-field {
  position: relative;
  grid-column: span 2;
}
.k-field--half { grid-column: span 1; }
.k-field label {
  position: absolute;
  left: 0;
  top: 24px;
  font-family: var(--c-sans);
  font-size: 16px;
  color: var(--c-ink-3);
  pointer-events: none;
  transition: top .2s ease, font-size .2s ease, letter-spacing .2s ease, color .2s ease, text-transform .2s ease, font-weight .2s ease;
}
.k-field input,
.k-field select,
.k-field textarea {
  width: 100%;
  padding: 20px 0 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-rule);
  color: var(--c-ink);
  font-family: var(--c-sans);
  font-size: 16px;
  outline: none;
  resize: none;
  transition: border-color .2s ease;
}
.k-field select {
  appearance: none;
  cursor: pointer;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-accent) 50%),
    linear-gradient(135deg, var(--c-accent) 50%, transparent 50%);
  background-position: calc(100% - 12px) 50%, calc(100% - 7px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.k-field select option { background: var(--c-surface); color: var(--c-ink); }
.k-field textarea { min-height: 96px; }
.k-field input:focus,
.k-field select:focus,
.k-field textarea:focus { border-bottom-color: var(--c-accent); }

/* Hide placeholder text while the field is unfocused — the floating label
   occupies that space when empty. Show the placeholder once the user focuses
   the field and the label has floated up. */
.k-field input::placeholder,
.k-field textarea::placeholder {
  color: transparent;
  transition: color .15s ease;
}
.k-field:focus-within input::placeholder,
.k-field:focus-within textarea::placeholder {
  color: var(--c-ink-3);
}

/* `<input type="date">` shows a browser-native format hint that ignores the
   ::placeholder rule. Hide it the same way until the field is focused or
   filled, so it doesn't collide with the resting label. */
.k-field input[type="date"]::-webkit-datetime-edit { color: transparent; }
.k-field:focus-within input[type="date"]::-webkit-datetime-edit,
.k-field.is-filled input[type="date"]::-webkit-datetime-edit { color: var(--c-ink); }

/* Field group — heading above a related cluster (e.g. Pickup details). */
.k-field-group {
  grid-column: span 2;
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid var(--c-rule);
}
.k-field-group:first-of-type { padding-top: 0; margin-top: 0; border-top: none; }
.k-field-group__h {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 4px;
}

/* Labelled group of inputs (Yes/No radio, checkbox, etc.). Visually mimics
   a field's resting state — small uppercase label above, control below. */
.k-control {
  grid-column: span 2;
  padding-top: 20px;
}
.k-control--half { grid-column: span 1; }
.k-control__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-weight: 600;
  margin-bottom: 12px;
}
.k-control__label .k-field__required { color: var(--c-accent); margin-left: 4px; }
.k-control__hint {
  font-size: 12px;
  line-height: 1.55;
  color: var(--c-ink-3);
  margin: 8px 0 0;
}

/* Segmented Yes/No radio control */
.k-segmented {
  display: inline-flex;
  border: 1px solid var(--c-rule);
  background: rgba(0, 0, 0, 0.2);
}
.k-segmented input { position: absolute; opacity: 0; pointer-events: none; }
.k-segmented label {
  font-family: var(--c-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  padding: 12px 22px;
  cursor: pointer;
  border-right: 1px solid var(--c-rule);
  transition: background .15s ease, color .15s ease;
}
.k-segmented label:last-of-type { border-right: none; }
.k-segmented label:hover { color: var(--c-ink); }
.k-segmented input:checked + label {
  background: var(--c-accent);
  color: #0E0C0A;
}
.k-segmented input:focus-visible + label {
  outline: 2px solid var(--c-accent-hover);
  outline-offset: 2px;
}

/* Acknowledgment checkbox row */
.k-checkbox {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0 0;
}
.k-checkbox input { position: absolute; opacity: 0; pointer-events: none; }
.k-checkbox__box {
  width: 22px;
  height: 22px;
  border: 1px solid var(--c-rule-strong);
  background: rgba(0, 0, 0, 0.25);
  margin-top: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.k-checkbox input:checked + .k-checkbox__box {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.k-checkbox input:checked + .k-checkbox__box::after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  border-left: 2px solid #0E0C0A;
  border-bottom: 2px solid #0E0C0A;
  transform: rotate(-45deg) translate(1px, -2px);
}
.k-checkbox input:focus-visible + .k-checkbox__box {
  outline: 2px solid var(--c-accent-hover);
  outline-offset: 2px;
}
.k-checkbox__label {
  font-size: 13px;
  line-height: 1.55;
  color: var(--c-ink-2);
  cursor: pointer;
}
.k-checkbox__label strong { color: var(--c-ink); font-weight: 600; }
.k-field:focus-within label,
.k-field.is-filled label {
  top: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 600;
}
.k-field__required { color: var(--c-accent); margin-left: 4px; }

/* Layout helpers */
.k-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.k-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }

/* Mid-page CTA — used by Storage / Crating / About / Testimonials */
.k-midcta {
  position: relative;
  padding: 120px 56px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-rule);
  overflow: hidden;
}
.k-midcta__glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200, 162, 76, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.k-midcta__row {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  max-width: var(--c-max);
  margin: 0 auto;
}
.k-midcta__row p { font-size: 18px; line-height: 1.55; color: var(--c-ink-2); margin: 24px 0 0; max-width: 560px; }
.k-midcta__actions { display: flex; gap: 14px; justify-content: flex-end; align-items: center; flex-wrap: wrap; }
.k-midcta__call {
  font-size: 13px;
  color: var(--c-ink);
  text-decoration: none;
  padding: 18px 4px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--c-rule);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 1100px) {
  .k-midcta__row { grid-template-columns: 1fr; gap: 24px; }
  .k-midcta__actions { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .k-midcta { padding: 80px 24px; }
}

/* Inner-page hero with watermark — used by About, Crating, Testimonials, Contact */
.k-inner-hero {
  position: relative;
  background: var(--c-bg);
  overflow: hidden;
}
.k-inner-hero--padded { padding: 140px 56px 96px; }
.k-inner-hero__watermark {
  position: absolute;
  right: -120px;
  top: 60px;
  height: 420px;
  width: auto;
  opacity: 0.05;
  pointer-events: none;
}
.k-inner-hero__inner {
  position: relative;
  max-width: var(--c-max);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .k-inner-hero--padded { padding: 96px 24px 64px; }
  .k-inner-hero__watermark { height: 220px; right: -60px; top: 40px; }
}

/* Long-form prose — privacy policy, terms, other legal/copy pages. */
.k-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 56px 120px;
  background: var(--c-bg);
  font-family: var(--c-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-ink-2);
}
.k-prose__meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-3);
  font-weight: 600;
  margin: 0 0 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-rule);
}
.k-prose h2 {
  font-family: var(--c-sans);
  font-size: 28px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 56px 0 16px;
}
.k-prose h2 .k-italic { display: inline; }
.k-prose h2:first-of-type { margin-top: 0; }
.k-prose h3 {
  font-family: var(--c-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.005em;
  margin: 28px 0 8px;
}
.k-prose p { margin: 0 0 18px; }
.k-prose p:last-child { margin-bottom: 0; }
.k-prose a { color: var(--c-accent); text-decoration: none; border-bottom: 1px solid rgba(200, 162, 76, 0.4); }
.k-prose a:hover { border-bottom-color: var(--c-accent); }
.k-prose ul, .k-prose ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.k-prose ul { list-style: none; padding-left: 0; }
.k-prose ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}
.k-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 1px;
  background: var(--c-accent);
}
.k-prose ol li { margin-bottom: 10px; }
.k-prose strong, .k-prose b { color: var(--c-ink); font-weight: 600; }
.k-prose hr {
  border: none;
  border-top: 1px solid var(--c-rule);
  margin: 48px 0;
}
.k-prose blockquote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 1px solid var(--c-accent);
  font-family: var(--c-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--c-ink);
}
@media (max-width: 768px) {
  .k-prose { padding: 0 24px 80px; font-size: 16px; }
  .k-prose h2 { font-size: 22px; margin-top: 40px; }
  .k-prose h3 { font-size: 16px; }
}

/* Scroll reveal */
.k-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22, .61, .36, 1);
}
.k-reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .k-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive scaling for type at narrow widths */
@media (max-width: 1200px) {
  .k-display { font-size: 96px; }
  .k-display--md { font-size: 88px; }
  .k-display--sm { font-size: 80px; }
  .k-display--lg { font-size: 104px; }
  .k-h2 { font-size: 56px; }
  .k-h2--sm { font-size: 44px; }
  .k-h2--md { font-size: 48px; }
  .k-h2--lg { font-size: 52px; }
  .k-h2--xl { font-size: 72px; }
}
@media (max-width: 768px) {
  .k-section { padding: 80px 24px; }
  .k-hero__inner { padding: 96px 24px 64px; min-height: 560px; }
  .k-display { font-size: 56px; line-height: 0.96; }
  .k-display--md { font-size: 52px; }
  .k-display--sm { font-size: 48px; }
  .k-display--lg { font-size: 60px; }
  .k-h2 { font-size: 40px; }
  .k-h2--sm { font-size: 32px; }
  .k-h2--md { font-size: 36px; }
  .k-h2--lg { font-size: 36px; }
  .k-h2--xl { font-size: 48px; }
  .k-lede { font-size: 17px; }
  .k-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .k-form-grid { grid-template-columns: 1fr; }
  .k-field, .k-field--half { grid-column: span 1; }
  .k-hero__watermark { height: 220px; right: -60px; top: 40px; }
}
