/* ============================================================
   de Vriendschap — Concept landing page (V2)
   Palette: warm brown-gold matched to logo
   Fonts: Playfair Display (display) + Manrope (body/UI)
   ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Colors — matched to logo */
  --clr-bg:          #FAF8F4;
  --clr-bg-alt:      #F3EEE6;
  --clr-bg-card:     #FFFFFF;
  --clr-cream:       #EBE4D8;
  --clr-gold:        #C9A96E;
  --clr-gold-light:  #E2C99A;
  --clr-gold-muted:  #D4B483;
  --clr-gold-warm:   #D4B483;
  --clr-gold-dark:   #B8924A;
  --clr-charcoal:    #2C2B28;
  --clr-charcoal-soft:#3A3935;
  --clr-text:        #3D3C39;
  --clr-text-muted:  #7A7872;
  --clr-text-light:  #A8A49E;
  --clr-border:      #E3DDD2;
  --clr-border-dark: #3F3D38;
  --clr-white:       #FFFFFF;
  --clr-whatsapp:    #25D366;
  --clr-whatsapp-dark:#128C7E;

  /* Backwards-compatible alias (older selectors still reference these) */
  --bg:              var(--clr-bg);
  --bg-alt:          var(--clr-bg-alt);
  --card:            var(--clr-bg-card);
  --cream:           var(--clr-cream);
  --gold:            var(--clr-gold);
  --gold-light:      var(--clr-gold-light);
  --gold-dark:       var(--clr-gold-dark);
  --charcoal:        var(--clr-charcoal);
  --charcoal-soft:   var(--clr-charcoal-soft);
  --text:            var(--clr-text);
  --text-muted:      var(--clr-text-muted);
  --border:          var(--clr-border);
  --border-dark:     var(--clr-border-dark);
  --whatsapp:        var(--clr-whatsapp);
  --whatsapp-dark:   var(--clr-whatsapp-dark);

  /* Type */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-xxl: 96px;

  /* Radius */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(44, 43, 40, 0.04);
  --shadow:     0 8px 28px rgba(44, 43, 40, 0.06);
  --shadow-lg:  0 24px 56px rgba(44, 43, 40, 0.10);
  --shadow-gold:0 4px 20px rgba(201, 169, 110, 0.25);

  --container:  1200px;
  --nav-height: 64px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--clr-gold); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--clr-charcoal);
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

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

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1200px){ .container { padding: 0 48px; } }

/* ---------- 3. Section primitives ---------- */
section { padding: 96px 0; position: relative; }
@media (min-width: 768px) { section { padding: 120px 0; } }

.section__head {
  max-width: 720px;
  margin: 0 0 56px;
}
.section__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 18px;
  position: relative;
  padding-left: 32px;
}
.section__label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1px;
  background: var(--clr-gold);
  transform: translateY(-50%);
}
.section__head--center .section__label { padding-left: 0; }
.section__head--center .section__label::before { display: none; }

.section__label--light { color: var(--clr-gold-warm); }

.section__title {
  font-size: clamp(2rem, 4vw + 0.5rem, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section__title em {
  font-style: italic;
  color: var(--clr-gold);
  font-weight: 500;
}
.section__title--light { color: #FAF8F5; }
.section__title--light em { color: var(--clr-gold-warm); }

.section__subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 640px;
  margin: 0;
}
.section__head--center .section__subtitle { margin-left: auto; margin-right: auto; }
.section__subtitle--light { color: rgba(250, 248, 245, 0.78); }

/* ---------- 4. Decorative elements ---------- */
.decorative-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
  vertical-align: middle;
}

.decorative-dot--lg {
  width: 8px;
  height: 8px;
}

.decorative-dot--light {
  background: var(--clr-gold-warm);
}

.divider-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  display: inline-block;
  vertical-align: middle;
}

/* ---------- 5. Inline SVG icons ---------- */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: currentColor;
}
.icon svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: currentColor;
  fill: none;
}
.icon--sm { width: 14px; height: 14px; }
.icon--md { width: 22px; height: 22px; }
.icon--lg { width: 28px; height: 28px; }
.icon--xl { width: 36px; height: 36px; }

