/* ════════════════════════════════════════════════════════════
   Serra — Main Stylesheet
   ════════════════════════════════════════════════════════════ */

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3 { text-wrap: balance; }

/* ─── Layout ─── */
.section {
  background: #000;
  overflow: hidden;
}
.container {
  max-width: 72rem;
  margin: 0 auto;
}

/* ─── Performance: skip rendering of off-screen sections ───
   content-visibility:auto lets the browser skip layout, paint and
   backdrop-filter work for any section that is not currently in view.
   This is the single biggest lever for scroll smoothness here, because
   the liquid-glass elements (.lg) re-run their backdrop blur on every
   scroll frame — so keeping far-away sections off the compositor means
   only the handful of glass cards you can actually see are doing work.
   contain-intrinsic-size keeps the scrollbar/scrollHeight stable while
   a section is skipped, so anchor jumps and the lerp engine stay accurate.
   Pure performance — zero visual change. */
#about        { content-visibility: auto; contain-intrinsic-size: 350px; }
#featured     { content-visibility: auto; contain-intrinsic-size: 760px; }
#philosophy   { content-visibility: auto; contain-intrinsic-size: 900px; }
#services     { content-visibility: auto; contain-intrinsic-size: 760px; }
#testimonials { content-visibility: auto; contain-intrinsic-size: 860px; }
#faq          { content-visibility: auto; contain-intrinsic-size: 820px; }
#contact      { content-visibility: auto; contain-intrinsic-size: 900px; }
@media (prefers-reduced-data: reduce) {
  /* Conservative fallback: never skip content on metered connections. */
  #about, #featured, #philosophy, #services,
  #testimonials, #faq, #contact { content-visibility: visible; }
}

/* ─── Page-load curtain ─── */
#curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 1.15s cubic-bezier(.76, 0, .24, 1);
}
#curtain.lifted { transform: translateY(-100%); }
#curtain-wordmark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: rgba(205, 148, 72, 0.88);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  opacity: 0;
  animation: curtain-in 0.75s ease 0.25s both;
}
@keyframes curtain-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  #curtain { display: none !important; }
}

/* ─── Cursor glow ─── */
#cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 560px; height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
  background: radial-gradient(circle,
    rgba(200, 140, 65, 0.085) 0%,
    rgba(200, 140, 65, 0.032) 40%,
    transparent 70%);
}
#cursor-glow.active { opacity: 1; }
@media (hover: none) { #cursor-glow { display: none; } }

/* ─── Liquid glass ─── */
.lg {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 4px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.lg::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.18) 18%,
    rgba(255, 255, 255, 0.00) 38%,
    rgba(255, 255, 255, 0.00) 62%,
    rgba(255, 255, 255, 0.12) 82%,
    rgba(255, 255, 255, 0.40) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ─── Hero ─── */
.hero-section {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 1;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 2;
  opacity: 1;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,0,0,0.65) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 0%,  rgba(0,0,0,0.45) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 60%, rgba(0,0,0,0.3) 100%);
  pointer-events: none;
  z-index: 3;
}

/* ─── Navigation ─── */
.nav-bar {
  position: relative;
  z-index: 20;
  padding: 20px 24px;
}
.nav-inner {
  border-radius: 9999px;
  max-width: 64rem;
  margin: 0 auto;
  padding: 10px 20px 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}
.nav-wordmark {
  color: #fff;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  font-family: 'Instrument Serif', serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: #fff; }

/* ─── Hero content ─── */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 32px;
  text-align: center;
  transform: translateY(-15%);
}
.hero-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 28rem;
  margin-bottom: 2.25rem;
  letter-spacing: 0.01em;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-social {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding-bottom: 40px;
}

/* ─── Buttons ─── */
.btn-pill-hover { transition: background 0.2s ease; }
.btn-pill-hover:hover { background: rgba(255, 255, 255, 0.09) !important; }

