/* ==========================================================================
   CUAN Arquitectura — Design system
   ========================================================================== */

@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../assets/fonts/PPNeueMontreal-Book.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../assets/fonts/PPNeueMontreal-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../assets/fonts/PPNeueMontreal-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --beige: #F5F0EA;
  --beige-deep: #EBE2D4;
  --green: #606856;
  --green-dark: #4A5142;
  --green-soft: #95968D;
  --beige-ink: #8C7B5E;
  --charcoal: #2C2A2B;
  --ink: #1B1A16;
  --white: #FFFFFF;
  --text: #26251F;
  --text-muted: #6B675E;
  --text-on-dark: #F5F0EA;
  --text-on-dark-muted: #B9B6AC;
  --line: rgba(27, 26, 22, 0.12);
  --line-on-dark: rgba(245, 240, 234, 0.16);

  --font-display: 'PP Neue Montreal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'PP Neue Montreal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1220px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px -25px rgba(27, 26, 22, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--beige);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 900px) {
  .container { padding: 0 48px; }
}

section { position: relative; }
.section-pad { padding: 88px 0; }
.section-pad--sm { padding: 56px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
  .section-pad--sm { padding: 40px 0; }
}

.bg-beige { background: var(--beige); }
.bg-beige-deep { background: var(--beige-deep); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--ink); color: var(--text-on-dark); }
.bg-green { background: var(--green); color: var(--text-on-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
}
h1 { font-weight: 400; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}
.bg-dark .eyebrow, .bg-green .eyebrow, .hero .eyebrow, .booking-hero .eyebrow { color: var(--beige-deep); }
.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.h-xl { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.h-lg { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.h-md { font-size: clamp(1.4rem, 2vw, 1.7rem); }

.accent-text { color: var(--beige-ink); }
.hero .accent-text, .bg-dark .accent-text, .bg-green .accent-text, .booking-hero .accent-text { color: #8FA073; }

.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-muted);
  max-width: 46em;
}
.bg-dark .lede, .bg-green .lede, .hero .lede, .booking-hero .lede { color: var(--text-on-dark-muted); }

.section-head {
  max-width: 720px;
  margin-bottom: 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--green); color: var(--beige); }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { background: var(--beige); color: var(--ink); }
.btn-light:hover { background: var(--white); }
.btn-outline { background: transparent; border-color: var(--line); color: var(--text); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.bg-dark .btn-outline, .bg-green .btn-outline, .hero .btn-outline, .booking-hero .btn-outline {
  border-color: var(--line-on-dark); color: var(--text-on-dark);
}
.bg-dark .btn-outline:hover, .bg-green .btn-outline:hover, .hero .btn-outline:hover, .booking-hero .btn-outline:hover {
  border-color: var(--beige); color: var(--beige);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(245, 240, 234, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}
.logo-mark { display: block; height: 20px; width: auto; }
.site-header.on-dark .logo,
.site-header.on-dark:not(.is-scrolled) .logo { color: var(--beige); }
.site-header.is-scrolled .logo { color: var(--ink); }

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
  background: rgba(27,26,22,0.05);
  padding: 6px;
  border-radius: 100px;
}
.site-header.is-scrolled .nav-links { background: rgba(27,26,22,0.06); }
.nav-links a {
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.site-header.on-dark:not(.is-scrolled) .nav-links { background: rgba(245,240,234,0.1); }
.site-header.on-dark:not(.is-scrolled) .nav-links a { color: var(--beige); }
.nav-links a:hover { background: rgba(27,26,22,0.08); }
.site-header.on-dark:not(.is-scrolled) .nav-links a:hover { background: rgba(245,240,234,0.16); }
.nav-links a.is-active,
.mobile-menu nav a.is-active {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.site-header.on-dark:not(.is-scrolled) .nav-links a.is-active { text-decoration-color: #8FA073; }

.header-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.site-header.on-dark:not(.is-scrolled) .nav-toggle { border-color: var(--line-on-dark); color: var(--beige); }

@media (min-width: 980px) {
  .nav-links { display: inline-flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--beige);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 40px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-top .logo { color: var(--beige); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 6px; margin-top: 48px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 30px; padding: 10px 0; border-bottom: 1px solid var(--line-on-dark); }
.mobile-menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.mobile-menu-foot .btn { width: 100%; }
@media (min-width: 980px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  padding: 150px 0 80px;
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
  position: relative;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  background: rgba(245,240,234,0.08);
  border: 1px solid var(--line-on-dark);
  font-size: 13px;
  margin-bottom: 28px;
}
.hero-badge b {
  background: var(--green);
  color: var(--beige);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-display);
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.hero h1 { max-width: 15em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-video-wrap { display: flex; justify-content: center; }

/* Shared base for any vertical video card with a custom play button (hero, testimonials) */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}
.video-card video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.video-card .media-caption {
  position: absolute; left: 16px; top: 16px; right: 16px;
  color: var(--white);
  font-size: 12.5px;
  background: rgba(27,26,22,0.55);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 100px;
  pointer-events: none;
  text-align: center;
  transition: opacity .25s var(--ease);
}
.video-card.is-playing .media-caption { opacity: 0; }

.video-card .video-play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px;
  border-radius: 100%;
  background: rgba(245,240,234,0.92);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.45);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.video-card .video-play-btn:hover { transform: scale(1.08); }
.video-card .video-play-btn svg { margin-left: 4px; }
.video-card.is-playing .video-play-btn { opacity: 0; pointer-events: none; }

.hero-video-card { width: min(100%, 320px); aspect-ratio: 9/16; }

@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; padding: 48px; }
  .hero-video-wrap { justify-content: flex-end; }
  .hero-video-card { width: min(100%, 300px); }
}
@media (max-width: 720px) {
  .hero { padding-top: 120px; }
  .hero-video-wrap { margin-top: 40px; }
  .hero-grid > div:first-child { text-align: center; }
  .hero-badge, .hero-actions { justify-content: center; }
}

/* ---------- Texture placeholders (in lieu of un-licensed stock photography) ---------- */
.texture {
  position: relative;
  background: linear-gradient(155deg, var(--beige-deep), var(--beige) 60%);
  overflow: hidden;
}
.texture--dark { background: linear-gradient(155deg, #33322f, var(--ink) 65%); }
.texture--green { background: linear-gradient(155deg, #6d7460, var(--green) 65%); }
.texture svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }
.texture .texture-label {
  position: absolute; left: 20px; bottom: 18px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.texture--dark .texture-label, .texture--green .texture-label { color: var(--text-on-dark-muted); }

/* ---------- Photo tint (subtle green wash for visual consistency across photos) ---------- */
.photo-tint { position: relative; }
.photo-tint::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  opacity: 0.35;
  pointer-events: none;
}

/* ---------- Callout card ---------- */
.callout-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px clamp(20px, 4vw, 48px);
  text-align: center;
}
.callout-card p { margin: 0 auto; max-width: 40em; }
.callout-card .lede { margin: 14px auto 0; }

/* ---------- Result / Experience cards ---------- */
.two-col-cards { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 780px) { .two-col-cards { grid-template-columns: 1fr 1fr; } }
.result-card {
  background: var(--charcoal);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.result-card .tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--beige-deep);
  border: 1px solid var(--line-on-dark);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.result-card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.result-card p { color: var(--text-on-dark-muted); margin: 0; }

/* ---------- Method / process ---------- */
.method-list { display: grid; gap: 18px; margin-top: 44px; }
@media (min-width: 860px) { .method-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .method-list.method-list-3col { grid-template-columns: repeat(3, 1fr); } }
.method-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  position: relative;
}
.method-step .num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--green-soft);
  letter-spacing: 0.1em;
}
.method-step .icon {
  width: 46px; height: 46px;
  border-radius: 100%;
  background: var(--beige-deep);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 14px 0 18px;
}
.method-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.method-step p { color: var(--text-muted); margin: 0; font-size: 0.98rem; }

.method-step--visual { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.method-step--visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.method-step--visual .method-step-body { padding: 24px 28px 28px; }
.method-step--visual .num { display: block; margin-bottom: 6px; }
.method-step--visual h3 { font-size: 1.05rem; margin-bottom: 6px; }
.method-step--visual p { font-size: 0.9rem; }

/* ---------- Comparison ---------- */
.compare-wrap {
  margin-top: 44px;
  display: grid;
  gap: 20px;
}
@media (min-width: 860px) { .compare-wrap { grid-template-columns: 1fr 1fr; } }
.compare-col {
  border-radius: var(--radius-lg);
  padding: 34px clamp(22px, 3vw, 38px);
}
.compare-col.neg { background: var(--white); border: 1px solid var(--line); }
.compare-col.pos { background: var(--green); color: var(--text-on-dark); }
.compare-col h3 { font-size: 1.1rem; margin-bottom: 22px; }
.compare-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  font-size: 0.98rem;
}
.compare-col.neg li { border-top: 1px solid var(--line); }
.compare-col.neg li:first-child { border-top: none; }
.compare-col.pos li { border-top: 1px solid var(--line-on-dark); }
.compare-col.pos li:first-child { border-top: none; }
.compare-col .mark { flex: none; font-size: 15px; line-height: 1.5; }
.compare-col.neg .mark { color: var(--ink); opacity: 0.55; }
.compare-col.pos .mark { color: var(--beige); }

/* ---------- Stats ---------- */
.stat-bar {
  display: grid;
  gap: 32px;
  text-align: center;
}
@media (min-width: 760px) { .stat-bar { grid-template-columns: repeat(3, 1fr); } }
.stat-bar .stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--ink);
}
.bg-dark .stat-bar .stat b, .bg-green .stat-bar .stat b { color: var(--white); }
.stat-bar .stat p { margin: 6px 0 0; color: var(--text-muted); font-size: 0.95rem; }
.bg-dark .stat-bar .stat p, .bg-green .stat-bar .stat p { color: var(--text-on-dark-muted); }
.stat-bar--compact { gap: 20px; }
.stat-bar--compact .stat b { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.stat-bar--compact .stat p { font-size: 0.85rem; }

/* ---------- Portfolio ---------- */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .2s var(--ease);
}
.filter-btn.is-active, .filter-btn:hover { background: var(--ink); color: var(--beige); border-color: var(--ink); }

