/* ============================================================
   Renova Hospitality — landing page
   Black-led, cinematic. #000 / #FFF / #FF6600
   ============================================================ */

:root {
  color-scheme: dark;
  --accent: #FF6600;
  --accent-bright: #FF8533;
  --accent-deep: #C24E00;
  --black: #060606;
  --black-soft: #0D0D0D;
  --white: #FFFFFF;
  --grey: #9A9A9A;
  --grey-dim: #5C5C5C;
  --hairline: rgba(255, 255, 255, 0.12);
  --display-stretch: 125%;
  --font: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--black); }

img { display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

/* ---------- type ---------- */

.display {
  font-weight: 800;
  font-stretch: var(--display-stretch);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.lede {
  color: var(--grey);
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-accent { background: var(--accent); color: var(--black); }
.btn-accent:hover { background: var(--accent-bright); }

.btn-ghost { border-color: var(--hairline); color: var(--white); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-black { background: var(--black); color: var(--white); }
.btn-black:hover { background: #1c1c1c; }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 6, 6, 0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a { color: var(--grey); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { padding: 12px 22px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 140px 72px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(18, 1fr);
  grid-auto-rows: 1fr;
  opacity: 0.5;
  pointer-events: none;
}
.hero-grid .cell {
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hero-grid .cell.lit {
  background: var(--accent);
  opacity: 0;
  animation: cell-in 1.2s var(--ease-out) forwards;
}
@keyframes cell-in {
  from { opacity: 0; }
  to { opacity: var(--cell-o, 0.5); }
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -30vh;
  width: 120vw;
  height: 60vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255, 102, 0, 0.16), transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  display: grid;
  gap: 36px;
}

.hero h1 {
  font-size: clamp(44px, 7.6vw, 124px);
  max-width: 12ch;
}
.hero h1 .accent { color: var(--accent); }

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dim);
}
.scroll-cue .line {
  width: 1px;
  height: 44px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: cue 2.2s var(--ease-out) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ---------- marquee ---------- */

.marquee {
  border-block: 1px solid var(--hairline);
  padding-block: 20px;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 56px;
  padding-right: 56px;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-size: 15px;
  font-weight: 700;
  font-stretch: var(--display-stretch);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-dim);
}
.marquee span b { color: var(--accent); font-weight: 700; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- manifesto ---------- */

.manifesto {
  padding-block: clamp(120px, 16vw, 220px);
}
.manifesto p.statement {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  font-stretch: 110%;
  line-height: 1.18;
  max-width: 24ch;
  text-wrap: balance;
}
.manifesto .statement .accent { color: var(--accent); }
.manifesto .statement .dim { color: var(--grey-dim); }
.manifesto-meta {
  margin-top: 56px;
  display: flex;
  gap: 18px;
  align-items: baseline;
  color: var(--grey);
  max-width: 52ch;
}
.manifesto-meta::before {
  content: "";
  flex: 0 0 28px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-4px);
}

/* ---------- diensten ---------- */

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 72px);
  margin-top: 18px;
}
.section-head .lede { max-width: 38ch; }

.diensten { padding-block: clamp(96px, 12vw, 160px) 0; }

.dienst {
  border-top: 1px solid var(--hairline);
  padding-block: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 120px 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  transition: background 0.35s var(--ease-out);
}
.dienst:last-of-type { border-bottom: 1px solid var(--hairline); }
.dienst:hover { background: rgba(255, 255, 255, 0.025); }

.dienst .num {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  font-stretch: var(--display-stretch);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--grey-dim);
  transition: color 0.35s var(--ease-out), -webkit-text-stroke-color 0.35s;
}
.dienst:hover .num { color: var(--accent); -webkit-text-stroke-color: var(--accent); }

.dienst h3 {
  font-size: clamp(26px, 2.6vw, 40px);
  font-weight: 800;
  font-stretch: var(--display-stretch);
  text-transform: uppercase;
  line-height: 1.05;
}
.dienst h3 small {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.dienst .body { color: var(--grey); max-width: 52ch; text-wrap: pretty; }
.dienst .body strong { color: var(--white); font-weight: 600; }

.dienst-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dienst-tags span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  border: 1px solid var(--hairline);
  padding: 7px 14px;
}

/* ---------- werkwijze ---------- */

.werkwijze { padding-block: clamp(120px, 14vw, 200px); }

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--hairline);
}
.timeline .progress {
  position: absolute;
  left: 7px;
  top: 8px;
  width: 1px;
  height: 0;
  background: var(--accent);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(180px, 0.6fr) 1fr;
  gap: clamp(16px, 3vw, 48px);
  padding-block: clamp(32px, 4vw, 48px);
}
.step + .step { border-top: 1px solid rgba(255, 255, 255, 0.06); }