/* ─── Scroll reveals ─── */
.js-ready .r-up    { opacity: 0; transform: translateY(28px); }
.js-ready .r-left  { opacity: 0; transform: translateX(-32px); }
.js-ready .r-right { opacity: 0; transform: translateX(32px); }
.r-up, .r-left, .r-right {
  transition:
    opacity   0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.revealed { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .r-up, .r-left, .r-right {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ─── Stagger delays ─── */
.d1  { transition-delay: 0.10s !important; }
.d15 { transition-delay: 0.15s !important; }
.d2  { transition-delay: 0.20s !important; }

/* ─── About ─── */
.about-section { padding: 10rem 24px 3rem; }
.about-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  color: #fff;
  line-height: 1.14;
  letter-spacing: -0.025em;
  font-weight: 400;
}

/* ─── Featured ─── */
.featured-section { padding: 3rem 24px 9rem; }
.featured-wrap {
  max-width: 72rem;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.featured-img-zone {
  position: absolute;
  inset: 0;
}
.featured-img-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.2) 45%, transparent 70%);
  pointer-events: none;
}
.featured-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 40px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.featured-card {
  border-radius: 18px;
  padding: 28px 32px;
  max-width: 26rem;
  flex-shrink: 1;
}
.featured-card-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 500;
}
.featured-card-body {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.72;
}
.featured-btn {
  border-radius: 9999px;
  padding: 11px 30px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}

/* ─── Philosophy ─── */
.philosophy-section { padding: 8rem 24px 8rem; }
.philosophy-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 5rem;
  font-weight: 400;
  line-height: 1.0;
}
.philo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 48.0625rem) {
  .philo-grid { align-items: center; }
}
.philo-img {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.philo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.philo-text { display: flex; flex-direction: column; gap: 0; padding-top: 0.5rem; }
.philo-paragraph {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 2.5rem;
}
.philo-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
}