.portfolio-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .portfolio-grid { grid-template-columns: repeat(4, 1fr); } }
.portfolio-item {
  grid-column: span 2;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}
.portfolio-item.wide { grid-column: span 2; }
@media (min-width: 760px) {
  .portfolio-item.lg { grid-column: span 2; aspect-ratio: 8/6; }
  .portfolio-item.sm { grid-column: span 2; aspect-ratio: 8/9; }
}
.portfolio-item img, .portfolio-item .texture { width: 100%; height: 100%; }
.portfolio-item img { object-fit: cover; transition: transform .6s var(--ease); }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item .item-tag {
  position: absolute; left: 16px; bottom: 16px;
  color: var(--white);
  font-size: 13px;
  background: rgba(27,26,22,0.55);
  backdrop-filter: blur(6px);
  padding: 7px 14px;
  border-radius: 100px;
}
.portfolio-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- Full projects page ---------- */
.project-block { scroll-margin-top: 110px; }
.project-block + .project-block { margin-top: 80px; padding-top: 80px; border-top: 1px solid var(--line); }
.project-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}
.project-head h2 { font-size: 1.7rem; }
.project-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--beige-deep);
  padding: 7px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.project-desc { color: var(--text-muted); max-width: 60em; margin-bottom: 32px; }
.project-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 700px) { .project-photos { grid-template-columns: repeat(3, 1fr); } }
.project-photos .photo-slot {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.project-photos .photo-slot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.project-photos .photo-slot:has(img):hover img { transform: scale(1.05); }
.project-photos .photo-slot img[data-lightbox] { cursor: zoom-in; }

/* Before/after drag-to-compare slider */
.ba-slider {
  margin-top: 44px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow);
  cursor: ew-resize;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: var(--beige);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(27,26,22,0.2);
  pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  width: 46px; height: 46px;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background: var(--beige);
  color: var(--ink);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.45);
  pointer-events: none;
}
.ba-label {
  position: absolute; top: 16px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
  background: rgba(27,26,22,0.6);
  padding: 6px 12px; border-radius: 100px;
  pointer-events: none;
}
.ba-label-left { left: 16px; }
.ba-label-right { right: 16px; }
@media (max-width: 620px) { .ba-slider { aspect-ratio: 3/4; } }

