/* ============================================================
   Orchid City -- orchidcity.eco
   Complete stylesheet for Wagtail rebuild
   Faithfully reproduces the dark teal/slate palette and layout
   of the original WordPress/TheGem/Elementor site.
   ============================================================ */

/* ------------------------------------------------------------
   0. CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
  /* Backgrounds */
  --bg-deep:        #1a252f;
  --bg-main:        #2c3e50;
  --bg-alt:         #34495e;
  --bg-card:        #243342;
  --bg-footer:      #141d26;

  /* Text */
  --text-white:     #ffffff;
  --text-light:     #bdc3c7;
  --text-muted:     #95a5a6;
  --text-dim:       #7f8c8d;

  /* Accents -- location colors */
  --accent-nl:      #5a7e6f;
  --accent-br:      #4aabb8;
  --accent-vn:      #e8947f;

  /* Neutral accents */
  --accent-teal:    #5a7e6f;
  --border-subtle:  rgba(255, 255, 255, 0.08);
  --border-light:   rgba(255, 255, 255, 0.15);

  /* Typography */
  --font-body:      'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display:   'Playfair Display', 'Georgia', serif;

  /* Layout */
  --container-max:  1100px;
  --container-wide: 1400px;
  --gap:            2rem;
  --radius:         4px;
  --radius-lg:      8px;

  /* Transitions */
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration:       0.3s;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  background-color: var(--bg-main);
}

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

a {
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

a:hover {
  opacity: 0.85;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-variant: small-caps;
}

ul, ol {
  list-style: none;
}

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


/* ------------------------------------------------------------
   2. NAVIGATION
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: rgba(26, 37, 47, 0.2);
  transition: background var(--duration) var(--ease),
              padding var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: var(--bg-deep);
  padding: 0.75rem 2.5rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-wordmark:hover {
  opacity: 1;
  color: var(--text-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-light);
  position: relative;
  padding-bottom: 2px;
}

.nav-links li.desktop-hidden {
  display: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-white);
  transition: width var(--duration) var(--ease);
}

.nav-links a:hover {
  color: var(--text-white);
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--text-white);
  opacity: 1;
  border-bottom: 2px solid var(--accent-teal);
}

.nav-lang {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--border-light);
}

.nav-lang a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-lang a:hover,
.nav-lang a.active {
  color: var(--text-white);
  opacity: 1;
}

.nav-lang .lang-active {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  opacity: 1;
  cursor: default;
}

.nav-lang .lang-inactive {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.4;
  cursor: default;
}

.nav-lang .lang-form {
  display: inline;
  margin: 0;
  padding: 0;
}

.nav-lang .lang-btn {
  background: none;
  border: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  margin: 0;
  font-family: inherit;
  transition: color 0.2s ease;
}

.nav-lang .lang-btn:hover {
  color: var(--text-white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-white);
  transition: transform var(--duration) var(--ease),
              opacity var(--duration) var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-deep);
  z-index: 1005;
  padding: 5rem 2rem 2rem;
  transition: right var(--duration) var(--ease);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav a:hover {
  color: var(--text-white);
  opacity: 1;
}

.mobile-nav .nav-lang {
  margin-left: 0;
  padding-left: 0;
  padding-top: 1.5rem;
  border-left: none;
  border-top: 1px solid var(--border-subtle);
}


/* ------------------------------------------------------------
   3. HERO -- HOME PAGE
   ------------------------------------------------------------ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 37, 47, 0.4) 0%,
    rgba(26, 37, 47, 0.6) 50%,
    rgba(26, 37, 47, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-white);
  border: 1px solid var(--text-white);
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.hero-cta:hover {
  background: var(--text-white);
  color: var(--bg-deep);
  opacity: 1;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.2); }
}


/* ------------------------------------------------------------
   4. HERO -- INNER PAGES
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-deep);
}

.page-hero.short {
  min-height: 400px;
}

.page-hero.tall {
  min-height: 600px;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(26, 37, 47, 0.9) 0%,
    rgba(26, 37, 47, 0.3) 60%,
    rgba(26, 37, 47, 0.15) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.ey-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.6;
}


/* ------------------------------------------------------------
   5. LAYOUT -- CONTAINERS & SECTIONS
   ------------------------------------------------------------ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.inner-section {
  padding: 5rem 0;
  background: var(--bg-main);
}

.inner-section:nth-child(even) {
  background: var(--bg-alt);
}

.inner-section.compact {
  padding: 3rem 0;
}

.inner-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}


/* ------------------------------------------------------------
   6. PROSE -- RICH TEXT CONTENT
   ------------------------------------------------------------ */
.prose {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.prose h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.prose h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.prose h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.prose h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-white);
}

