/* ============================
   EXPERIENCE PAGE
   ============================ */

/* ============================
   HERO
   ============================ */
.exp-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
}

.exp-eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}

.exp-title {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(80px, 15vw, 200px);
  line-height: 0.9em;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #fff;
}

/* ============================
   SCROLL LINES
   ============================ */
.exp-lines-section {
  padding: 120px 64px 140px;
  max-width: 1060px;
  margin: 0 auto;
}

.exp-line {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.1em;
  letter-spacing: -1.8px;
  color: #fff;
  margin-bottom: 56px;
  display: block;
}

.exp-line:last-child { margin-bottom: 0; }

.exp-line .w { color: #444; }

/* ============================
   VIDEO
   ============================ */
.exp-video-section {
  padding: 0 64px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.exp-video-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}

.exp-video-wrap {
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.06);
}

.exp-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================
   CTA BUTTON (transparent)
   ============================ */
.exp-cta-section {
  padding: 60px 48px 120px;
  text-align: center;
}

.exp-cta-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 18px 52px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.exp-cta-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.04);
}

/* ============================
   QUESTIONNAIRE (hidden)
   ============================ */
.exp-questionnaire {
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0 64px;
  max-width: 860px;
  margin: 0 auto;
  pointer-events: none;
}

.exp-questionnaire.open {
  pointer-events: auto;
}

/* ============================
   DIVIDER
   ============================ */
.exp-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0;
}

.exp-divider-mt { margin-top: 72px; }

/* ============================
   BLOCK SPACING
   ============================ */
.exp-block {
  padding: 64px 0;
}

.exp-block-statement {
  padding: 72px 0;
}

.exp-block-reflection {
  padding: 64px 0;
}

.exp-block-reflection .exp-open-q {
  margin-bottom: 40px;
}

/* ============================
   BULLETS
   ============================ */
.exp-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.exp-bullets li {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  padding: 6px 0 6px 20px;
  position: relative;
}

.exp-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
}

.exp-bullets-spaced li { padding: 10px 0 10px 20px; }

/* ============================
   STATEMENT BLOCK
   ============================ */
.exp-statement-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  color: #fff;
  margin-bottom: 24px;
}

.exp-statement-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}

/* ============================
   OPEN QUESTION
   ============================ */
.exp-open-q {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.35;
  color: #fff;
  margin-bottom: 40px;
}

/* ============================
   TEXTAREA
   ============================ */
.exp-field-wrap { width: 100%; }

.exp-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  padding: 16px 0;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  caret-color: #fff;
}

.exp-textarea::placeholder { color: rgba(255,255,255,0.25); }
.exp-textarea:focus { border-bottom-color: rgba(255,255,255,0.55); }

/* ============================
   PERSONAL DETAILS
   ============================ */
.exp-block-details { padding-top: 40px; }

.exp-details-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
}

.exp-fields {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 56px;
}

.exp-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.exp-field label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.exp-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  caret-color: #fff;
}

.exp-input::placeholder { color: rgba(255,255,255,0.2); }
.exp-input:focus { border-bottom-color: rgba(255,255,255,0.5); }

.exp-select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.4;
  padding: 12px 28px 12px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  cursor: pointer;
  border-radius: 0;
  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 fill='rgba(255,255,255,0.45)' d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.45)' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
}

.exp-select:focus { border-bottom-color: rgba(255,255,255,0.5); }

.exp-select option {
  background: #0a0a0a;
  color: #fff;
}

/* ============================
   SUBMIT
   ============================ */
.exp-submit-wrap { text-align: center; }

.exp-submit-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 18px 52px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  margin-bottom: 20px;
}

.exp-submit-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.04);
}

.exp-submit-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.exp-submit-note {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
}

.exp-success {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 24px 0 12px;
}

.exp-booking-reopen-wrap {
  text-align: center;
  padding: 0 0 32px;
}

.exp-booking-reopen-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 14px 36px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.exp-booking-reopen-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

