/* ============================================
   REVITA CLINIC — Estetica, Pilates e Fisioterapia
   ============================================ */

:root {
  --bg-primary: #F7F1EA;
  --bg-secondary: #EFE4DA;
  --text-primary: #1C1714;
  --text-secondary: #6F625A;
  --gold: #C8A96A;
  --gold-soft: #D9BE87;
  --brown: #3B2D26;
  --white-warm: #FFFDF9;
  --border-soft: #DED0C3;
  --shadow-soft: 0 1px 2px rgba(28, 23, 20, 0.04), 0 8px 32px rgba(28, 23, 20, 0.06);
  --shadow-elev: 0 1px 2px rgba(28, 23, 20, 0.04), 0 24px 60px rgba(59, 45, 38, 0.12);
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Inter', -apple-system, system-ui, sans-serif;
  --container: 1280px;
  --section-y: clamp(80px, 10vw, 140px);
}

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

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

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--white-warm); }

/* Scrollbar refinement */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-soft); border-radius: 999px; }

/* Reusable */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 22px; } }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.h-display {
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
}

.h-section {
  font-family: var(--serif);
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  font-weight: 400;
  margin: 0;
}

.body-lead {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
}

.italic-accent { font-style: italic; color: var(--brown); font-family: var(--serif); }

/* React Bits BlurText adaptation */
.blur-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  min-width: 0;
}
.blur-text-segment {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-50px);
  will-change: transform, filter, opacity;
}
.blur-text-bottom .blur-text-segment { transform: translateY(50px); }
.blur-text.is-in .blur-text-segment {
  animation: blurTextIn var(--blur-duration, 0.35s) cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.blur-text-bottom.is-in .blur-text-segment { animation-name: blurTextInBottom; }

@keyframes blurTextIn {
  0% { filter: blur(10px); opacity: 0; transform: translateY(-50px); }
  55% { filter: blur(5px); opacity: 0.5; transform: translateY(5px); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}
@keyframes blurTextInBottom {
  0% { filter: blur(10px); opacity: 0; transform: translateY(50px); }
  55% { filter: blur(5px); opacity: 0.5; transform: translateY(-5px); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}

.manifesto-inner > .blur-text,
.services-head .blur-text,
.exp-head .blur-text,
.journey-head .blur-text,
.final-cta-inner > .blur-text {
  justify-content: center;
}
.pillars-head .h-section,
.founder-content .h-section,
.prof-head .h-section {
  margin-top: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--brown);
  color: var(--white-warm);
}
.btn-primary:hover {
  background: #2a1f19;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(59, 45, 38, 0.25);
}
.btn-primary .arrow { transition: transform 0.4s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-soft);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--brown);
  background: var(--white-warm);
}

.btn-gold {
  background: var(--gold);
  color: var(--white-warm);
}
.btn-gold:hover {
  background: #b89554;
  transform: translateY(-2px);
}