/* ---------- 6. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

.btn--primary,
.btn-primary {
  background: var(--clr-gold);
  color: #FFF;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover,
.btn-primary:hover {
  background: var(--clr-gold-dark);
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--clr-charcoal);
  border-color: var(--clr-charcoal);
}
.btn--outline:hover {
  background: var(--clr-charcoal);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: var(--clr-gold-light);
  color: var(--clr-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--clr-whatsapp);
  color: #FFF;
}
.btn--whatsapp:hover {
  background: var(--clr-whatsapp-dark);
  color: #FFF;
  transform: translateY(-2px);
}

.btn__arrow { transition: transform .3s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- 7. Logo (image + text fallback) ---------- */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo__img {
  display: block;
  width: auto;
  height: 48px;
}
@media (max-width: 768px) {
  .brand-logo__img { height: 42px; }
}
.brand-logo__text {
  display: none;
  flex-direction: column;
  line-height: 1;
}
/* When the image fails to load, JS sets the image to display:none and
   the next-sibling text fallback to display:flex via the onerror handler. */

.brand-logo__text-main {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--clr-charcoal);
}
.brand-logo__text-sub {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 4px;
}

/* ---------- 8. Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--clr-border), var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.navbar__logo {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar__logo { height: 42px; }
}

.navbar__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition-base);
}

.navbar__link:hover { color: var(--clr-charcoal); }
.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }
.navbar__link.active { color: var(--clr-charcoal); font-weight: 600; }

.navbar__lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.navbar__lang:hover { border-color: var(--clr-gold); color: var(--clr-gold); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.navbar__actions .btn-primary {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .navbar__nav { gap: 0.875rem; }
  .navbar__link { font-size: 0.78rem; }
  .navbar__actions .btn-primary { padding: 0.5rem 0.85rem; font-size: 0.78rem; }
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-charcoal);
  border-radius: 2px;
  transition: var(--transition-base);
}

.navbar__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--nav-height) + var(--space-lg)) var(--space-md) var(--space-xl);
  gap: var(--space-md);
}

.navbar__mobile.open { display: flex; }

.navbar__mobile-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--clr-charcoal);
  border-bottom: 1px solid var(--clr-border);
  padding-bottom: var(--space-md);
  display: block;
  transition: color var(--transition-fast);
  text-decoration: none;
}
.navbar__mobile-link:hover { color: var(--clr-gold); }

.navbar__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: var(--space-md);
}

.navbar__mobile-book {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.navbar__mobile-lang {
  display: flex !important;
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__inner { justify-content: flex-start; }
  .navbar__actions { margin-left: auto; }
  .navbar__actions .btn { display: none; }
  .navbar__actions .navbar__lang { display: flex; }
  .navbar__hamburger {
    display: flex;
    margin-left: var(--space-sm);
  }
}

/* ---------- 9. Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
}
.hero__glow--1 {
  width: 620px; height: 620px;
  top: -180px; right: -160px;
  background: radial-gradient(circle, rgba(196,164,78,0.45) 0%, rgba(196,164,78,0) 70%);
}
.hero__glow--2 {
  width: 480px; height: 480px;
  bottom: -120px; left: -120px;
  background: radial-gradient(circle, rgba(188,165,106,0.35) 0%, rgba(188,165,106,0) 70%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.hero__logo .brand-logo__img {
  width: min(220px, 58vw);
  height: auto;
}
.hero__logo .brand-logo__text {
  align-items: center;
  gap: 8px;
}

.hero__logo .brand-logo__text-main {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.hero__logo .brand-logo__text-sub {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
}

.hero__title {
  font-size: clamp(1.8rem, 3.5vw + 0.5rem, 3rem);
  line-height: 1.15;
  margin: 0 0 24px;
  max-width: 22ch;
  font-weight: 500;
}
.hero__title-em {
  font-style: italic;
  color: var(--clr-gold);
  font-weight: 500;
}

.hero__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1vw + 0.7rem, 1.15rem);
  color: var(--clr-text-muted);
  max-width: 58ch;
  margin: 0 0 40px;
  line-height: 1.7;
}
.hero__subtitle strong {
  color: var(--clr-charcoal);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 72px;
}

.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}
.hero__scroll-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-gold);
  animation: bounce 2s var(--ease) infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

@media (max-width: 600px) {
  .hero__cta { flex-direction: column; width: 100%; max-width: 340px; }
  .hero__cta .btn { width: 100%; }
}

/* ---------- 10. Story ---------- */
.story { background: var(--clr-bg); }

