/* ============================================
   Aligned Conversations — Design System
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #FFFFFF;
  --text: #1A1A1A;
  --inactive: rgba(26, 26, 26, 0.4);
  --active: rgba(26, 26, 26, 1);
  --divider: #C8C8C4;
  --scene6-bg: #080808;
  --font: 'Plus Jakarta Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font);
  font-weight: 300;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.6;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .hamburger {
    display: none !important;
  }
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--text);
  cursor: pointer;
}

.mobile-menu-link {
  font-family: var(--font);
  font-weight: 300;
  font-size: 20px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

/* ============================================
   Scene 1 — The Arrival
   ============================================ */

.scene-1 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrival-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 8vh;
  animation: fadeUp 1.2s ease-out 0.2s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo {
  width: clamp(260px, 38vw, 520px);
  height: auto;
  display: block;
}

.logo-placeholder {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--text);
}

.divider {
  width: 100%;
  max-width: clamp(260px, 38vw, 520px);
  height: 1px;
  background: var(--divider);
  margin: 24px 0 16px;
  transform-origin: left;
  animation: dividerIn 0.8s ease-out 1.1s both;
}

@keyframes dividerIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.lang {
  cursor: default;
  transition: opacity 0.3s;
}

.lang.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang.inactive {
  opacity: 0.4;
}

.lang-separator {
  opacity: 0.4;
  user-select: none;
}

.world-greeter-trigger {
  cursor: pointer;
  font-size: clamp(14px, 1.6vw, 18px);
  margin-left: 4px;
  transition: transform 0.3s;
}

.world-greeter-trigger:hover {
  transform: scale(1.2);
}

/* ============================================
   Scenes 2–4 — Scroll Narrative
   ============================================ */

.scene-narrative {
  padding: 16vh clamp(24px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  gap: 20vh;
}

.narrative-block {
  max-width: 50%;
}

.narrative-block.left {
  align-self: flex-start;
  text-align: left;
}

.narrative-block.right {
  align-self: flex-end;
  text-align: right;
}

.narrative-block p {
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300;
  line-height: 1.5;
}

.center-block {
  text-align: center;
  max-width: 100%;
  align-self: center;
}

.together {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ============================================
   Scene 5 — Services Carousel
   ============================================ */

.scene-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem;
  color: #1A1A1A;
}

.scene-services .section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.4);
  margin-bottom: 3rem;
  text-align: center;
}

/* ── CAROUSEL WRAPPER ── */
.carousel-outer {
  width: 100%;
  max-width: 680px;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── SLIDE ── */
.slide {
  min-width: 100%;
  padding: 0 0 3rem;
}

.slide-heading {
  font-size: clamp(1rem, 2.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(26,26,26,0.45);
  margin-bottom: 2.5rem;
  line-height: 1.55;
  min-height: 2.5rem;
}

/* ── SINGLE VERB (no accordion needed) ── */
.single-verb .verb-title {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(26,26,26,0.4);
  margin-bottom: 1.25rem;
}

.single-verb .verb-body {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.85;
  color: rgba(26,26,26,0.75);
  max-width: 560px;
}

/* ── ACCORDION ── */
.accordion {
  width: 100%;
  border-top: 1px solid #C8C8C4;
}

.accordion-item {
  border-bottom: 1px solid #C8C8C4;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  text-align: left;
  gap: 1rem;
}

.verb-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.verb-subtitle {
  font-size: clamp(0.78rem, 1.8vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(26,26,26,0.35);
  transition: color 0.2s ease;
  line-height: 1.4;
}

.accordion-item.open .verb-subtitle,
.accordion-trigger:hover .verb-subtitle {
  color: rgba(26,26,26,0.6);
}

.verb-name {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(26,26,26,0.35);
  transition: color 0.2s ease;
}

.accordion-item.open .verb-name,
.accordion-trigger:hover .verb-name {
  color: #1A1A1A;
}

.accordion-item.weighted .verb-name {
  color: rgba(26,26,26,0.85);
}

.accordion-item.weighted .verb-subtitle {
  color: rgba(26,26,26,0.5);
}

.accordion-icon {
  font-size: 1.1rem;
  color: rgba(26,26,26,0.3);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
  color: #1A1A1A;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body p {
  font-size: clamp(0.88rem, 2vw, 0.97rem);
  line-height: 1.85;
  color: rgba(26,26,26,0.7);
  padding-bottom: 1rem;
  max-width: 560px;
}

.accordion-body .slide-cta {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* ── CTA ── */
.slide-cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.slide-cta:hover { opacity: 1; }

/* ── NAVIGATION ── */
.scene-services .carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}

.scene-services .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26,26,26,0.2);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  padding: 0;
}

.scene-services .dot.active {
  background: #1A1A1A;
  transform: scale(1.2);
}

/* ── SLIDE COUNTER ── */
.slide-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #C8C8C4;
  gap: 1rem;
}