.prose h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose a {
  color: var(--text-white);
  text-decoration: underline;
  text-decoration-color: var(--accent-teal);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.prose a:hover {
  color: var(--accent-teal);
  opacity: 1;
}

.prose strong {
  color: var(--text-white);
  font-weight: 600;
}

.prose em {
  font-style: italic;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose ul {
  list-style: none;
}

.prose ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.prose ol {
  list-style: decimal;
}

.prose ol li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.prose ol li::marker {
  color: var(--accent-teal);
  font-weight: 600;
}

.prose blockquote {
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}

.prose blockquote p {
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text-white);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

.prose blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.prose img {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

.prose figure {
  margin: 2rem 0;
}

.prose figure img {
  margin: 0;
}

.prose figcaption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  text-align: center;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 2.5rem 0;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.prose th,
.prose td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.prose th {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* ------------------------------------------------------------
   7. INTRO SECTION (HOME)
   ------------------------------------------------------------ */
.intro {
  padding: 6rem 0;
  background: var(--bg-main);
}

.intro-heading {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.3;
  max-width: 700px;
  margin-bottom: 1.5rem;
}

.intro-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.rule {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 2rem 0;
}


/* ------------------------------------------------------------
   8. STAT STRIP
   ------------------------------------------------------------ */
.stat-strip {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


/* ------------------------------------------------------------
   9. FEATURES SECTION
   ------------------------------------------------------------ */
.features {
  padding: 5rem 0;
  background: var(--bg-deep);
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.6;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: border-color var(--duration) var(--ease),
              transform var(--duration) var(--ease);
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.5rem;
}

.feature-icon img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* Feature grid -- inner pages (5 columns) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.feature-cell {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon-box {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(90, 126, 111, 0.12);
  border: 1px solid var(--border-subtle);
}

.feature-icon-box img {
  width: 28px;
  height: 28px;
  opacity: 0.85;
}

.feature-cell h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.feature-cell p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ------------------------------------------------------------
   10. LOCATION CARDS (HOME)
   ------------------------------------------------------------ */
.loc-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-alt);
}

.loc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(26, 37, 47, 0.9) 0%,
    rgba(26, 37, 47, 0.2) 60%
  );
}

.loc-overlay--netherlands {
  background: linear-gradient(
    0deg,
    rgba(90, 126, 111, 0.85) 0%,
    rgba(26, 37, 47, 0.2) 60%
  );
}

.loc-overlay--brazil {
  background: linear-gradient(
    0deg,
    rgba(74, 171, 184, 0.85) 0%,
    rgba(26, 37, 47, 0.2) 60%
  );
}

.loc-overlay--vietnam {
  background: linear-gradient(
    0deg,
    rgba(232, 148, 127, 0.85) 0%,
    rgba(26, 37, 47, 0.2) 60%
  );
}

.loc-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
}

.loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.loc-tag-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.loc-card.nl .loc-tag-dot { background: var(--accent-nl); }
.loc-card.br .loc-tag-dot { background: var(--accent-br); }
.loc-card.vn .loc-tag-dot { background: var(--accent-vn); }

.loc-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.loc-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 320px;
}

.loc-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.loc-link::after {
  content: '\2192';
  transition: transform var(--duration) var(--ease);
}

.loc-link:hover {
  opacity: 1;
}

.loc-link:hover::after {
  transform: translateX(4px);
}

/* Location accent helpers */
.loc-accent-text.nl { color: var(--accent-nl); }
.loc-accent-text.br { color: var(--accent-br); }
.loc-accent-text.vn { color: var(--accent-vn); }

.loc-accent-bg.nl { background-color: var(--accent-nl); }
.loc-accent-bg.br { background-color: var(--accent-br); }
.loc-accent-bg.vn { background-color: var(--accent-vn); }


/* ------------------------------------------------------------
   11. INNER PAGE LOCATION STYLES
   ------------------------------------------------------------ */