/* Badge pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 253, 249, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Reveal animation utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.18s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.32s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.45s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.58s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.7s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .blur-text-segment { opacity: 1; filter: none; transform: none; animation: none !important; }
  .hero h1 .word,
  .hero-sub,
  .hero-cta,
  .hero-microcopy,
  .hero-floating-card,
  .pill { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hero-visual img { animation: none !important; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 22px 0;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(247, 241, 234, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 208, 195, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-primary);
}
.brand-mark {
  width: 118px;
  height: 52px;
  border-radius: 0;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-left: -2px;
}
.brand-name .name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.brand-name .tagline {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

@media (max-width: 520px) {
  .brand-mark { width: 104px; height: 46px; }
  .brand-name { display: none; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav a {
  font-size: 13px;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav a:hover { color: var(--brown); }
.nav a:hover::after { width: 100%; }

.header-cta {
  padding: 12px 22px;
  font-size: 11px;
  background: var(--brown);
  color: var(--white-warm);
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.header-cta:hover { background: var(--gold); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-soft);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text-primary);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: '';
  position: absolute;
  left: 0; width: 18px; height: 1px;
  background: var(--text-primary);
  transition: transform 0.4s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-primary);
  z-index: 80;
  padding: 110px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.7, 0, 0.3, 1);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.hero-content { max-width: 620px; }
.hero h1 {
  margin-top: 28px;
  margin-bottom: 28px;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  animation: heroWord 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 .word.gold { color: var(--gold); font-style: italic; }
@keyframes heroWord {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 0 36px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-microcopy span::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-elev);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
  animation: heroParallax 18s ease-in-out infinite alternate;
}
@keyframes heroParallax {
  0% { transform: scale(1.05) translateY(0); }
  100% { transform: scale(1.12) translateY(-2%); }
}

.hero-ornament {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  pointer-events: none;
  animation: floatOrn 12s ease-in-out infinite;
}
.hero-ornament.two {
  top: auto; right: auto;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  opacity: 0.18;
  animation-delay: -6s;
}
@keyframes floatOrn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

.hero-floating-card {
  position: absolute;
  bottom: 32px;
  left: -40px;
  background: var(--white-warm);
  padding: 18px 22px;
  border-radius: 4px;
  box-shadow: var(--shadow-elev);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
  animation: floatIn 1.6s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-floating-card .icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: grid; place-items: center;
  color: var(--brown);
  flex-shrink: 0;
}
.hero-floating-card .text {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-primary);
}
.hero-floating-card .text strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

@media (max-width: 980px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-floating-card { left: 16px; bottom: 16px; }
  .hero-ornament { width: 140px; height: 140px; }
  .hero-ornament.two { width: 200px; height: 200px; }
}

/* ============================================
   MANIFESTO
   ============================================ */
.manifesto {
  padding: var(--section-y) 0;
  background: var(--white-warm);
  position: relative;
  overflow: hidden;
}
.manifesto-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.manifesto h2 { margin-top: 32px; margin-bottom: 48px; }
.manifesto-text {
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 56px;
  text-wrap: pretty;
}
.manifesto-text p { margin: 0 0 22px; }
.manifesto-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.3;
  color: var(--brown);
  letter-spacing: -0.01em;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-top: 48px;
}
.manifesto-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 28px;
  background: var(--gold);
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  width: fit-content;
}
.divider-ornament .line {
  width: 60px; height: 1px;
  background: var(--gold);
}
.divider-ornament .diamond {
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============================================
   PILLARS
   ============================================ */
.pillars {
  padding: var(--section-y) 0;
}
.pillars-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.pillars-head .body-lead { max-width: 460px; }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar-card {
  background: var(--white-warm);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 36px 28px 32px;
  transition: all 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  cursor: default;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-elev);
}
.pillar-card .number {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.pillar-card .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  color: var(--brown);
  margin-bottom: 32px;
}
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.pillar-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 980px) {
  .pillars-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICES (Tabs/Accordion)
   ============================================ */
.services {
  padding: var(--section-y) 0;
  background: var(--bg-secondary);
}
.services-head {
  max-width: 820px;
  margin: 0 auto 72px;
  text-align: center;
}
.services-head h2 { margin: 24px 0 24px; }
.services-head .body-lead { margin: 0 auto; max-width: 640px; }

.services-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.tabs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--border-soft);
}
.tab-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--text-secondary);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.4s ease;
  letter-spacing: -0.01em;
  font-weight: 400;
  position: relative;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active {
  color: var(--brown);
  border-left-color: var(--gold);
  font-weight: 500;
}
.tab-btn .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-right: 12px;
  font-style: italic;
}

.tab-panel {
  background: var(--white-warm);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 56px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}