.story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 900px) {
  .story__grid { grid-template-columns: 1.15fr 1fr; gap: 80px; }
}

.story__body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text);
  margin-bottom: 1.2em;
}
.story__body strong { color: var(--clr-charcoal); font-weight: 600; }

.story__signature {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.story__signature-line {
  width: 40px;
  height: 1px;
  background: var(--clr-gold);
}
.story__signature-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clr-charcoal);
}

.story__quote { width: 100%; }
.story__quote-card {
  position: relative;
  background: var(--clr-charcoal);
  color: var(--clr-bg);
  border-radius: var(--radius-xl);
  padding: 60px 44px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: center;
}
.story__quote-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(196,164,78,0.16), transparent 60%);
  pointer-events: none;
}
.story__quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--clr-gold-warm);
  display: block;
  margin-bottom: 20px;
  height: 32px;
}
.story__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2rem);
  line-height: 1.35;
  font-weight: 500;
  color: var(--clr-gold-warm);
  margin: 0 0 24px;
  position: relative;
}
.story__quote-author {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.65);
  position: relative;
}
.story__quote-deco {
  position: absolute;
  top: 28px; right: 32px;
  opacity: 0.55;
}

/* ---------- 11. Activities (two-column, mirrors Ons verhaal) ---------- */
.activities { background: var(--clr-bg-alt); }

.activities__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 900px) {
  .activities__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.activities__intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--clr-text);
  margin: 0 0 32px;
  max-width: 52ch;
}

/* Featured activity block (left column, below intro) */
.activities__feature {
  border-top: 1px solid var(--clr-border);
  padding-top: 28px;
  margin-top: 8px;
}
.activities__feature-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  margin: 0 0 8px;
  line-height: 1.2;
}
.activities__feature-desc {
  color: var(--clr-text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 52ch;
}
.activities__feature-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.activities__feature-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--clr-text);
}
.activities__feature-info .icon { color: var(--clr-gold); }

.activities__feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--clr-gold);
  padding: 4px 0;
  border-bottom: 1.5px solid var(--clr-gold);
  transition: all .25s var(--ease);
}
.activities__feature-cta:hover {
  color: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  gap: 12px;
}
.activities__feature-cta .icon { color: currentColor; }

/* Right column: featured photo (inline styles drive the visual;
   this rule just provides a soft shadow + subtle hover lift). */
.activities__image {
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.activities__image:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Stagger helper used by .reveal */
.reveal.reveal-delay-1.is-visible { transition-delay: .08s; }
.reveal.reveal-delay-2.is-visible { transition-delay: .16s; }

/* ---------- 12. Voor ondernemers ---------- */
.entrepreneurs {
  background: var(--clr-charcoal);
  color: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.entrepreneurs__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(196,164,78,0.16) 0%, transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(196,164,78,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.entrepreneurs .container { position: relative; z-index: 1; }

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 60px auto;
  max-width: 820px;
}
@media (min-width: 800px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

.value {
  text-align: center;
  padding: 12px 8px;
}
.value__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 164, 78, 0.12);
  border: 1px solid rgba(196, 164, 78, 0.32);
  border-radius: 50%;
  color: var(--clr-gold-warm);
}
.value__icon .icon { width: 30px; height: 30px; }
.value__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--clr-bg);
  margin: 0 0 10px;
  font-weight: 500;
}
.value__desc {
  color: rgba(250, 248, 244, 0.7);
  font-size: 0.98rem;
  margin: 0;
}

.entrepreneurs__cta {
  text-align: center;
  margin-top: 12px;
}

/* Mobile: long CTA text was overflowing the viewport because .btn has
   white-space: nowrap. Scoped overrides so this only affects the
   entrepreneurs section's CTA, not the hero / contact / activity buttons. */
