/* ======================================
   Tulumi Co — Dark Luxury Enterprise
   ====================================== */

:root {
  --bg: #0A0A0B;
  --bg-elevated: #111113;
  --bg-card: #161618;
  --bg-card-hover: #1C1C1F;
  --surface: #1E1E21;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --white: #FAFAFA;
  --text: #E8E8EA;
  --text-secondary: #9A9AA0;
  --text-muted: #636369;
  --accent: #C9A96E;
  --accent-hover: #D4B87E;
  --accent-subtle: rgba(201, 169, 110, 0.1);
  --green: #25D366;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --section-pad: clamp(80px, 10vw, 140px);
  --side-pad: clamp(20px, 5vw, 80px);
  --max-width: 1140px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: var(--font-body); border: none; outline: none; background: none; color: var(--text); }
img { display: block; max-width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--white); }
.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 100%;
  padding: 14px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--side-pad);
  background: rgba(10, 10, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
}
.nav-logo span { color: var(--accent); font-weight: 500; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 16px; }

.lang-toggle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-strong); }

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 2px;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--accent-hover); }

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-menu-btn span {
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s;
}
.nav-menu-btn.active span:first-child { transform: rotate(45deg) translate(2px, 2px); }
.nav-menu-btn.active span:last-child { transform: rotate(-45deg) translate(2px, -2px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.05em;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--side-pad) var(--section-pad);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-badge {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.hero-title span:nth-child(1) { animation-delay: 0.3s; }
.hero-title span:nth-child(2) { animation-delay: 0.5s; }
.hero-title-em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease 0.9s forwards;
}
.hero-gradient {
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

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

/* ── Proof Bar ── */
.proof-bar {
  padding: 40px var(--side-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.proof-bar p {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 60px);
  flex-wrap: wrap;
}
.proof-logos span,
.proof-logos .proof-item {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.5;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.7 !important;
}
.proof-item strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-secondary);
}
.proof-item small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--accent);
  opacity: 0.8;
}

/* ── Sections ── */
.section { padding: var(--section-pad) var(--side-pad); }
.section--dark { background: var(--bg-elevated); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-inner--narrow { max-width: 720px; margin: 0 auto; }
.section-header { margin-bottom: 56px; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 480px;
}
.section-sub--wide { max-width: 600px; }

/* ── Pain Points ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.pain-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.4s;
}
.pain-card:hover { border-color: var(--border-strong); }
.pain-stat {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.pain-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.pain-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Cost Block ── */
.cost-block {
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
}
.cost-header { margin-bottom: 32px; }
.cost-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 400;
  color: var(--white);
}
.cost-table { margin-bottom: 20px; }
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cost-row:first-child { border-top: 1px solid var(--border); }
.cost-row--total { border-bottom: none; padding-top: 20px; }
.cost-item {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}
.cost-row--total .cost-item {
  font-weight: 500;
  color: var(--white);
}
.cost-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.cost-value small {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}
.cost-value--accent { color: var(--accent); font-size: 22px; }
.cost-note {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Portfolio ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
  cursor: default;
}
.portfolio-card--featured { grid-column: span 2; }
.portfolio-card--featured .portfolio-card-img { min-height: 280px; }
a.portfolio-card { cursor: pointer; }
.portfolio-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.portfolio-card-img {
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portfolio-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 2px;
}
.portfolio-card-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
}
.portfolio-card-info { padding: 24px; }
.portfolio-card-info h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.portfolio-card-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}
.portfolio-card-tags {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── Pricing ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px 32px;
  transition: border-color 0.4s, transform 0.4s;
}
.pricing-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.pricing-card--popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.04) 0%, var(--bg-card) 100%);
}
.pricing-card--popular:hover { border-color: var(--accent-hover); }
.pricing-card-tag {
  position: absolute;
  top: -1px;
  left: 32px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 0 0 3px 3px;
}
.pricing-card-header { margin-bottom: 28px; }
.pricing-card-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.pricing-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.pricing-card-price:last-of-type {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.price-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  width: 100%;
  margin-bottom: -4px;
}
.pricing-card-price--monthly .price-amount {
  font-size: 24px;
}
.price-period {
  font-size: 12px;
  color: var(--text-muted);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
}
.price-currency {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-card-features li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}
.pricing-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 6px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* ── Process ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.process-step {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.process-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}
.process-step h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Testimonials ── */
.section--testimonials { background: var(--bg-elevated); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.testimonial-icon {
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
  display: block;
  width: 24px;
  height: 24px;
}
.testimonial-quote p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}
.testimonial-author {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}
.testimonial-author span {
  color: var(--text-muted);
  font-size: 13px;
}
.testimonials-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 32px;
  font-style: italic;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--white); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-bottom: 24px;
}