.tab-panel-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  animation: panelFade 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-panel h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  margin: 12px 0 20px;
  letter-spacing: -0.012em;
  line-height: 1.1;
}
.tab-panel .panel-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 0 36px;
}
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 36px;
  border-top: 1px solid var(--border-soft);
}
.services-list li {
  list-style: none;
  padding: 16px 0;
  font-size: 14.5px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.01em;
}
.services-list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Mobile accordion */
.accordion-item {
  background: var(--white-warm);
  border: 1px solid var(--border-soft);
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 4px;
}
.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--serif);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-weight: 400;
}
.accordion-header .plus {
  width: 24px; height: 24px;
  position: relative;
  flex-shrink: 0;
}
.accordion-header .plus::before, .accordion-header .plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.accordion-header .plus::before { width: 14px; height: 1px; }
.accordion-header .plus::after { width: 1px; height: 14px; transition: transform 0.4s ease; }
.accordion-item.is-open .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.accordion-item.is-open .accordion-body { max-height: 1200px; }
.accordion-content { padding: 0 24px 24px; }

@media (max-width: 980px) {
  .services-layout.desktop { display: none; }
  .services-layout.mobile { display: block; }
}
@media (min-width: 981px) {
  .services-layout.mobile { display: none; }
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  padding: var(--section-y) 0;
  position: relative;
}
.exp-head {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}
.exp-head h2 { margin: 24px 0 24px; }

.exp-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}
.exp-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-elev);
}
.exp-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.exp-cards {
  display: grid;
  gap: 20px;
  margin-left: -60px;
  align-self: center;
  position: relative;
  z-index: 2;
}
.exp-card {
  background: var(--white-warm);
  padding: 28px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid var(--border-soft);
  transition: all 0.4s ease;
}
.exp-card:hover {
  transform: translateX(6px);
  border-color: var(--gold);
}
.exp-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.exp-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.exp-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px) {
  .exp-layout { grid-template-columns: 1fr; gap: 32px; }
  .exp-cards { margin-left: 0; }
}

/* ============================================
   FOUNDER VISION
   ============================================ */
.founder {
  padding: var(--section-y) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.founder-image {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-elev);
  position: sticky;
  top: 100px;
}
.founder-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.founder-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--gold);
}
.founder-image-tag .role {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.founder-image-tag .name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brown);
  letter-spacing: -0.005em;
  line-height: 1.1;
}
.founder-content { padding-top: 8px; }
.founder-text {
  margin-top: 32px;
  margin-bottom: 36px;
}
.founder-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 18px;
  max-width: 600px;
  text-wrap: pretty;
}
.founder-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.35;
  color: var(--brown);
  margin: 36px 0 48px;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  max-width: 580px;
}
.founder-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.founder-card {
  background: var(--white-warm);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  padding: 22px 22px 20px;
  transition: all 0.4s ease;
}
.founder-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.founder-card-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.founder-card h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  margin: 8px 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.founder-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 980px) {
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-image { position: relative; top: auto; aspect-ratio: 1/1; }
  .founder-cards { grid-template-columns: 1fr; }
}

/* ============================================
   TECHNOLOGY (Dark)
   ============================================ */
.tech {
  background: var(--brown);
  color: var(--white-warm);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(200, 169, 106, 0.08), transparent 60%);
  pointer-events: none;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.tech .eyebrow { color: var(--gold); }