/* Body-level location classes for per-location accent overrides */
.location--netherlands { --loc-accent: var(--accent-nl); }
.location--brazil      { --loc-accent: var(--accent-br); }
.location--vietnam     { --loc-accent: var(--accent-vn); }

.location--netherlands .ey-dot,
.location--netherlands .loc-tag-dot { background: var(--accent-nl); }
.location--brazil .ey-dot,
.location--brazil .loc-tag-dot { background: var(--accent-br); }
.location--vietnam .ey-dot,
.location--vietnam .loc-tag-dot { background: var(--accent-vn); }

/* Location intro grid: text left, stats right */
.loc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.loc-shield {
  width: 80px;
  height: auto;
  margin-bottom: 1.5rem;
}

.loc-stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.loc-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.loc-stat-row:last-child {
  border-bottom: none;
}

.loc-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.loc-stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-white);
}

.loc-features-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.loc-features-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.loc-features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--loc-accent, var(--accent-teal));
}


/* Neighborhood sections */
.neighborhood-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
}

.neighborhood-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.neighborhood-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
}

.neighborhood-features li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.neighborhood-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--loc-accent, var(--accent-teal));
}


/* ------------------------------------------------------------
   12. STATS BAR
   ------------------------------------------------------------ */
.stats-bar {
  display: flex;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-cell {
  flex: 1;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid var(--border-subtle);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ------------------------------------------------------------
   13. PARTNERS STRIP
   ------------------------------------------------------------ */
.partners-strip {
  padding: 4rem 0;
  background: var(--bg-main);
}

.partners-logos,
.logo-grid {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.logo-grid {
  animation: logo-scroll 40s linear infinite;
}

.logo-grid:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  min-height: 80px;
  min-width: 160px;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}

.partner-logo-card:hover {
  transform: translateY(-2px);
}

.partner-logo-card img {
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}


/* ------------------------------------------------------------
   14. PULL QUOTE
   ------------------------------------------------------------ */
.pullquote {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.pullquote blockquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-white);
}

.pullquote cite {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}


/* ------------------------------------------------------------
   15. CONTACT
   ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.contact-ico {
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  color: var(--accent-teal);
  font-size: 1rem;
  padding-top: 2px;
}

.contact-ico img {
  width: 18px;
  height: 18px;
  opacity: 0.7;
}

.contact-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.contact-val {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-val a {
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-color: var(--border-light);
  text-underline-offset: 3px;
}

.contact-val a:hover {
  color: var(--text-white);
  opacity: 1;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  color: var(--text-light);
  font-size: 1rem;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.social-btn:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: var(--text-white);
  opacity: 1;
}

.social-btn img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.social-btn:hover img {
  opacity: 1;
}


/* ------------------------------------------------------------
   16. LOCATION INDEX
   ------------------------------------------------------------ */
.map-canvas {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  background: var(--bg-card);
}

.map-canvas img {
  width: 100%;
  height: auto;
}

.location-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.loc-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.loc-card-inner.rev {
  direction: rtl;
}

.loc-card-inner.rev > * {
  direction: ltr;
}

.loc-card-img {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.loc-card-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.loc-card-body h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.loc-card-body p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.loc-accent-strip {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.loc-tag--netherlands .loc-accent-strip,
.loc-tag--netherlands.loc-accent-strip { background: var(--accent-nl); }
.loc-tag--brazil .loc-accent-strip,
.loc-tag--brazil.loc-accent-strip { background: var(--accent-br); }
.loc-tag--vietnam .loc-accent-strip,
.loc-tag--vietnam.loc-accent-strip { background: var(--accent-vn); }

.loc-link-inner {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.loc-link-inner::after {
  content: '\2192';
  transition: transform var(--duration) var(--ease);
}

.loc-link-inner:hover {
  opacity: 1;
}

.loc-link-inner:hover::after {
  transform: translateX(4px);
}


/* ------------------------------------------------------------
   17. TEAM PHOTO
   ------------------------------------------------------------ */
.team-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}

.team-photo img {
  width: 100%;
  height: auto;
}


/* ------------------------------------------------------------
   18. DOWNLOAD LIST
   ------------------------------------------------------------ */
.dl-list {
  list-style: none;
  padding: 0;
}

.dl-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--duration) var(--ease);
}

.dl-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.dl-ico {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(90, 126, 111, 0.12);
  color: var(--accent-teal);
  flex-shrink: 0;
  font-size: 1rem;
}

.dl-ico img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.dl-name {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 500;
}

.dl-arrow {
  color: var(--text-muted);
  font-size: 1rem;
  transition: transform var(--duration) var(--ease);
}

.dl-item:hover .dl-arrow {
  transform: translateX(4px);
  color: var(--text-white);
}


/* ------------------------------------------------------------
   19. DIVIDER
   ------------------------------------------------------------ */
.divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 3rem 0;
}