/* ── Contact ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 380px;
}
.contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.contact-link:hover { color: var(--accent); }
.contact-link svg { flex-shrink: 0; opacity: 0.6; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; -webkit-appearance: none; color: var(--text-secondary); }
.form-group textarea { resize: vertical; min-height: 100px; }

.thank-you-msg {
  text-align: center;
  padding: 48px 24px;
}
.thank-you-msg h3 {
  font-size: 24px;
  color: var(--green);
  margin-bottom: 12px;
  font-weight: 500;
}
.thank-you-msg p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.calendar-placeholder {
  margin-top: 48px;
  padding: 24px;
  border: 1px dashed var(--border);
  border-radius: 3px;
  text-align: center;
}
.calendar-placeholder p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Footer ── */
.footer {
  padding: 56px var(--side-pad) 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  display: block;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--accent); font-weight: 500; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-col a, .footer-col p {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom span { font-size: 12px; color: var(--text-muted); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4); }
.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ── Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr; }
  .cost-block { padding: 32px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card--featured { grid-column: span 1; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .segment-grid { grid-template-columns: 1fr; }
  .possible-item { padding: 20px 16px; }
}

/* ── Segment Selector ── */
.segment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.segment-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.segment-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}
.segment-icon {
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--accent);
}
.segment-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.segment-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.segment-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ── What Becomes Possible ── */
.section--possible {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(201,169,110,0.03) 50%, var(--bg) 100%);
}
.possible-list {
  max-width: 720px;
  margin: 0 auto;
}
.possible-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.possible-item:last-child {
  border-bottom: none;
}
.possible-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--accent-subtle);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.possible-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
.possible-item p em {
  color: var(--text-secondary);
  font-style: italic;
  font-size: 13px;
}
.possible-item p strong {
  color: var(--accent);
}
.possible-closing {
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  margin-top: 40px;
  opacity: 0.9;
}

/* ── Pricing Anchor ── */
.pricing-anchor {
  text-align: center;
  font-size: 14px;
  line-height: 1.7;
  color: var(--accent);
  max-width: 640px;
  margin: -20px auto 40px;
  padding: 20px 28px;
  background: var(--accent-subtle);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
}

/* ──────────────────────────────────────────
   Language picker modal — first-visit only
   Stays out of the way once user has chosen.
   ────────────────────────────────────────── */
.lang-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lang-modal.open { display: flex; }
.lang-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,9,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  animation: langModalFade 0.4s ease;
}
.lang-modal-card {
  position: relative; max-width: 620px; width: 100%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 14px;
  padding: 56px 44px 36px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,169,110,0.04);
  animation: langModalRise 0.5s cubic-bezier(.2,.7,.2,1);
}
.lang-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  font-size: 22px; line-height: 1; color: var(--text-secondary);
  cursor: pointer; border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.lang-modal-close:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.lang-modal-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; font-weight: 500;
}
.lang-modal-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3.4vw, 32px);
  line-height: 1.25; color: var(--white); margin-bottom: 36px;
}
.lang-modal-title span { display: block; }
.lang-modal-title span + span {
  font-size: 0.78em; font-style: italic; color: var(--text-secondary);
  margin-top: 6px;
}
.lang-modal-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 28px;
}
.lang-option {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 28px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  font-family: var(--font-body); color: var(--text);
}
.lang-option:hover {
  border-color: var(--accent); background: var(--accent-subtle);
  transform: translateY(-2px);
}
.lang-option-flag {
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: 0.25em; color: var(--accent);
  padding: 6px 12px; border: 1px solid rgba(201,169,110,0.4);
  border-radius: 3px;
}
.lang-option-primary {
  font-family: var(--font-display); font-size: 19px; font-weight: 400;
  color: var(--white); margin-top: 6px;
}
.lang-option-secondary {
  font-size: 12px; font-style: italic; color: var(--text-muted);
}
.lang-modal-foot {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
}
@keyframes langModalFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes langModalRise {
  from { opacity: 0; transform: translateY(20px) scale(0.96) }
  to   { opacity: 1; transform: translateY(0) scale(1) }
}
@media (max-width: 540px) {
  .lang-modal-card { padding: 48px 24px 28px; }
  .lang-modal-options { grid-template-columns: 1fr; }
  .lang-option { padding: 22px 16px; }
}