.slide-nav a {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(26,26,26,0.4);
  text-decoration: none;
  cursor: pointer;
  line-height: 1.5;
  transition: color 0.2s;
  max-width: 45%;
}

.slide-nav a:hover { color: #1A1A1A; }
.slide-nav .nav-back { text-align: left; }
.slide-nav .nav-fwd { text-align: right; }

.slide-counter {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(26,26,26,0.25);
  text-align: center;
  margin-top: 0.4rem;
}

/* ============================================
   Contact Section — Multi-step Form
   ============================================ */

.scene-contact {
  padding: 10vh clamp(24px, 8vw, 120px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: #1A1A1A;
}

.contact-form-v2 {
  width: 100%;
  max-width: 600px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
}

.contact-form-v2 .hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form-v2 .form-title {
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.contact-form-v2 .form-subtitle {
  font-size: 12px;
  color: rgba(26,26,26,0.4);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  min-height: 1em;
}

/* ── PROGRESS ── */
.contact-form-v2 .progress-outer {
  width: 100%;
  height: 1px;
  background: rgba(26,26,26,0.1);
  margin-bottom: 0.5rem;
}
.contact-form-v2 .progress-inner {
  height: 1px;
  background: #1A1A1A;
  transition: width 0.4s ease;
}
.contact-form-v2 .progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.contact-form-v2 .progress-dots { display: flex; gap: 5px; }
.contact-form-v2 .progress-dots .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(26,26,26,0.12);
  transition: background 0.3s;
}
.contact-form-v2 .progress-dots .dot.active { background: #1A1A1A; }
.contact-form-v2 .progress-dots .dot.done { background: rgba(26,26,26,0.35); }
.contact-form-v2 .progress-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.28);
}

/* ── STEPS ── */
.contact-form-v2 .step { display: none; }
.contact-form-v2 .step.active {
  display: block;
  animation: fadeUpForm 0.3s ease;
}
@keyframes fadeUpForm {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}
.contact-form-v2 .step-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  display: block;
  margin-bottom: 1.5rem;
}