.step .dot {
  width: 15px;
  height: 15px;
  border: 1px solid var(--grey-dim);
  background: var(--black);
  border-radius: 50%;
  margin-top: 6px;
  transition: border-color 0.4s, background 0.4s;
}
.step.active .dot { border-color: var(--accent); background: var(--accent); }

.step h3 {
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 800;
  font-stretch: var(--display-stretch);
  text-transform: uppercase;
  line-height: 1.1;
}
.step h3 .step-num {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-stretch: 100%;
  letter-spacing: 0.24em;
  color: var(--accent);
  margin-bottom: 10px;
}
.step p { color: var(--grey); max-width: 50ch; text-wrap: pretty; }

/* ---------- contact ---------- */

.contact {
  background: var(--accent);
  color: var(--black);
  padding-block: clamp(96px, 12vw, 180px);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: -20vh;
  width: 50vw;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.18), transparent 65%);
  pointer-events: none;
}
.contact .wrap { position: relative; z-index: 1; }
.contact .eyebrow { color: var(--black); }
.contact .eyebrow::before { background: var(--black); }
.contact h2 {
  font-size: clamp(40px, 6vw, 96px);
  margin-block: 20px 28px;
  max-width: 14ch;
}
.contact .lede { color: rgba(0, 0, 0, 0.72); }

.contact-row {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
}
.contact-direct a { border-bottom: 2px solid rgba(0, 0, 0, 0.35); padding-bottom: 2px; transition: border-color 0.2s; }
.contact-direct a:hover { border-color: var(--black); }

/* ---------- footer ---------- */

.footer {
  padding-block: 72px 40px;
  border-top: 1px solid var(--hairline);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.footer-logo img { height: 64px; width: auto; }
.footer-col h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: var(--grey); font-size: 15px; }
.footer-col address { font-style: normal; color: var(--grey); font-size: 15px; line-height: 1.8; }
.footer-col a:hover { color: var(--white); }
.footer-base {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--grey-dim);
}

/* ---------- reveal motion ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

body.no-motion .reveal { opacity: 1; transform: none; transition: none; }
body.no-motion .marquee-track { animation: none; }
body.no-motion .scroll-cue .line::after { animation: none; }
body.no-motion .hero-grid .cell.lit { animation: none; opacity: var(--cell-o, 0.5); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scroll-cue .line::after { animation: none; }
  .hero-grid .cell.lit { animation: none; opacity: var(--cell-o, 0.5); }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .dienst { grid-template-columns: 1fr; gap: 18px; }
  .dienst .num { font-size: 36px; }
  .step { grid-template-columns: 40px 1fr; }
  .step p { grid-column: 2; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .hero { padding-bottom: 56px; }
  .hero-content { gap: 28px; }
  .nav-logo img { height: 36px; }
  .btn { padding: 14px 22px; }
  .footer-logo img { height: 48px; }
}

/* ---------- accessibility ---------- */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--accent);
  color: var(--black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 22px;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: 16px; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.contact :focus-visible { outline-color: var(--black); }

/* ---------- contact dialog ---------- */

.contact-dialog {
  margin: auto;
  border: 1px solid var(--hairline);
  background: var(--black-soft);
  color: var(--white);
  padding: 0;
  width: min(540px, calc(100% - 32px));
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.5;
}
.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: no-preference) {
  .contact-dialog[open] { animation: dialog-in 0.4s var(--ease-out); }
}
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.dialog-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 32px 32px 26px;
}
.dialog-avatar {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 24px;
}
.dialog-title {
  font-size: 24px;
  font-weight: 800;
  font-stretch: var(--display-stretch);
  text-transform: uppercase;
  line-height: 1.08;
  text-wrap: balance;
}
.dialog-sub {
  margin-top: 10px;
  color: var(--grey);
  font-size: 15px;
  text-wrap: pretty;
}
.dialog-head form { margin-left: auto; }
.dialog-close {
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--hairline);
  color: var(--grey);
  font-size: 22px;
  font-family: var(--font);
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.dialog-close:hover { border-color: var(--accent); color: var(--white); }

.dialog-channels { display: grid; }
.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 32px;
  border-top: 1px solid var(--hairline);
  transition: background 0.2s;
}
.channel:hover { background: rgba(255, 102, 0, 0.08); }
.channel .arrow {
  margin-left: auto;
  color: var(--grey-dim);
  transition: transform 0.25s var(--ease-out), color 0.2s;
}
.channel:hover .arrow { transform: translateX(5px); color: var(--accent); }
.channel-label {
  flex: 0 0 92px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.channel-value { font-weight: 600; overflow-wrap: anywhere; }

@media (max-width: 600px) {
  .dialog-head { padding: 24px 22px 20px; }
  .channel { padding: 18px 22px; }
  .channel-label { flex-basis: 78px; }
  .dialog-avatar { flex-basis: 44px; height: 44px; font-size: 20px; }
}

/* ---------- contact address line ---------- */

.contact-adres {
  flex-basis: 100%;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.72);
}