/* ──────────────────────────────────────────
   Portfolio "Coming Soon" overlay (Matter card)
   ────────────────────────────────────────── */
/* Matter card uses <a href="#"> with role=button so it inherits the
   exact same layout as every other working portfolio-card (Tulum Stays,
   Supreme Transfers, Casa Serena). No button-reset CSS — the <button>
   element was centering its content vertically and leaving a gap above
   the video. <a> doesn't do that. */
.portfolio-card--comingsoon .portfolio-card-img video {
  filter: saturate(0.55) brightness(0.55);
  transition: filter 0.4s ease;
}
.portfolio-card--comingsoon:hover .portfolio-card-img video {
  filter: saturate(0.7) brightness(0.7);
}
.portfolio-card-comingsoon {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(10,10,11,0.35) 0%, rgba(10,10,11,0.55) 100%);
  pointer-events: none;
}
.portfolio-card-comingsoon-label {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(22px, 3vw, 32px); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white);
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 4px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  background: rgba(10,10,11,0.18);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* ──────────────────────────────────────────
   Matter card modal — sells the custom-build process
   ────────────────────────────────────────── */
.matter-modal {
  position: fixed; inset: 0; z-index: 9998;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.matter-modal.open { display: flex; }
.matter-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(8,8,9,0.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  animation: langModalFade 0.4s ease;
}
.matter-modal-card {
  position: relative; max-width: 680px; width: 100%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid rgba(201,169,110,0.22);
  border-radius: 14px;
  padding: 44px 40px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.04);
  animation: langModalRise 0.5s cubic-bezier(.2,.7,.2,1);
  max-height: 92vh; overflow-y: auto;
  /* Hide the visible scrollbar — desktop fits without scrolling, tiny
     viewports can still scroll as a safety net but the bar never paints. */
  scrollbar-width: none; -ms-overflow-style: none;
}
.matter-modal-card::-webkit-scrollbar { display: none; width: 0; height: 0; }
.matter-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  font-size: 22px; line-height: 1; color: var(--text-secondary);
  cursor: pointer; border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.matter-modal-close:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.matter-modal-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; font-weight: 500;
}
.matter-modal-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.2; color: var(--white);
  margin-bottom: 18px; max-width: 540px;
}
.matter-modal-body {
  font-size: 14.5px; line-height: 1.65; color: var(--text);
  margin-bottom: 22px;
}
/* Inline highlights inside the body — % numbers + key phrases pop in
   gold so the data-driven points are scannable at a glance. */
.matter-hl {
  color: var(--accent); font-weight: 600;
}
.matter-modal-pillars {
  list-style: none; margin: 0 0 22px; padding: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.matter-modal-pillars li {
  padding: 12px 0;
  font-size: 13.5px; line-height: 1.55; color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.matter-modal-pillars li:last-child { border-bottom: 0; }
/* Pillar titles: same body font as the rest of the modal (no serif
   switch — keeps reading rhythm consistent), gold + bold so they
   anchor each row visually. */
.matter-modal-pillars li span:first-child {
  font-family: inherit; font-weight: 600;
  color: var(--accent); margin-right: 6px;
}
.matter-modal-cta {
  display: inline-block; width: 100%;
  padding: 16px 28px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em;
  text-align: center; text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s, transform 0.25s;
}
.matter-modal-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.matter-modal-foot {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.04em; text-align: center;
  margin-top: 16px;
}
@media (max-width: 540px) {
  .matter-modal-card { padding: 48px 24px 28px; }
  .matter-modal-title { font-size: 24px; }
  .matter-modal-body { font-size: 14px; }
}