/* ── INPUTS ── */
.contact-form-v2 .field { margin-bottom: 2rem; }
.contact-form-v2 .field label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
  display: block;
  margin-bottom: 0.6rem;
}
.contact-form-v2 .field input,
.contact-form-v2 .field textarea,
.contact-form-v2 .budget-select {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #C8C8C4;
  padding: 0.4rem 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #1A1A1A;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.contact-form-v2 .field input:focus,
.contact-form-v2 .field textarea:focus,
.contact-form-v2 .budget-select:focus {
  border-bottom-color: #1A1A1A;
}
.contact-form-v2 .field textarea {
  min-height: 90px;
  line-height: 1.8;
}
.contact-form-v2 .budget-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231A1A1A' stroke-opacity='0.35' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}

/* ── SERVICE CARDS ── */
.contact-form-v2 .group-section { margin-bottom: 1.5rem; }
.contact-form-v2 .group-header {
  background: #1A1A1A;
  padding: 0.65rem 1.1rem;
  margin-bottom: 1px;
}
.contact-form-v2 .group-header-text {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.contact-form-v2 .cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #C8C8C4;
  border: 1px solid #C8C8C4;
}
.contact-form-v2 .service-card {
  background: #fff;
  padding: 1rem 2rem 1rem 1.1rem;
  cursor: pointer;
  position: relative;
  transition: background 0.15s;
}
.contact-form-v2 .service-card:hover { background: #f8f8f7; }
.contact-form-v2 .service-card.pre { background: #f0f0ee; }
.contact-form-v2 .service-card.sel { background: #1A1A1A; }

.contact-form-v2 .card-check {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(26,26,26,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
}
.contact-form-v2 .service-card.pre .card-check {
  background: rgba(26,26,26,0.12);
  border-color: rgba(26,26,26,0.3);
}
.contact-form-v2 .service-card.sel .card-check {
  background: #fff;
  border-color: #fff;
}
.contact-form-v2 .card-check::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.15s;
}
.contact-form-v2 .service-card.pre .card-check::after {
  background: #1A1A1A;
  opacity: 1;
}
.contact-form-v2 .service-card.sel .card-check::after {
  background: #1A1A1A;
  opacity: 1;
}

.contact-form-v2 .card-name {
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(26,26,26,0.42);
  margin-bottom: 3px;
  transition: color 0.15s;
}
.contact-form-v2 .card-subtitle {
  font-size: 10px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(26,26,26,0.3);
  transition: color 0.15s;
}
.contact-form-v2 .service-card.pre .card-name { color: rgba(26,26,26,0.65); }
.contact-form-v2 .service-card.pre .card-subtitle { color: rgba(26,26,26,0.45); }
.contact-form-v2 .service-card.sel .card-name { color: rgba(255,255,255,0.5); }
.contact-form-v2 .service-card.sel .card-subtitle { color: rgba(255,255,255,0.35); }
.contact-form-v2 .card-body {
  display: none;
  font-size: 11px;
  line-height: 1.7;
  color: rgba(26,26,26,0.5);
  margin-top: 0.6rem;
}
.contact-form-v2 .service-card.sel .card-body { color: rgba(255,255,255,0.4); }
.contact-form-v2 .card-toggle {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(26,26,26,0.22);
  cursor: pointer;
  transition: color 0.15s, transform 0.2s;
  margin-top: 0.35rem;
  line-height: 1;
  transform-origin: center;
}
.contact-form-v2 .card-toggle.open { transform: rotate(45deg); }
.contact-form-v2 .service-card.sel .card-toggle { color: rgba(255,255,255,0.25); }
.contact-form-v2 .service-card.pre .card-toggle { color: rgba(26,26,26,0.3); }

/* ── COLLAPSED GROUPS ── */
.contact-form-v2 .also-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.28);
  margin: 1.5rem 0 0.75rem;
  display: block;
}
.contact-form-v2 .other-wrap { border: 1px solid #C8C8C4; }
.contact-form-v2 .other-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  border-bottom: 1px solid #C8C8C4;
  transition: background 0.15s;
}
.contact-form-v2 .other-toggle.last { border-bottom: none; }
.contact-form-v2 .other-toggle:hover { background: #f8f8f7; }
.contact-form-v2 .other-toggle-name {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.38);
}
.contact-form-v2 .other-toggle-verbs {
  font-size: 10px;
  color: rgba(26,26,26,0.25);
  margin-top: 2px;
}
.contact-form-v2 .other-icon {
  font-size: 14px;
  color: rgba(26,26,26,0.25);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.contact-form-v2 .other-toggle.open .other-icon { transform: rotate(45deg); }
.contact-form-v2 .other-cards {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #C8C8C4;
  border-top: 1px solid #C8C8C4;
}
.contact-form-v2 .other-cards.open { display: grid; }

/* ── SUMMARY ── */
.contact-form-v2 .summary {
  font-size: 11px;
  color: rgba(26,26,26,0.35);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-form-v2 .summary a {
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

/* ── NAV ── */
.contact-form-v2 .form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #C8C8C4;
}
.contact-form-v2 .btn-back {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(26,26,26,0.28);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.contact-form-v2 .btn-back:hover { color: #1A1A1A; }
.contact-form-v2 .btn-next {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #1A1A1A;
  background: none;
  border: none;
  border-bottom: 1px solid #1A1A1A;
  cursor: pointer;
  padding-bottom: 1px;
  transition: opacity 0.15s;
}
.contact-form-v2 .btn-next:hover { opacity: 0.5; }
.contact-form-v2 .btn-submit {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: #fff;
  background: #1A1A1A;
  border: none;
  cursor: pointer;
  padding: 9px 18px;
  transition: opacity 0.15s;
}
.contact-form-v2 .btn-submit:hover { opacity: 0.75; }
.contact-form-v2 .spacer { flex: 1; }

/* ── CONFIRMATION ── */
.contact-form-v2 .step-confirm { padding: 3rem 0; text-align: left; }
.contact-form-v2 .confirm-title {
  font-size: clamp(1rem, 2.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.contact-form-v2 .confirm-body {
  font-size: 13px;
  color: rgba(26,26,26,0.5);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.contact-form-v2 .confirm-body.muted { color: rgba(26,26,26,0.4); }

/* ============================================
   Join the Team Section
   ============================================ */

.scene-join {
  padding: 12vh clamp(24px, 8vw, 120px);
  display: flex;
  justify-content: center;
  color: #1A1A1A;
}

.join-container {
  max-width: 720px;
  width: 100%;
}

.join-header {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  margin-bottom: 2rem;
  color: #1A1A1A;
}

.join-body {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 300;
  line-height: 1.75;
  color: #1A1A1A;
  margin-bottom: 1.25rem;
}

.join-body em {
  font-style: italic;
}

.join-cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 15px;
  font-weight: 300;
  color: #1A1A1A;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
  opacity: 0.7;
  letter-spacing: 0.02em;
}

.join-cta:hover {
  opacity: 1;
}

/* ============================================
   Scene 6 — Barcelona
   ============================================ */

.scene-barcelona {
  background: var(--scene6-bg);
  color: #FFFFFF;
  padding: 12vh clamp(24px, 8vw, 120px);
  text-align: center;
}

.barcelona-container {
  max-width: 720px;
  margin: 0 auto;
}

.barcelona-coming {
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  opacity: 0.7;
}

.barcelona-intro {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
  opacity: 0.8;
}

.barcelona-title {
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.3;
}

.barcelona-models {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.barcelona-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.8;
}

.barcelona-ask {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
  opacity: 0.8;
}

.barcelona-hope {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  margin-bottom: 48px;
  opacity: 0.6;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: 48px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.countdown-number {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.countdown-separator {
  font-size: clamp(20px, 3vw, 32px);
  opacity: 0.3;
  padding-bottom: 20px;
}

.barcelona-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.barcelona-btn {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  padding: 14px 32px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.3s, color 0.3s;
  background: #FFFFFF;
  color: var(--scene6-bg);
  border: 1px solid #FFFFFF;
}

.barcelona-btn:hover {
  background: transparent;
  color: #FFFFFF;
}

.barcelona-btn-outline {
  background: transparent;
  color: #FFFFFF;
}

.barcelona-btn-outline:hover {
  background: #FFFFFF;
  color: var(--scene6-bg);
}

/* ============================================
   World Greeter Widget
   ============================================ */

.world-greeter {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 340px;
  max-height: 420px;
  background: var(--bg);
  border: 1px solid var(--divider);
  z-index: 300;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.wg-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--divider);
  font-size: 18px;
}

.wg-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.wg-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 280px;
}

.wg-message {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  padding: 10px 14px;
  max-width: 85%;
}

.wg-bot {
  background: #f4f4f3;
  align-self: flex-start;
  border-radius: 0 12px 12px 12px;
}

.wg-user {
  background: var(--text);
  color: var(--bg);
  align-self: flex-end;
  border-radius: 12px 0 12px 12px;
}

.wg-input-form {
  display: flex;
  border-top: 1px solid var(--divider);
}

.wg-input-form input {
  flex: 1;
  font-family: var(--font);
  font-weight: 300;
  font-size: 14px;
  padding: 12px 16px;
  border: none;
  outline: none;
  background: transparent;
}

.wg-input-form button {
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
}

.wg-loading {
  opacity: 0.5;
  font-style: italic;
}

/* ============================================
   Responsive — Tablet
   ============================================ */

@media (max-width: 1279px) {
  .services-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Responsive — Mobile
   ============================================ */

@media (max-width: 767px) {
  .nav {
    padding: 16px 20px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .scene-narrative {
    padding: 10vh 20px;
    gap: 12vh;
  }

  .narrative-block {
    max-width: 100%;
  }

  .narrative-block.right {
    text-align: left;
    align-self: flex-start;
  }

  .scene-services {
    padding: 3rem 1rem;
  }

  .slide-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .slide-nav a {
    max-width: 100%;
  }

  .countdown {
    gap: 12px;
  }

  .countdown-separator {
    font-size: 16px;
  }

  .barcelona-ctas {
    flex-direction: column;
    align-items: center;
  }

  .barcelona-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .world-greeter {
    right: 12px;
    left: 12px;
    bottom: 12px;
    width: auto;
  }

  .scene-contact {
    padding: 8vh 20px;
  }
}

/* ============================================
   Barcelona nav link color override
   ============================================ */

.nav.on-dark .nav-link,
.nav.on-dark .hamburger span {
  color: #FFFFFF;
}

.nav.on-dark .hamburger span {
  background: #FFFFFF;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  border-top: 1px solid #C8C8C4;
  padding: 2rem clamp(24px, 8vw, 120px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  color: #1A1A1A;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-line {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(26, 26, 26, 0.6);
}

.footer-email,
.footer-link {
  color: rgba(26, 26, 26, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover,
.footer-link:hover {
  color: #1A1A1A;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}