.tech .eyebrow::before { background: var(--gold); }
.tech h2 {
  margin: 28px 0 32px;
  color: var(--white-warm);
}
.tech p {
  color: rgba(255, 253, 249, 0.75);
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 0 20px;
}
.tech-quote {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(200, 169, 106, 0.3);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--gold);
  max-width: 540px;
}
.tech-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.tech-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.95) saturate(0.95);
}
.tech-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, transparent 60%, rgba(59, 45, 38, 0.4));
  pointer-events: none;
}
.tech-corner {
  position: absolute;
  top: 18px; right: 18px;
  width: 60px; height: 60px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
  z-index: 1;
}
.tech-corner.bl {
  top: auto; right: auto;
  bottom: 18px; left: 18px;
  border-top: none; border-right: none;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

@media (max-width: 980px) {
  .tech-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   JOURNEY
   ============================================ */
.journey {
  padding: var(--section-y) 0;
  background: var(--white-warm);
}
.journey-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}
.journey-head h2 { margin: 24px 0 0; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border-soft);
  z-index: 0;
}
.timeline-progress {
  position: absolute;
  top: 28px;
  left: 8%;
  height: 1px;
  background: var(--gold);
  width: 0;
  transition: width 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.timeline.is-in .timeline-progress { width: 84%; }

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
}
.timeline-step .marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white-warm);
  border: 1px solid var(--border-soft);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
  transition: all 0.5s ease;
}
.timeline.is-in .timeline-step:nth-child(2) .marker { transition-delay: 0.2s; border-color: var(--gold); background: var(--bg-primary); }
.timeline.is-in .timeline-step:nth-child(3) .marker { transition-delay: 0.5s; border-color: var(--gold); background: var(--bg-primary); }
.timeline.is-in .timeline-step:nth-child(4) .marker { transition-delay: 0.8s; border-color: var(--gold); background: var(--bg-primary); }
.timeline.is-in .timeline-step:nth-child(5) .marker { transition-delay: 1.1s; border-color: var(--gold); background: var(--bg-primary); }

.timeline-step h4 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.timeline-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}

@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline::before { left: 27px; right: auto; top: 0; bottom: 0; width: 1px; height: auto; }
  .timeline-progress { left: 27px; top: 0; width: 1px; height: 0; transition: height 1.6s ease; }
  .timeline.is-in .timeline-progress { width: 1px; height: 84%; }
  .timeline-step { display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 20px; text-align: left; align-items: start; min-width: 0; }
  .timeline-step .marker { margin: 0; }
  .timeline-step-body { min-width: 0; }
  .timeline-step h4 { font-size: 20px; margin-top: 8px; }
  .timeline-step p { font-size: 14px; line-height: 1.6; max-width: none; }
}

/* ============================================
   PROFESSIONALS
   ============================================ */
.professionals {
  padding: var(--section-y) 0;
}
.prof-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.prof-head .body-lead { max-width: 480px; }
.prof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.prof-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-secondary);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}
.prof-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.prof-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 23, 20, 0.78) 0%, rgba(28, 23, 20, 0.35) 35%, transparent 60%);
  pointer-events: none;
}
.prof-card .label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 26px 26px;
  color: var(--white-warm);
  z-index: 2;
}
.prof-card .label .role {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.prof-card .label .title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.prof-card:hover {
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(59, 45, 38, 0.18);
}
.prof-card:hover .prof-card-img { transform: scale(1.04); }

.prof-cta { text-align: center; }

@media (max-width: 980px) {
  .prof-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .prof-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: var(--section-y) 0;
  background: var(--bg-secondary);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.location-info { padding: 40px 0; display: flex; flex-direction: column; justify-content: center; }
.location-info h2 { margin: 24px 0 24px; }
.location-info > p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 36px;
  max-width: 500px;
}
.address-card {
  padding: 28px 32px;
  background: var(--white-warm);
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  margin-bottom: 24px;
}
.address-card .label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.address-card .addr {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.address-card .hours {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.address-card .hours::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.location-buttons { display: flex; flex-wrap: wrap; gap: 12px; }

.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  min-height: 480px;
  background: var(--bg-primary);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 480px; }

@media (max-width: 980px) {
  .location-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.final-cta h2 {
  margin: 24px 0 24px;
}
.final-cta p {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 40px;
}
.final-cta .microcopy {
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  letter-spacing: 0.01em;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brown);
  color: rgba(255, 253, 249, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
}
.footer-brand .brand-name .name { color: var(--white-warm); font-size: 24px; }
.footer-brand .brand-name .tagline { color: var(--gold); }
.footer-brand .brand-mark { background: var(--white-warm); }
.footer-brand p {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 12px;
}
.footer-col a {
  color: rgba(255, 253, 249, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(255, 253, 249, 0.5);
  line-height: 1.6;
}
.footer-bottom .legal { max-width: 720px; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
}