/* ------------------------------------------------------------
   20. LANDSCAPE BAND
   ------------------------------------------------------------ */
.landscape {
  width: 100%;
  overflow: hidden;
  max-height: 400px;
}

.landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ------------------------------------------------------------
   21. FOOTER
   ------------------------------------------------------------ */
footer {
  background: var(--bg-footer);
  color: var(--text-muted);
}

.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.footer-brand-copy {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: border-color var(--duration) var(--ease),
              color var(--duration) var(--ease);
}

.footer-social a:hover {
  border-color: var(--text-light);
  color: var(--text-white);
  opacity: 1;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover {
  color: var(--text-white);
  opacity: 1;
}

.footer-address {
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.7;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer-bottom-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-bottom-links a:hover {
  color: var(--text-light);
  opacity: 1;
}


/* ------------------------------------------------------------
   22. ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim {
  animation: fadeInUp 0.8s var(--ease) both;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.3s; }
.d3 { animation-delay: 0.5s; }


/* ------------------------------------------------------------
   23. UTILITY CLASSES
   ------------------------------------------------------------ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ------------------------------------------------------------
   24. RESPONSIVE -- TABLET (max 1024px)
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .loc-card-inner {
    grid-template-columns: 1fr;
  }

  .loc-card-inner.rev {
    direction: ltr;
  }

  .loc-card-img {
    min-height: 240px;
  }
}


/* ------------------------------------------------------------
   25. RESPONSIVE -- MOBILE (max 768px)
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 1rem 1.25rem;
  }

  .nav.scrolled {
    padding: 0.6rem 1.25rem;
  }

  .nav-links {
    display: none;
  }

  .nav-lang {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 100svh;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    width: 90px;
  }

  .scroll-cue {
    bottom: 1.5rem;
  }

  /* Page hero */
  .page-hero {
    min-height: 360px;
  }

  .page-hero.short {
    min-height: 300px;
  }

  .page-hero.tall {
    min-height: 440px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero-content {
    padding: 2rem 1.25rem 2.5rem;
  }

  /* Containers & sections */
  .container {
    padding: 0 1.25rem;
  }

  .inner-section {
    padding: 3.5rem 0;
  }

  .inner-section.compact {
    padding: 2rem 0;
  }

  /* Intro */
  .intro {
    padding: 4rem 0;
  }

  .intro-heading {
    font-size: 1.75rem;
  }

  /* Stat strip */
  .stat-strip {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
  }

  .stat-item {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
  }

  .stat-number {
    font-size: 2rem;
    min-width: 80px;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-cell {
    padding: 1rem 0.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  /* Location cards */
  .loc-card {
    min-height: 300px;
  }

  .loc-name {
    font-size: 1.4rem;
  }

  /* Stats bar */
  .stats-bar {
    flex-direction: column;
  }

  .stat-cell {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    text-align: left;
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .stat-num {
    font-size: 2rem;
    min-width: 80px;
  }

  /* Partners */
  .partners-logos,
  .logo-grid {
    gap: 1rem;
  }

  .partner-logo-card {
    padding: 1rem;
    min-height: 64px;
    min-width: 120px;
  }

  /* Pull quote */
  .pullquote blockquote {
    font-size: 1.2rem;
    padding: 1.5rem 0;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Location index cards */
  .loc-card-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .loc-card-inner.rev {
    direction: ltr;
  }

  .loc-card-img {
    min-height: 200px;
  }

  .loc-card-body {
    padding: 1.5rem;
  }

  .loc-card-body h2 {
    font-size: 1.4rem;
  }

  /* Neighborhood */
  .neighborhood-features {
    grid-template-columns: 1fr;
  }

  /* Prose */
  .prose {
    font-size: 1rem;
  }

  .prose h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
  }

  .prose h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }

  .prose blockquote p {
    font-size: 1.15rem;
  }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  /* Download list */
  .dl-item {
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .dl-name {
    font-size: 0.85rem;
  }

  /* Landscape */
  .landscape {
    max-height: 250px;
  }

  /* Loc intro */
  .loc-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* ------------------------------------------------------------
   26. RESPONSIVE -- SMALL MOBILE (max 480px)
   ------------------------------------------------------------ */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem;
  }

  .hero-eyebrow {
    font-size: 0.65rem;
  }

  .hero-cta {
    padding: 0.75rem 2rem;
    font-size: 0.8rem;
  }

  .page-hero h1 {
    font-size: 1.65rem;
  }

  .intro-heading {
    font-size: 1.5rem;
  }

  .stat-number,
  .stat-num {
    font-size: 1.75rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .partners-logos,
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pullquote blockquote {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .loc-name {
    font-size: 1.25rem;
  }
}


/* ------------------------------------------------------------
   27. PRINT STYLES
   ------------------------------------------------------------ */
@media print {
  .nav,
  .hamburger,
  .mobile-nav,
  .scroll-cue,
  .hero-video,
  .hero-overlay,
  footer {
    display: none;
  }

  body {
    background: #fff;
    color: #333;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #1a1a1a;
  }

  .inner-section {
    background: #fff;
    padding: 1.5rem 0;
  }

  .prose a {
    color: #333;
    text-decoration: underline;
  }
}


/* ------------------------------------------------------------
   28. NAV GRADIENT (separate from hero content)
   ------------------------------------------------------------ */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ------------------------------------------------------------
   29. VIDEO EMBED
   ------------------------------------------------------------ */
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-video-section {
  background: var(--bg-alt);
}

/* ------------------------------------------------------------
   30. WORLD MAP
   ------------------------------------------------------------ */
.world-map-section {
  background: var(--bg-deep);
  padding: 4rem 0 0;
  overflow: hidden;
}

.world-map-header {
  text-align: center;
  padding: 0 2rem 3rem;
}

.world-map-canvas {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.world-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.world-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
}

.world-map-pin:hover .pin-label {
  opacity: 1;
  transform: translateY(-2px);
}

.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.nl-dot { background: var(--accent-nl); }
.br-dot { background: var(--accent-br); }
.vn-dot { background: var(--accent-vn); }

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  animation: map-pulse 2.5s infinite ease-out;
  pointer-events: none;
  z-index: 1;
}

.nl-pulse { background: rgba(90,126,111,0.25); }
.br-pulse { background: rgba(74,171,184,0.25); }
.vn-pulse { background: rgba(232,148,127,0.25); }

@keyframes map-pulse {
  0%   { transform: translate(-50%,-50%) scale(0.8); opacity: 0.8; }
  70%  { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}

.pin-label {
  background: rgba(0,0,0,0.5);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  position: relative;
  z-index: 3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.5);
}

.pin-sub {
  font-size: 0.6rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nl-pin .pin-label { border-top: 2px solid var(--accent-nl); }
.br-pin .pin-label { border-top: 2px solid var(--accent-br); }
.vn-pin .pin-label { border-top: 2px solid var(--accent-vn); }

@media (max-width: 768px) {
  .world-map-section { padding: 3rem 0 0; }
  .pin-label { font-size: 0.6rem; padding: 0.25rem 0.5rem; }
  .pin-sub { display: none; }
}
/* ============================================================
   orchid-additions.css
   Appended after orchid.css (2365 lines).
   Uses existing custom properties from :root.
   ============================================================ */

/* ----------------------------------------------------------
   1. Nav Logo (replaces text wordmark)
   ---------------------------------------------------------- */
.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  transition: height var(--duration) var(--ease);
}

.nav.scrolled .nav-logo-img {
  height: 32px;
}

/* ----------------------------------------------------------
   2. Language Selector (override display:none)
   ---------------------------------------------------------- */
/* Desktop only: show nav-lang in the top bar */
@media (min-width: 769px) {
  .nav-lang {
    display: flex !important;
  }
}

/* Mobile: hide in desktop nav bar, show only inside mobile-nav panel */
@media (max-width: 768px) {
  .nav > .nav-lang {
    display: none !important;
  }
  .mobile-nav .nav-lang {
    display: flex !important;
  }
}

/* ----------------------------------------------------------
   3. Mobile Nav Close Button
   ---------------------------------------------------------- */
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  transition: color var(--duration) var(--ease);
}

.mobile-nav-close:hover {
  color: var(--text-white);
}

/* ----------------------------------------------------------
   4. Lifestyle Tags Strip
   ---------------------------------------------------------- */
.lifestyle-strip {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 1.25rem 2rem;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.lifestyle-strip span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ----------------------------------------------------------
   5. Landscape Slideshow
   ---------------------------------------------------------- */
.landscape-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--bg-deep);
}

.slideshow-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s var(--ease);
}

.slideshow-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   6. About Page: Alternating Two-Column Sections
   ---------------------------------------------------------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-split.rev {
  direction: rtl;
}

.about-split.rev > * {
  direction: ltr;
}

.about-split-text h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.about-split-text .subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 1rem;
}

.about-split-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-split-text ul {
  list-style: none;
  padding: 0;
}

.about-split-text ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-split-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
}