/* ─── Services ─── */
.services-section { padding: 2rem 24px 9rem; }
.services-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.services-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3.375rem);
  color: #fff;
  letter-spacing: -0.025em;
  font-weight: 400;
}
.services-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-card { border-radius: 24px; overflow: hidden; }
.card-img-wrap { overflow: hidden; aspect-ratio: 16/9; position: relative; }
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent 60%);
  pointer-events: none;
}
.card-body { padding: 28px 30px 30px; }
.card-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.card-title {
  font-family: 'Instrument Serif', serif;
  color: #fff;
  font-size: 1.3125rem;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.3;
}
.card-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ─── Contact ─── */
.contact-section { padding: 4rem 24px 7rem; }
.contact-section-header { margin-bottom: 3.5rem; }
.contact-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 1.0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.5rem;
  align-items: stretch;
}
.contact-map-wrap {
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  position: relative;
}
.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%) brightness(0.9);
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-card {
  border-radius: 24px;
  padding: 32px 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 500;
}
.info-address {
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 1.175rem;
  line-height: 1.55;
  font-weight: 400;
}
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hours-day { color: rgba(255, 255, 255, 0.65); font-size: 0.875rem; }
.hours-time { color: #fff; font-size: 0.875rem; font-weight: 500; letter-spacing: 0.01em; }
.hours-closed { color: rgba(255, 255, 255, 0.35); font-size: 0.875rem; }
.contact-divider { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.07); }
.contact-links { display: flex; flex-direction: column; gap: 6px; }
.contact-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-link:hover { color: #fff; }
.contact-wolt {
  border-radius: 9999px;
  padding: 13px 24px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

/* ─── Footer ─── */
.site-footer {
  background: #000;
  padding: 2.5rem 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer-wordmark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.footer-disclaimer {
  color: rgba(255, 255, 255, 0.22);
  font-size: 0.75rem;
  line-height: 1.65;
  max-width: 38rem;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   MOBILE  (≤ 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 48rem) {
  .nav-links { display: none !important; }
  .nav-inner { padding: 8px 14px 8px 16px !important; }

  .hero-h1 {
    white-space: normal !important;
    font-size: clamp(2.6rem, 10.5vw, 4rem) !important;
    line-height: 1.08 !important;
  }
  .hero-body {
    transform: translateY(-6%) !important;
    padding: 32px 20px 20px !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 22rem;
  }
  .hero-ctas > a { justify-content: center !important; }

  .about-section  { padding: 5rem 20px 2rem !important; }
  .philosophy-section { padding: 4.5rem 20px 4.5rem !important; }
  .services-section { padding: 1.5rem 16px 5rem !important; }

  .featured-section { padding: 1.5rem 16px 5rem !important; }
  .featured-wrap {
    aspect-ratio: unset !important;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
    border-radius: 20px !important;
  }
  .featured-img-zone {
    position: relative !important;
    inset: auto !important;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
  }
  .featured-overlay {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px 20px 24px !important;
    gap: 14px !important;
    background: rgba(10, 6, 3, 0.85) !important;
    border-radius: 0 0 20px 20px;
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
  }
  .featured-card {
    max-width: none !important;
    width: 100%;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }
  .featured-card::before { display: none !important; }
  .featured-btn { align-self: flex-start !important; }

  .philo-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }
  .services-grid { grid-template-columns: 1fr !important; }

  .contact-section { padding: 3rem 16px 5rem !important; }
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .contact-map-wrap { min-height: 280px !important; aspect-ratio: unset !important; }
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-section { padding: 6rem 24px 7rem; }
.ts-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.ts-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 1.0;
}
.ts-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}
.ts-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

/* Carousel stage */
.ts-stage {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
.ts-viewport {
  position: relative;
  height: 17rem;
  perspective: 1200px;
  touch-action: pan-y;
}
.ts-card {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  cursor: grab;
  transform-origin: center bottom;
  /* Position is applied via .ts-pos-* classes; transition driven by JS toggling .ts-animated */
}
.ts-card.ts-pos-front   { z-index: 3; transform: translateX(0)     scale(1)    rotate(0deg);  opacity: 1;   }
.ts-card.ts-pos-mid     { z-index: 2; transform: translateX(-26px) scale(0.94) rotate(-2deg); opacity: 0.55; }
.ts-card.ts-pos-back    { z-index: 1; transform: translateX(-46px) scale(0.88) rotate(-4deg); opacity: 0.25; }
.ts-card.ts-pos-hidden  { z-index: 0; opacity: 0; pointer-events: none; transform: translateX(0) scale(0.8); }

.ts-card.ts-animated {
  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity    0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.ts-card.ts-dragging { cursor: grabbing; transition: none !important; }
.ts-card:active { cursor: grabbing; }

.ts-card-inner {
  height: 100%;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.ts-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.ts-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ts-name {
  font-family: 'Instrument Serif', serif;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.3;
}
.ts-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 22rem;
}

/* Arrows */
.ts-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0 8px;
  z-index: 4;
}
.ts-arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: none;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.ts-arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.ts-arrow:active { transform: scale(0.94); }
.ts-arrow:focus-visible {
  outline: 2px solid rgba(205, 148, 72, 0.7);
  outline-offset: 2px;
}

/* Dots */
.ts-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2.25rem;
}
.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.ts-dot:hover { background: rgba(255, 255, 255, 0.35); }
.ts-dot.ts-active { background: rgba(205, 148, 72, 0.9); transform: scale(1.15); }
.ts-dot:focus-visible {
  outline: 2px solid rgba(205, 148, 72, 0.7);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq-section { padding: 4rem 24px 6rem; }
.faq-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.faq-heading {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: #fff;
  letter-spacing: -0.03em;
  font-weight: 400;
  line-height: 1.0;
}
.faq-heading em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
}
.faq-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border-radius: 18px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq-question:hover { color: rgba(255, 255, 255, 0.85); }
.faq-question:focus-visible {
  outline: 2px solid rgba(205, 148, 72, 0.7);
  outline-offset: -2px;
  border-radius: 12px;
}
.faq-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}
.faq-item.faq-open .faq-chevron {
  transform: rotate(180deg);
  color: rgba(205, 148, 72, 0.9);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.faq-open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-answer-inner {
  overflow: hidden;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.faq-open .faq-answer-inner {
  padding-bottom: 22px;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — Testimonials & FAQ  (≤ 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 48rem) {
  .testimonials-section { padding: 3.5rem 16px 5rem !important; }
  .ts-header { margin-bottom: 2.5rem !important; }
  .ts-stage { max-width: 100% !important; }
  .ts-viewport { height: 19rem !important; }
  .ts-card-inner { padding: 24px 22px; gap: 14px; }
  .ts-text { font-size: 0.875rem; }

  /* On touch, hide floating arrows (drag + dots remain). */
  .ts-arrows { display: none; }

  .faq-section { padding: 2.5rem 16px 4rem !important; }
  .faq-list { gap: 0.625rem; }
  .faq-question { padding: 18px 18px; font-size: 1.05rem; }
  .faq-answer-inner { padding: 0 18px; }
  .faq-item.faq-open .faq-answer-inner { padding-bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .ts-card,
  .ts-card.ts-animated,
  .faq-answer,
  .faq-chevron { transition: none !important; }
}
