/* Havn — Dark Editorial Theme */

:root {
  --bg: #0b0b0f;
  --surface: #111116;
  --surface-2: #18181f;
  --fg: #f5f0e8;
  --fg-dim: rgba(245, 240, 232, 0.55);
  --accent: #ff5722;
  --accent-dim: rgba(255, 87, 34, 0.15);
  --border: rgba(245, 240, 232, 0.08);
  --tag-bg: rgba(255, 87, 34, 0.12);
  --tag-fg: #ff5722;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--fg);
  text-decoration: none;
}

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

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-dim);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link-active {
  color: var(--fg);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 87, 34, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(100, 60, 200, 0.05) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--tag-bg);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 15px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 40px;
}

.artwork-stack {
  position: relative;
  width: 100%;
  height: 280px;
}

.artwork-card {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}

.card-1 {
  width: 180px;
  height: 180px;
  top: 0;
  left: 40px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid var(--border);
  transform: rotate(-4deg);
}

.card-1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.03) 8px,
    rgba(255,255,255,0.03) 9px
  );
}

.card-2 {
  width: 160px;
  height: 160px;
  top: 40px;
  left: 130px;
  background: linear-gradient(135deg, #2d1b33 0%, #1a0f24 100%);
  border: 1px solid var(--border);
  transform: rotate(3deg);
}

.card-3 {
  width: 150px;
  height: 150px;
  top: 90px;
  left: 200px;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  border: 1px solid rgba(255, 87, 34, 0.2);
  transform: rotate(-2deg);
}

.card-3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

/* Sound Wave */
.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding-left: 20px;
}

.wave-bar {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
  animation: wave 1.4s ease-in-out infinite;
}

.wave-bar:nth-child(1)  { height: 30%; animation-delay: 0.0s; }
.wave-bar:nth-child(2)  { height: 60%; animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { height: 90%; animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { height: 50%; animation-delay: 0.3s; }
.wave-bar:nth-child(5)  { height: 80%; animation-delay: 0.4s; }
.wave-bar:nth-child(6)  { height: 40%; animation-delay: 0.5s; }
.wave-bar:nth-child(7)  { height: 100%; animation-delay: 0.6s; }
.wave-bar:nth-child(8)  { height: 55%; animation-delay: 0.7s; }
.wave-bar:nth-child(9)  { height: 70%; animation-delay: 0.8s; }
.wave-bar:nth-child(10) { height: 35%; animation-delay: 0.9s; }
.wave-bar:nth-child(11) { height: 85%; animation-delay: 1.0s; }
.wave-bar:nth-child(12) { height: 45%; animation-delay: 1.1s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 100px 48px;
  background: var(--surface);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto-label {
  margin-bottom: 40px;
}

.label-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
}

.manifesto-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 40px;
}

.manifesto-heading .accent {
  color: var(--accent);
}

.manifesto-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 300;
}

.manifesto-body strong {
  color: var(--fg);
  font-weight: 500;
}

.manifesto-break {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
}

.break-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.break-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
}

/* ── OFFERINGS ── */
.offerings {
  padding: 100px 48px;
  background: var(--bg);
}

.offerings-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--tag-bg);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.offerings-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.03em;
  color: var(--fg);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.offering-card {
  background: var(--surface);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.offering-card:hover {
  background: var(--surface-2);
}

.offering-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.offering-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.offering-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PROCESS ── */
.process {
  padding: 100px 48px;
  background: var(--surface);
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
}

.process-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 0.03em;
  color: var(--fg);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}

.step-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ── CLOSING ── */
.closing {
  padding: 120px 48px;
  background: var(--bg);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-body {
  font-size: 16px;
  color: var(--fg-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
}

.closing-cta {
  padding-top: 40px;
}

.cta-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: var(--fg);
  margin-bottom: 8px;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 300;
}

.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    display: none;
  }
  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-number {
    font-size: 36px;
  }
  .nav {
    padding: 16px 24px;
  }
  .hero,
  .manifesto,
  .offerings,
  .process,
  .closing,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}