/* ===========================
   RJD Hotels — Brand tokens
   =========================== */
:root {
  --navy: #073763;
  --navy-light: #0f5187;
  --ink: #1b1b1b;
  --charcoal: #262626;
  --cream: #faf8f5;
  --off-white: #f4f2ee;
  --white: #ffffff;
  --line: #e3ded6;
  --accent: #073763;
  --gold: #b0812f;
  --gold-light: #d8b26e;

  --font-head: 'Bitter', Georgia, 'Times New Roman', serif;
  --font-body: 'Montserrat', -apple-system, Segoe UI, Arial, sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow: 0 12px 32px rgba(7, 55, 99, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--navy); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 76px 0; }

.section-tight { padding: 48px 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.hero .eyebrow { color: #e8cb92; font-size: 0.82rem; text-shadow: 0 1px 8px rgba(0,0,0,0.45); }

.lede {
  font-size: 1.15rem;
  color: #4a4a4a;
  max-width: 640px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.bg-cream { background: var(--cream); }
.bg-off { background: var(--off-white); }
.bg-charcoal { background: var(--charcoal); color: #f2f0ec; }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: var(--white); }

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--navy);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ===========================
   Header / Nav
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  margin-right: 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
}
.brand img { height: 40px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

.nav-cta { margin-left: 10px; }

.lang-switch-item {
  margin-left: 10px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  font-size: 0.85rem;
}
.lang-switch-item .active { font-weight: 700; color: var(--navy); border-bottom: none; }
.lang-switch-item .sep { margin: 0 4px; color: var(--line); }
.lang-switch-item a { color: #8a8a8a; padding: 6px 0; border-bottom: none; }
.lang-switch-item a:hover { color: var(--navy); border-bottom: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: 0.2s;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,55,99,0.15) 0%, rgba(7,20,32,0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  max-width: 760px;
}
.hero h1 { color: var(--white); }
.hero .lede { color: #eae7e0; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.hero-subline {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8cb92;
  margin: 10px 0 0;
}

.stats-strip .stat {
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.stats-strip .stat.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.stats-strip .num { font-variant-numeric: tabular-nums; }

.page-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.page-banner h1 { color: var(--white); margin: 0; text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-banner p { color: #cfcabf; margin: 10px 0 0; }

/* ===========================
   Grids / Cards
   =========================== */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-values { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
}

.value-card {
  text-align: center;
  padding: 30px 16px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
}
.value-card .num {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}
.value-card h3 { margin: 0 0 8px; font-size: 1.15rem; }
.value-card p { margin: 0; font-size: 0.86rem; color: #5a5a5a; line-height: 1.55; }

.job-card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: 30px 34px; margin-bottom: 20px; }
.job-card:last-child { margin-bottom: 0; }
.job-card h3 { margin-bottom: 6px; }
.job-card .tagline { font-weight: 600; color: var(--navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.job-card p:not(.tagline) { color: #4a4a4a; }
.job-card-empty { border: 1.5px dashed var(--line); background: var(--cream); text-align: center; padding: 44px 34px; }
.job-card-empty h3 { color: var(--ink); }

.stats-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 40px 0; background: var(--white); }
.stat .num sup { font-size: 55%; }
.stats-strip .grid { text-align: center; }
.stat .num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--navy); line-height: 1; margin-bottom: 8px; }
.stat .label { font-size: 0.82rem; color: #6b6b6b; text-transform: uppercase; letter-spacing: 0.06em; }

/* Nachtreceptie / night-reception stats only: values here can run longer than the other stats-strip instances and wrap at desktop widths inside the fixed 4-column grid. Slightly lower max size keeps them on one line without touching the shared .stat typography used elsewhere. */
.stats-strip--nr .stat .num { font-size: clamp(2rem, 4vw, 2.3rem); }

.process-step { text-align: center; position: relative; }
.process-step .step-num { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--white); font-family: var(--font-head); font-weight: 700; margin-bottom: 16px; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: #4a4a4a; font-size: 0.92rem; margin: 0; }

.model-card h3 { margin-bottom: 10px; }
.model-card .tagline { font-weight: 700; color: var(--ink); margin-bottom: 12px; }
.model-card p:last-child { margin-bottom: 0; color: #4a4a4a; }

.property-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.property-card .photo { aspect-ratio: 16/9; overflow: hidden; }
.property-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.property-card .body { padding: 24px 26px 28px; }
.property-card h3 { margin-bottom: 16px; }

/* Team */
.team-card { text-align: center; }
.avatar {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar .initials {
  font-family: var(--font-head);
  font-size: 3rem;
  color: rgba(255,255,255,0.85);
}
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 10px; }
.team-card .email { display: block; font-size: 0.92rem; margin-bottom: 14px; }

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}
.social-icon:hover { background: var(--navy-light); color: var(--white); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* Quote / mission */
.mission {
  border-left: 3px solid var(--gold);
  padding-left: 26px;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--navy);
  font-style: italic;
  max-width: 720px;
}

/* CTA banner */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p { color: #dbe6ef; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ===========================
   Contact form
   =========================== */
.contact-form { display: grid; gap: 16px; }
.contact-form label { font-weight: 600; font-size: 0.88rem; color: var(--ink); display: block; margin-bottom: 6px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--navy-light); outline-offset: 1px; border-color: var(--navy-light); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.85rem; color: #6b6b6b; }

/* ===========================
   Nachtreceptie landing
   =========================== */
.badge-gold { display: inline-block; background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.price-figure { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 3.2rem); color: var(--navy); font-weight: 700; line-height: 1; }
.price-figure .per { font-family: var(--font-body); font-size: 1rem; font-weight: 500; color: #6b6b6b; }
.included { list-style: none; padding: 0; margin: 0; }
.included li { padding-left: 28px; position: relative; margin-bottom: 10px; color: #4a4a4a; }
.included li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.excluded { list-style: none; padding: 0; margin: 0; }
.excluded li { padding-left: 28px; position: relative; margin-bottom: 10px; color: #7a7a7a; }
.excluded li::before { content: "\2715"; position: absolute; left: 0; color: #b03636; font-weight: 700; }
.compare-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px; }
.compare-card.is-us { border-top: 3px solid var(--gold); }
.compare-card.is-them { background: var(--off-white); }
.compare-card h3 { margin-bottom: 18px; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 18px 48px 18px 22px; list-style: none; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 1.3rem; font-weight: 400; }
.faq details[open] summary::after { content: "\2212"; }
.faq summary:focus-visible { outline: 2px solid var(--navy-light); outline-offset: 2px; }
.faq .faq-body { padding: 0 22px 18px; color: #4a4a4a; }
.savings-compare {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.savings-compare::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}
.savings-compare__panels {
  display: flex;
  margin: 24px 24px 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.savings-panel { flex: 1 1 50%; padding: 36px 34px; }
.savings-panel--current { background: var(--cream); border-right: 1px solid var(--line); }
.savings-panel--solution { background: var(--white); border-top: 3px solid var(--gold); }
.savings-panel .eyebrow { margin-bottom: 10px; }
.savings-panel__title { margin-bottom: 16px; white-space: nowrap; }
.savings-panel__amount { font-family: var(--font-head); font-size: clamp(2rem, 2.6vw, 2.9rem); font-weight: 700; color: var(--navy); line-height: 1.15; margin-bottom: 6px; white-space: nowrap; }
.savings-panel__sub { font-size: 0.9rem; color: #6b6b6b; margin-bottom: 16px; }
.savings-panel__note { font-size: 0.85rem; color: #6b6b6b; margin: 0; }
.savings-result {
  display: flex;
  margin: 20px 24px 24px;
  background: var(--navy);
  border-radius: 14px;
  overflow: hidden;
}
.savings-result__half { flex: 1 1 50%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; text-align: center; padding: 24px 20px; position: relative; }
.savings-result__half:first-child::after {
  content: "";
  position: absolute;
  top: 18%; bottom: 18%; right: 0;
  width: 1px;
  background: rgba(255,255,255,0.16);
}
.savings-result__amount { display: block; font-family: var(--font-head); font-size: clamp(1.4rem, 2.2vw, 1.9rem); font-weight: 700; color: var(--white); margin-bottom: 6px; white-space: nowrap; }
.savings-result__half--month .savings-result__amount { color: var(--gold-light); }
.savings-result__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: #9db0c4; }

@media (max-width: 720px) {
  .savings-compare__panels { flex-direction: column; }
  .savings-panel--current { border-right: none; border-bottom: 1px solid var(--line); }
  .savings-panel { padding: 30px 28px; }
  .savings-panel__title, .savings-panel__amount, .savings-result__amount { white-space: normal; }
  .savings-result { flex-direction: column; }
  .savings-result__half:first-child::after { display: none; }
  .savings-result__half:first-child { border-bottom: 1px solid rgba(255,255,255,0.16); }
}

.step-list { list-style: none; counter-reset: step; margin: 0 auto; padding: 0; max-width: 620px; }
.step-list li { position: relative; padding: 0 0 30px 66px; counter-increment: step; }
.step-list li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--white); font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-list li::after { content: ""; position: absolute; left: 20px; top: 46px; bottom: 4px; width: 2px; background: var(--line); }
.step-list li:last-child { padding-bottom: 0; }
.step-list li:last-child::after { display: none; }
.step-list h3 { margin: 6px 0 4px; font-size: 1.12rem; }
.step-list p { margin: 0; color: #4a4a4a; }

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--charcoal);
  color: #d8d4cb;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 48px;
}
.footer-logo { background: var(--white); border-radius: var(--radius); padding: 20px; }
.footer-contact { text-align: center; }
.footer-contact p { margin: 0 0 10px; }
.footer-contact .social-icon { margin-top: 6px; }
.footer-map iframe { width: 100%; height: 210px; border: 0; border-radius: var(--radius); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #9d998f;
}

/* ===========================
   Responsive
   =========================== */
.btn { white-space: nowrap; }

@media (max-width: 1280px) {
  .nav-cta { display: none; }
}

@media (max-width: 1020px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); flex-direction: column; padding: 10px 24px 20px; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: 0.18s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 10px 0; }
  .nav-toggle { display: block; }
  .lang-switch-item { border-left: none; padding-left: 0; margin-left: 0; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-values { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { max-width: 260px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
}