.about-split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-split-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------------------
   7. Gallery Strip
   ---------------------------------------------------------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.gallery-strip.single {
  grid-template-columns: 1fr;
}

.gallery-strip img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------------------------
   8. Quote Callouts
   ---------------------------------------------------------- */
.quote-callout {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.quote-callout blockquote {
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-callout blockquote::before {
  content: '\201C';
  display: block;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-teal);
  margin-bottom: 0.5rem;
  font-style: normal;
}

.quote-callout cite {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------
   9. About Text Section (full width)
   ---------------------------------------------------------- */
.about-text-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-text-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.about-text-section p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-text-section ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-text-section ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-text-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
}

/* ----------------------------------------------------------
   10. Neighbourhood Sections (location pages)
   ---------------------------------------------------------- */
.neighbourhood-sections {
  padding: 2rem 0;
}

.neighbourhood-sections h2 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  color: var(--text-white);
}

.neighbourhood {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.neighbourhood.rev {
  direction: rtl;
}

.neighbourhood.rev > * {
  direction: ltr;
}

.neighbourhood-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.neighbourhood-body h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.neighbourhood-features {
  list-style: none;
  padding: 0;
}

.neighbourhood-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.neighbourhood-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-teal);
}

/* Location-specific accent for neighbourhood bullets */
.location--netherlands .neighbourhood-features li::before {
  background: var(--accent-nl);
}