/* ---------- Team ---------- */
.team-lead {
  display: grid;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}
@media (min-width: 860px) { .team-lead { grid-template-columns: 1.1fr 1fr; gap: 56px; } }
.team-lead img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: 50% 20%; }
.team-lead p { color: var(--text-muted); }

.team-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { text-align: center; }
.team-avatar {
  aspect-ratio: 1;
  border-radius: 100%;
  background: var(--green);
  color: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.team-card:nth-child(4n+2) .team-avatar { background: var(--ink); }
.team-card:nth-child(4n+3) .team-avatar { background: var(--green-soft); color: var(--ink); }
.team-card:nth-child(4n+4) .team-avatar { background: var(--beige-deep); color: var(--ink); }
.team-avatar.has-photo { position: relative; background: none; overflow: hidden; }
.team-avatar.has-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card h4 { font-size: 1rem; font-weight: 600; font-family: var(--font-body); margin-bottom: 2px; }
.team-card p { font-size: 0.86rem; color: var(--text-muted); margin: 0; }

/* ---------- Featured video testimonials ---------- */
.video-testi-intro { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.video-testi-grid {
  display: grid;
  gap: 28px;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 640px) { .video-testi-grid { grid-template-columns: 1fr 1fr; } }
.video-testi-card {
  aspect-ratio: 9/16;
  border: 3px solid var(--green);
}
.video-testi-card .featured-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--green);
  color: var(--beige);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}