@media (max-width: 768px) {
  .entrepreneurs__cta {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  .entrepreneurs__cta .btn {
    white-space: normal;
    width: 100%;
    max-width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .entrepreneurs__cta .btn {
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
  }
}

/* ---------- 13. Contact ---------- */
.contact { background: var(--clr-bg); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}

.contact__info {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--clr-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}
.contact__icon .icon { width: 20px; height: 20px; }
.contact__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact__value {
  display: block;
  color: var(--clr-charcoal);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
a.contact__value:hover { color: var(--clr-gold); }
.contact__muted { color: var(--clr-text-muted); font-weight: 400; font-size: 0.92rem; }

.contact__whatsapp { align-self: flex-start; }
.contact__whatsapp .icon { color: #FFF; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
  background: var(--clr-cream);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}
@media (max-width: 900px) {
  .contact__whatsapp { align-self: stretch; }
  .contact__map { min-height: 320px; }
  .contact__map iframe { min-height: 320px; }
}

/* ---------- 13b. Subpages (Contact / Route) ---------- */
.page-main {
  padding-top: var(--nav-height);
}

.page-section {
  padding: 96px 0;
  background: var(--clr-bg);
}
@media (min-width: 768px) {
  .page-section { padding: 120px 0; }
}

.contact-page__intro {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.contact-page__content {
  max-width: 560px;
  margin: 0 auto;
}

.route-page__intro {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.route-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .route-page__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
  }
}

.route-page__details {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.route-page__address {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--clr-charcoal);
  line-height: 1.5;
  margin: 0 0 24px;
}

.route-page__actions {
  margin-top: 28px;
}

.route-page__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid var(--clr-border);
  background: var(--clr-cream);
}
.route-page__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}
@media (max-width: 900px) {
  .route-page__map { min-height: 320px; }
  .route-page__map iframe { min-height: 320px; }
}

@media (max-width: 768px) {
  .route-page__actions .btn {
    white-space: normal;
    width: 100%;
    text-align: center;
    line-height: 1.4;
  }
}

/* Slightly tighter nav when 5 items are shown */
@media (min-width: 901px) and (max-width: 1100px) {
  .navbar__list { gap: 18px; }
  .navbar__link { font-size: 0.88rem; }
}

/* ---------- 14. Footer ---------- */
.footer {
  background: var(--clr-charcoal);
  color: rgba(250, 248, 244, 0.7);
  padding: 72px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
@media (min-width: 700px) {
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.footer__logo-main {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--clr-bg);
}
.footer__logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clr-gold-warm);
}
.footer__tagline {
  color: rgba(250, 248, 244, 0.6);
  font-size: 0.95rem;
  max-width: 36ch;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold-warm);
  margin: 0 0 18px;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  color: rgba(250, 248, 244, 0.72);
  font-size: 0.95rem;
}
.footer__nav a:hover { color: var(--clr-gold-warm); }

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 248, 244, 0.72);
  font-size: 0.95rem;
}
.footer__social-link:hover { color: var(--clr-gold-warm); }
.footer__social-link .icon { color: var(--clr-gold-warm); }

.footer__bottom {
  border-top: 1px solid rgba(250, 248, 244, 0.08);
  padding: 22px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.5);
}
.footer__bottom-inner a { color: rgba(250, 248, 244, 0.7); }
.footer__bottom-inner a:hover { color: var(--clr-gold-warm); }
.footer__bottom-inner p { margin: 0; }

/* ---------- 15. Scroll-to-top ---------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-gold);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all .3s var(--ease);
  z-index: 90;
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--clr-gold-dark);
  transform: translateY(-2px);
}
.scroll-top .icon { width: 18px; height: 18px; color: #FFF; }

/* ---------- 16. Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.values__grid .value.is-visible:nth-child(2) { transition-delay: .1s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 17. Selection + focus ---------- */
::selection { background: var(--clr-gold); color: #FFF; }

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 18. Misc ---------- */
.btn,
.navbar__link,
.navbar__lang,
a {
  -webkit-tap-highlight-color: transparent;
}
