/* =====================================================================
   AMSTERDAM VIP CONCIERGE – STYLE
   Colours and fonts are defined at the top under :root.
   ===================================================================== */
:root {
  --black: #131313;         /* brand black (logo background) */
  --black-soft: #1b1b1d;    /* alternating section background */
  --black-card: #202023;    /* cards */
  --gold: #C6A159;          /* brand gold (logo) */
  --gold-light: #F4E0C0;    /* light gold / champagne */
  --gold-dark: #856E43;
  --white: #ffffff;
  --text: #e9e5dc;          /* body text on dark */
  --text-soft: #a9a49a;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius: 14px;
  --shadow: 0 18px 45px -18px rgba(0, 0, 0, 0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1.15;
}

h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 0.6em; }
h3 { font-size: 1.45rem; margin-bottom: 0.4em; }

p + p { margin-top: 0.9em; }

a { color: var(--gold); }

ul { list-style: none; }

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

.section { padding: 96px 0; position: relative; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.section-intro { color: var(--text-soft); }

.motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  margin-top: 1.2em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-lg { padding: 17px 38px; }
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(244, 224, 192, 0.6);
}
.btn-outline:hover { background: rgba(244, 224, 192, 0.12); border-color: var(--gold-light); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(19, 19, 19, 0.94);
  box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.8);
  padding: 8px 0;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198, 161, 89, 0.18);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav > a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color 0.25s ease, opacity 0.25s ease;
}
.main-nav > a:hover { color: var(--gold); }
.main-nav .nav-cta,
.main-nav .nav-cta:hover {
  color: var(--black);
  font-size: 0.8rem;
  padding: 10px 22px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(233, 229, 220, 0.4);
  font-size: 0.85rem;
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: inherit;
  cursor: pointer;
  padding: 4px;
}
.lang-btn.active { font-weight: 600; color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 70;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  margin: 5px auto;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(198, 161, 89, 0.16), transparent 60%),
    linear-gradient(180deg, #17171a 0%, var(--black) 70%);
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.72) 0%, rgba(19, 19, 19, 0.45) 45%, rgba(19, 19, 19, 0.88) 100%);
}
.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -30%;
  width: 120vw;
  height: 70vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(198, 161, 89, 0.1), transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 860px;
}
.hero-logo {
  width: min(560px, 84vw);
  margin: 0 auto 10px;
}
.hero-payoff {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: var(--gold);
}
.hero-sub {
  margin-top: 14px;
  color: rgba(233, 229, 220, 0.7);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero-cta {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 44px;
  border: 1.5px solid rgba(198, 161, 89, 0.55);
  border-radius: 999px;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: rgba(198, 161, 89, 0.85);
  animation: scrollHint 2s infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Split sections (text + visual) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.emblem-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  border: 1px solid rgba(198, 161, 89, 0.3);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(198, 161, 89, 0.1), transparent 70%),
    var(--black-soft);
  box-shadow: var(--shadow);
}
.emblem-frame img { width: min(240px, 50%); }

blockquote {
  margin-top: 1.6em;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
}
blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-light);
}
blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

/* ---------- Why us ---------- */
.section-why { background: var(--black-soft); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.why-card {
  background: rgba(198, 161, 89, 0.05);
  border: 1px solid rgba(198, 161, 89, 0.18);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  background: rgba(198, 161, 89, 0.1);
  border-color: rgba(198, 161, 89, 0.4);
  transform: translateY(-4px);
}
.why-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--gold);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.3rem; }
.why-card p { color: var(--text-soft); font-size: 0.96rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 14px 38px -24px rgba(0, 0, 0, 0.8);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--gold);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.service-card p { color: var(--text-soft); font-size: 0.94rem; }
.services-outro {
  margin-top: 56px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
}
.section-services { padding-bottom: 0; }
.photo-band {
  margin-top: 90px;
  height: 420px;
  overflow: hidden;
  position: relative;
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
}
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.35), rgba(19, 19, 19, 0.15) 40%, rgba(19, 19, 19, 0.4));
}

/* ---------- About ---------- */
.section-about { background: var(--black-soft); }
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fact {
  background: var(--black-card);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 30px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.fact-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  min-width: 90px;
}
.fact-label {
  color: var(--text-soft);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

/* ---------- Clients ---------- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.client-card {
  background: var(--black-card);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid rgba(198, 161, 89, 0.14);
}
.client-card h3 {
  font-size: 1.2rem;
  color: var(--gold);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(198, 161, 89, 0.2);
}
.client-card ul { margin-top: 12px; }
.client-card li {
  padding: 5px 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

/* ---------- Testimonials ---------- */
.section-testimonials { background: var(--black-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.testimonial {
  margin: 0;
  padding: 34px 32px;
  background: var(--black-card);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px -24px rgba(0, 0, 0, 0.8);
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--text);
}
.testimonial p::before { content: "\201C"; color: var(--gold); }
.testimonial p::after { content: "\201D"; color: var(--gold); }
.testimonial cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Contact ---------- */
.section-contact {
  text-align: center;
  background:
    radial-gradient(ellipse 80% 70% at 50% 110%, rgba(198, 161, 89, 0.14), transparent 65%),
    var(--black);
}
.section-contact .container { max-width: 720px; }

.contact-form {
  margin: 40px auto 30px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
}
.contact-form label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  background: var(--black-card);
  border: 1.5px solid rgba(198, 161, 89, 0.25);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.form-actions { text-align: center; margin-top: 8px; }
.form-status {
  text-align: center;
  margin-top: 18px;
  min-height: 1.5em;
  font-size: 0.95rem;
}
.form-status.ok { color: var(--gold); }
.form-status.error { color: #d0766c; }

.contact-actions { margin: 34px 0 26px; }
.contact-details { color: var(--text-soft); font-size: 0.98rem; line-height: 2; }
.contact-details a { text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0e0e0f;
  color: var(--text-soft);
  padding: 64px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(198, 161, 89, 0.16);
}
.footer-logo {
  width: 260px;
  margin: 0 auto 18px;
}
.footer-inner p { font-size: 0.95rem; }
.footer-small { margin-top: 10px; font-size: 0.82rem !important; color: rgba(169, 164, 154, 0.7); }
/* Acceptance environment: fully red footer */
.site-footer.acc { background: #7a1010; color: #fff; border-top-color: #a33; }
.site-footer.acc .footer-small { color: rgba(255, 255, 255, 0.85); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .testimonial-grid { grid-template-columns: 1fr; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 65;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a { font-size: 1.15rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .why-grid, .services-grid, .clients-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .photo-band { height: 260px; margin-top: 64px; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .logo-img { height: 36px; }
  .footer-logo { width: 200px; }
}
