/* ─────────────────────────────────────────
   SHARED STYLES — badhuiskade217.com
   Used by: book-a-viewing.html, modern-apartment-comfort.html,
            living-in-overhoeks.html, faq.html
───────────────────────────────────────── */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0a0a0a;
  --white:   #f7f5f0;
  --sand:    #e8e2d8;
  --gold:    #b8935a;
  --gold-lt: #d4aa72;
  --text:    #2a2420;
  --muted:   #7a7068;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
  --max:     1200px;
  --pad-x:   clamp(1.5rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─── */
.section {
  padding: clamp(5rem, 10vw, 9rem) var(--pad-x);
}
.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--sand {
  background: var(--sand);
}
.container {
  max-width: var(--max);
  margin: 0 auto;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.heading-xl {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.heading-md {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.2;
}
.body-sm {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--muted);
}
.body-md {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--muted);
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--pad-x);
  transition: background 0.4s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: filter 0.2s ease;
  white-space: nowrap;
}
.nav__cta:hover { filter: brightness(1.1); }

/* ─── PAGE HERO (non-fullscreen) ─── */
.page-hero {
  background: var(--black);
  padding: clamp(8rem, 15vw, 12rem) var(--pad-x) clamp(4rem, 8vw, 7rem);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,147,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.page-hero__sub {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(247,245,240,0.5);
  max-width: 52ch;
  line-height: 1.8;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--sand);
  border-bottom: 1px solid rgba(42,36,32,0.1);
}
.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem var(--pad-x);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.trust-item__num {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.trust-item__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── INLINE CTA BUTTON ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: filter 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover { filter: brightness(1.1); }
.btn--outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}
.btn--outline-white {
  background: transparent;
  border: 1px solid rgba(247,245,240,0.3);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 1.75; flex-shrink: 0;
}

/* ─── INTERNAL LINK STRIP ─── */
.page-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.page-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184,147,90,0.4);
  transition: text-decoration-color 0.2s;
}
.page-link:hover { text-decoration-color: var(--gold); }

/* ─── CONTENT PROSE ─── */
.prose h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.prose h3 {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.prose p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 68ch;
}
.prose p:last-child { margin-bottom: 0; }

/* ─── TWO-COLUMN GRID ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.two-col--center { align-items: center; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  font-size: 0.875rem;
}
.compare-table th {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(42,36,32,0.15);
}
.compare-table td {
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(42,36,32,0.08);
  color: var(--muted);
  line-height: 1.6;
}
.compare-table td:first-child {
  font-weight: 500;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  width: 28%;
}
.compare-table td.good { color: var(--text); }
.compare-table td.bad  { color: #9a6b5a; }
@media (max-width: 600px) {
  .compare-table { display: none; }
}

/* ─── FEATURE LIST ─── */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}
.feature-list li {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(42,36,32,0.08);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.7rem;
  flex-shrink: 0;
}
.feature-list li strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

/* Dark variant */
.section--dark .feature-list li {
  color: rgba(247,245,240,0.55);
  border-bottom-color: rgba(247,245,240,0.06);
}
.section--dark .feature-list li strong {
  color: var(--white);
}

/* ─── VENUE LIST (neighbourhood) ─── */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(42,36,32,0.1);
  margin-top: 2.5rem;
}
.venue-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
}
.section--sand .venue-card { background: var(--sand); }
.venue-card__cat {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.venue-card__name {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.venue-card__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(42,36,32,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(42,36,32,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}
.faq-question svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.25,0,0,1);
}
.faq-answer-inner {
  padding: 0 0 1.75rem;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 64ch;
}
.faq-answer-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CONTACT FORM ─── */
.form-wrap {
  background: var(--sand);
  padding: clamp(2.5rem, 5vw, 4rem);
  max-width: 620px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--white);
  border: 1px solid rgba(42,36,32,0.15);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.form-submit:hover { filter: brightness(1.1); }
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ─── CONTACT PANEL ─── */
.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}
.contact-method {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-method__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-method__value {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.1;
}
.contact-method__value a { transition: color 0.2s; }
.contact-method__value a:hover { color: var(--gold); }
.contact-method__note {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ─── SECTION CTA BLOCK ─── */
.cta-block {
  background: var(--black);
  text-align: center;
}
.cta-block__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) var(--pad-x);
}
.cta-block__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-block__sub {
  font-size: 0.875rem;
  color: rgba(247,245,240,0.45);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.cta-block__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  padding: 2.5rem var(--pad-x);
  border-top: 1px solid rgba(247,245,240,0.06);
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
}
.footer__logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(247,245,240,0.4);
}
.footer__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.footer__link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.25);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.7rem;
  color: rgba(247,245,240,0.2);
  letter-spacing: 0.05em;
  text-align: right;
}
@media (max-width: 640px) {
  .footer__copy { text-align: center; }
}

/* ─── FLOATING CTA BAR ─── */
.cta-bar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(6rem);
  z-index: 200;
  display: flex;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  pointer-events: none;
}
.cta-bar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cta-bar__btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: filter 0.2s ease;
  cursor: pointer;
}
.cta-bar__btn:hover { filter: brightness(1.12); }
.cta-bar__btn--call {
  background: var(--gold);
  color: var(--black);
}
.cta-bar__btn--funda {
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: none;
}
.cta-bar__btn svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none;
  stroke-width: 1.75; flex-shrink: 0;
}
@media (max-width: 480px) {
  .cta-bar { width: calc(100% - 2rem); }
  .cta-bar__btn { flex: 1; justify-content: center; padding: 1rem; }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.25,0,0,1),
              transform 0.8s cubic-bezier(0.25,0,0,1);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.reveal--delay-1 { transition-delay: 0.10s; }
.reveal--delay-2 { transition-delay: 0.22s; }
.reveal--delay-3 { transition-delay: 0.34s; }
.reveal--delay-4 { transition-delay: 0.46s; }

/* ─── LOCATION TIME ITEMS ─── */
.time-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(42,36,32,0.08);
}
.time-item:last-child { border-bottom: none; }
.time-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 3rem;
}
.time-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}
.time-desc strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
}

/* ─── HIGHLIGHT STAT STRIP ─── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(42,36,32,0.12);
}
.stat-strip--dark {
  background: rgba(247,245,240,0.06);
}
.stat-cell {
  background: var(--sand);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.stat-cell--dark {
  background: rgba(255,255,255,0.03);
}
.stat-cell__num {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-cell__label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