.video-testi-name {
  text-align: center;
  margin-top: 14px;
}
.video-testi-name b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.video-testi-name .stars { color: var(--green); font-size: 13px; margin-top: 2px; display: inline-block; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 820px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-card .stars { color: var(--green); letter-spacing: 2px; font-size: 14px; }
.testi-card blockquote { margin: 0; font-size: 1.02rem; color: var(--text); flex: 1; }
.testi-card footer { display: flex; align-items: center; gap: 12px; }
.testi-card .avatar {
  width: 40px; height: 40px; border-radius: 100%;
  background: var(--beige-deep);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px;
}
.testi-card .who { font-size: 0.88rem; }
.testi-card .who b { display: block; font-family: var(--font-body); font-weight: 600; color: var(--text); }
.testi-card .who span { color: var(--text-muted); }
.testi-placeholder-note { margin-top: 22px; font-size: 13px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
}
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p { margin: 0 0 24px; color: var(--text-muted); max-width: 62em; padding-right: 40px; }

/* ---------- Booking / Agendar ---------- */
.booking-hero {
  padding: 150px 0 100px;
  background: var(--ink);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.booking-hero::after {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(55% 60% at 15% 10%, rgba(96,104,86,0.5), transparent 70%);
}
.booking-grid {
  position: relative; z-index: 1;
  display: grid;
  gap: 40px;
}
@media (min-width: 940px) { .booking-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: start; } }

.booking-copy .highlight { color: var(--beige); background: linear-gradient(transparent 62%, rgba(96,104,86,0.55) 0); }

.booking-checklist { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.booking-checklist li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.booking-checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 100%;
  background: var(--green);
  color: var(--beige);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

.booking-card {
  background: var(--beige);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.booking-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.booking-card .lede { margin-bottom: 26px; font-size: 0.98rem; }

.trust-row {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.trust-row .item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-on-dark-muted); }
.trust-row .item b { color: var(--beige); font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; }

/* ---------- Contact strip ---------- */
.contact-strip {
  display: grid;
  gap: 24px;
  margin-top: 44px;
}
@media (min-width: 760px) { .contact-strip { grid-template-columns: repeat(3, 1fr); } }
.contact-strip .c-item {
  padding: 24px;
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
}
.contact-strip .c-item span { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-on-dark-muted); margin-bottom: 8px; }
.contact-strip .c-item a, .contact-strip .c-item p { margin: 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--beige); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark); padding: 64px 0 28px; }
.footer-top { display: grid; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-on-dark); }
@media (min-width: 860px) { .footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-top .logo { color: var(--beige); margin-bottom: 14px; display: inline-block; }
.footer-top p { color: var(--text-on-dark-muted); max-width: 32em; font-size: 0.95rem; }
.footer-col h5 { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-on-dark-muted); margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.95rem; color: var(--beige); transition: opacity .2s; }
.footer-col a:hover { opacity: 0.7; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: var(--text-on-dark-muted); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
}
.cta-band.bg-dark { background: var(--charcoal); }
.cta-band .btn { margin-top: 28px; }

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(27,26,22,0.92);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img { max-width: min(900px, 92vw); max-height: 82vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-overlay .lightbox-caption { position: absolute; left: 0; right: 0; bottom: 28px; text-align: center; color: var(--beige-deep); font-size: 14px; }
.lightbox-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 100%;
  background: rgba(245,240,234,0.1);
  border: 1px solid var(--line-on-dark);
  color: var(--beige);
  display: flex; align-items: center; justify-content: center;
}
[data-lightbox] { cursor: zoom-in; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  left: 10px; top: 0; bottom: 0;
  width: 3px;
  z-index: 150;
  pointer-events: none;
}
.scroll-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  box-shadow: 0 0 0 1px rgba(245, 240, 234, 0.45);
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