.exp-booking-reopen-btn:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}

.exp-sheet-warning {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 200, 120, 0.85);
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 20px;
  padding: 0 12px;
}

.exp-error {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,100,100,0.8);
  text-align: center;
  padding: 16px 0;
}

/* ============================
   FOOTER SPACING
   ============================ */
.exp-footer { margin-top: 80px; }

/* ============================
   CALENDLY BOOKING MODAL
   (Calendly runs inside iframe — chrome only is custom.)
   Do NOT set display:flex on the root unconditionally — it overrides the
   native [hidden] behaviour, leaving the modal visible while .hidden stays true
   (then close handlers no-op). Flex only when open.
   ============================ */
.exp-booking-root {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}

.exp-booking-root[hidden] {
  display: none !important;
  visibility: hidden;
  pointer-events: none !important;
}

.exp-booking-root:not([hidden]) {
  display: flex;
  pointer-events: auto;
}

.exp-booking-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  max-height: min(92vh, 900px);
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 32px 80px rgba(0,0,0,0.65);
  overflow: hidden;
  transform-origin: 50% 45%;
}

.exp-booking-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.exp-booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 20;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  background: rgba(10,10,10,0.92);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.exp-booking-close:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(30,30,30,0.95);
}

.exp-booking-close:focus-visible {
  outline: 2px solid rgba(255,255,255,0.55);
  outline-offset: 2px;
}

.exp-booking-header {
  flex-shrink: 0;
  position: relative;
  z-index: 15;
  padding: 40px 56px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0a0a0a;
}

.exp-booking-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}

.exp-booking-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.exp-booking-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.52);
  max-width: 52ch;
}

.exp-booking-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.exp-booking-loading {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 64px 24px;
  min-height: 320px;
}

.exp-booking-loading[hidden] {
  display: none !important;
}

.exp-booking-loading-ring {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.12);
  border-top-color: rgba(255,255,255,0.75);
  border-radius: 50%;
  animation: exp-booking-spin 0.85s linear infinite;
}

@keyframes exp-booking-spin {
  to { transform: rotate(360deg); }
}

.exp-booking-loading-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.exp-booking-widget-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.exp-booking-widget-wrap[hidden] {
  display: none !important;
}

.exp-calendly-inline {
  flex: 1;
  min-height: 560px;
  width: 100%;
}

.exp-calendly-inline iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 560px;
  border: none !important;
}

.exp-booking-done {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px 56px;
  gap: 16px;
}

.exp-booking-done[hidden] {
  display: none !important;
}

.exp-booking-done-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 28px);
  color: #fff;
  letter-spacing: -0.02em;
}

.exp-booking-done-text {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 40ch;
}

.exp-booking-done-btn {
  margin-top: 12px;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

.exp-booking-done-btn:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.06);
}

.exp-booking-error {
  padding: 20px 24px 28px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,120,120,0.9);
}

.exp-booking-error[hidden] {
  display: none !important;
}

@media (max-width: 768px) {
  .exp-booking-root { padding: 12px; }
  .exp-booking-header { padding: 36px 20px 16px; }
  .exp-booking-close { top: 10px; right: 10px; }
  .exp-calendly-inline { min-height: 520px; }
}

/* ============================
   NAV ACTIVE STATE
   ============================ */
.nav-links a.active {
  color: #fff;
  opacity: 1;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .exp-hero { padding: 100px 28px 60px; }
  .exp-lines-section { padding: 80px 28px 100px; }
  .exp-line { font-size: clamp(26px, 6.5vw, 46px); letter-spacing: -1px; margin-bottom: 44px; }
  .exp-video-section { padding: 0 28px 60px; }
  .exp-cta-section { padding: 48px 28px 80px; }
  .exp-questionnaire { padding: 0 28px; }
  .exp-statement-heading { font-size: 22px; }
  .exp-open-q { font-size: 20px; }
}