.location--brazil .neighbourhood-features li::before {
  background: var(--accent-br);
}

.location--vietnam .neighbourhood-features li::before {
  background: var(--accent-vn);
}

/* ----------------------------------------------------------
   11. Scroll animation base state
   ---------------------------------------------------------- */
.anim {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------
   11b. Location Description Panels
   ---------------------------------------------------------- */
.loc-panels {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.loc-panel {
  flex: 1 1 33.33%;
  min-width: 280px;
  padding: 3rem 2rem;
  color: #fff;
}

.loc-panel h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.loc-panel p {
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  margin: 0.75rem 0;
}

.loc-panel a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.loc-panel a:hover {
  text-decoration: underline;
}

.loc-panel--nl { background: var(--accent-nl); }
.loc-panel--br { background: var(--accent-br); }
.loc-panel--vn { background: var(--accent-vn); }

@media (max-width: 767px) {
  .loc-panels {
    flex-direction: column;
  }
  .loc-panel {
    flex: 1 1 100%;
  }
}

/* ----------------------------------------------------------
   12. Responsive adjustments
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .lifestyle-strip {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .lifestyle-strip span {
    font-size: 0.6rem;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split.rev {
    direction: ltr;
  }

  .about-text-section ul {
    grid-template-columns: 1fr;
  }

  .neighbourhood {
    grid-template-columns: 1fr;
  }

  .neighbourhood.rev {
    direction: ltr;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip img {
    height: 250px;
  }

  .nav-lang {
    display: none !important;
  }
}

/* ------------------------------------------------------------
   YOUTUBE CLICK-TO-PLAY THUMBNAILS
   ------------------------------------------------------------ */
.yt-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #000;
}
.yt-embed img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.yt-embed .yt-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 48px;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}
.yt-embed:hover .yt-play { background: #c00; }