/* ---------- Reveal on scroll (progressive enhancement) ---------- */
/* Content stays fully visible unless JS confirms it can animate it in. */
html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
html.reveal-ready [data-reveal].is-visible { opacity: 1; transform: none; }

.two-col-cards [data-reveal]:nth-child(2),
.compare-wrap [data-reveal]:nth-child(2) { transition-delay: .12s; }
.method-list [data-reveal]:nth-child(2) { transition-delay: .08s; }
.method-list [data-reveal]:nth-child(3) { transition-delay: .16s; }
.method-list [data-reveal]:nth-child(4) { transition-delay: .24s; }
.team-grid [data-reveal]:nth-child(2) { transition-delay: .05s; }
.team-grid [data-reveal]:nth-child(3) { transition-delay: .1s; }
.team-grid [data-reveal]:nth-child(4) { transition-delay: .15s; }
.team-grid [data-reveal]:nth-child(5) { transition-delay: .2s; }
.team-grid [data-reveal]:nth-child(6) { transition-delay: .25s; }
.team-grid [data-reveal]:nth-child(7) { transition-delay: .3s; }
.team-grid [data-reveal]:nth-child(8) { transition-delay: .35s; }
.testi-grid [data-reveal]:nth-child(2),
.stat-bar [data-reveal]:nth-child(2),
.portfolio-grid [data-reveal]:nth-child(2) { transition-delay: .1s; }
.testi-grid [data-reveal]:nth-child(3),
.stat-bar [data-reveal]:nth-child(3),
.portfolio-grid [data-reveal]:nth-child(3) { transition-delay: .2s; }
.portfolio-grid [data-reveal]:nth-child(4) { transition-delay: .3s; }
.portfolio-grid [data-reveal]:nth-child(5) { transition-delay: .4s; }
.portfolio-grid [data-reveal]:nth-child(6) { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  html.reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Hero / booking-hero load-in (not scroll-tied) ---------- */
@keyframes fadeUpIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.hero-badge, .hero h1, .hero .lede, .hero-actions, .hero-video-wrap,
.booking-copy .eyebrow, .booking-copy h1, .booking-copy .lede, .booking-checklist, .booking-copy .trust-row {
  animation: fadeUpIn .9s var(--ease) both;
}
.hero-badge, .booking-copy .eyebrow { animation-delay: .05s; }
.hero h1, .booking-copy h1 { animation-delay: .15s; }
.hero .lede, .booking-copy .lede { animation-delay: .28s; }
.hero-video-wrap { animation-delay: .3s; }
.booking-checklist { animation-delay: .38s; }
.hero-actions { animation-delay: .4s; }
.booking-copy .trust-row { animation-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .hero-badge, .hero h1, .hero .lede, .hero-actions, .hero-video-wrap,
  .booking-copy .eyebrow, .booking-copy h1, .booking-copy .lede, .booking-checklist, .booking-copy .trust-row {
    animation: none;
  }
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--beige);
  padding: 12px 20px; border-radius: 0 0 10px 0; z-index: 999;
}
.skip-link:focus { left: 0; }
