/* ===== Design tokens ===== */
:root {
  --ink: #15130f;
  --ink-soft: #2c2721;
  --ivory: #faf6ee;
  --ivory-deep: #f0e8d6;
  --gold: #b6905a;
  --gold-light: #d9bd8c;
  --gold-dark: #8f6f42;
  --white: #ffffff;
  --line: rgba(21, 19, 15, 0.12);
  --line-on-dark: rgba(250, 246, 238, 0.18);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --container-wide: 1320px;
  --radius: 3px;
  --shadow: 0 20px 50px -25px rgba(21, 19, 15, 0.35);
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}
p { margin: 0 0 1em; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 136px 0; }
@media (max-width: 768px) {
  section { padding: 84px 0; }
}

.bg-ink { background: var(--ink); color: var(--ivory); }
.bg-deep { background: var(--ivory-deep); }

/* ===== Type helpers ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.bg-ink .eyebrow { color: var(--gold-light); }

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

.lede {
  font-size: 1.18rem;
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 620px;
}
.bg-ink .lede { color: rgba(250, 246, 238, 0.82); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 26px auto;
  position: relative;
}
.divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  background: var(--ivory);
}
.bg-ink .divider::before { background: var(--ink); }
.section-head:not(.center) .divider { margin-left: 0; }
.section-head:not(.center) .divider::before { left: 0; transform: translate(0, -50%) rotate(45deg); }

.section-head { max-width: 680px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.bg-ink .btn-outline { color: var(--ivory); border-color: var(--line-on-dark); }
.bg-ink .btn-outline:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-sm { padding: 11px 22px; font-size: 0.72rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 19, 15, 0.96);
  border-bottom: 1px solid var(--line-on-dark);
}
.site-header .container {
  max-width: var(--container-wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  font-family: var(--font-display);
  color: var(--ivory);
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand .brand-dj {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.brand .brand-name {
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 24px; }
.main-nav a {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.78);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--gold-light); border-color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-on-dark);
  color: var(--ivory);
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ivory);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 36px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; width: 100%; }
  .main-nav ul a { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line-on-dark); font-size: 0.95rem; }
  .main-nav .btn { margin-top: 20px; width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; }
}

/* ===== Hero ===== */
.hero {
  background: var(--ink);
  color: var(--ivory);
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(182, 144, 90, 0.16), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(182, 144, 90, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-video-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 19, 15, 0.8) 0%, rgba(21, 19, 15, 0.62) 45%, rgba(21, 19, 15, 0.88) 100%);
}
.hero .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero { background-image: url("../images/hero-poster.jpg"); background-size: cover; background-position: center; }
}
.hero-tag { color: var(--gold-light); }
.hero h1 { max-width: 780px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub { max-width: 560px; color: rgba(250, 246, 238, 0.8); font-size: 1.15rem; margin-bottom: 36px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-on-dark);
}
.hero-facts div { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(250, 246, 238, 0.65); }
.hero-facts strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory); font-weight: 600; letter-spacing: 0; text-transform: none; margin-bottom: 4px; }

.page-hero {
  background: var(--ink);
  color: var(--ivory);
  padding: 150px 0 76px;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero .lede { margin-left: auto; margin-right: auto; color: rgba(250, 246, 238, 0.78); }

/* ===== Photo block (real proof photo) ===== */
.photo-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) { .photo-block { grid-template-columns: 1fr; gap: 36px; } }
.photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption {
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  opacity: 0.75;
}

/* ===== Cards ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
}
.card .num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  display: block;
}
.card ul { margin-top: 18px; }
.card ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}
.card.secondary { background: var(--ivory-deep); border-color: transparent; }

.tag-pill {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* ===== Placeholder tiles (gallery / testimonials awaiting real content) ===== */
.placeholder {
  border: 1px dashed rgba(21, 19, 15, 0.28);
  border-radius: var(--radius);
  background: var(--ivory-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  padding: 28px 20px;
  min-height: 100%;
}
.placeholder .ph-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  opacity: 0.55;
}
.placeholder strong { display: block; font-size: 0.82rem; letter-spacing: 0.04em; margin-bottom: 4px; }
.placeholder span { font-size: 0.76rem; opacity: 0.7; max-width: 22ch; }
.bg-ink .placeholder { background: rgba(250, 246, 238, 0.04); border-color: var(--line-on-dark); color: rgba(250, 246, 238, 0.7); }

/* ===== Testimonials ===== */
.testimonial-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .testimonial-row { grid-template-columns: 1fr; } }
.quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 6px; display: block; }

.testimonial-card {
  background: rgba(250, 246, 238, 0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(250, 246, 238, 0.92);
  flex-grow: 1;
  margin-bottom: 20px;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.testimonial-card.is-placeholder {
  border-style: dashed;
  background: transparent;
}
.testimonial-card.is-placeholder p {
  color: rgba(250, 246, 238, 0.4);
}
.testimonial-card.is-placeholder cite { color: rgba(250, 246, 238, 0.35); }

.bg-deep .testimonial-card {
  background: var(--white);
  border-color: var(--line);
}
.bg-deep .testimonial-card p { color: var(--ink-soft); }
.bg-deep .testimonial-card cite { color: var(--gold-dark); }

/* ===== Blog ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card .blog-card-body { padding: 30px 28px 32px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card .tag-pill { align-self: flex-start; }
.blog-card h3 { font-size: 1.28rem; margin: 12px 0 12px; }
.blog-card p { color: var(--ink-soft); font-size: 0.94rem; flex-grow: 1; }
.blog-card .read-more {
  margin-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.blog-meta { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.65; margin-bottom: 8px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(250, 246, 238, 0.6);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(250, 246, 238, 0.85); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ===== Article (blog post) typography ===== */
.article { max-width: 740px; margin: 0 auto; }
.article > p, .article > ul, .article > ol { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 1.4em; }
.article h2 { font-size: 1.6rem; margin-top: 1.6em; }
.article h3 { font-size: 1.24rem; margin-top: 1.3em; }
.article ul, .article ol { padding-left: 1.4em; }
.article ul { list-style: disc; }
.article ol { list-style: decimal; }
.article li { margin-bottom: 0.5em; }
.article blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
}
.article strong { color: var(--ink); font-weight: 500; }
.article-hero-meta { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 22px; }
.author-row { display: flex; align-items: center; gap: 14px; margin: 3em auto 0; max-width: 740px; padding-top: 32px; border-top: 1px solid var(--line); }
.author-row img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.author-row .name { font-family: var(--font-display); font-size: 1rem; }
.author-row .role { font-size: 0.8rem; color: var(--ink-soft); opacity: 0.75; }

/* ===== FAQ accordion ===== */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 4px 22px; color: var(--ink-soft); max-width: 68ch; }

/* ===== Process steps ===== */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.step h4 { margin-bottom: 8px; font-size: 1.02rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== CTA band ===== */
.cta-band {
  background: var(--ink);
  color: var(--ivory);
  text-align: center;
  padding: 96px 0;
}
.cta-band .lede { margin-left: auto; margin-right: auto; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-method {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.contact-method .ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method h4 { margin-bottom: 4px; }
.contact-method a, .contact-method p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.contact-method a:hover { color: var(--gold-dark); }

.checklist li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.78rem; color: var(--ink-soft); opacity: 0.75; margin-top: 14px; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: rgba(250, 246, 238, 0.72); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-grid h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-grid a { display: block; margin-bottom: 10px; font-size: 0.92rem; color: rgba(250, 246, 238, 0.72); }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .brand-name { color: var(--ivory); font-size: 1.4rem; margin-bottom: 10px; display: block; }
.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  opacity: 0.6;
}
.social-row { display: flex; gap: 14px; margin-top: 18px; }
.social-row a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); }

/* ===== Floating WhatsApp ===== */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.float-whatsapp:hover { transform: scale(1.08); }

/* ===== Misc ===== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 16px; top: 16px; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Scroll progress bar ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  z-index: 999;
  transition: width 0.1s linear;
}

/* ===== Hero parallax layers ===== */
.hero { will-change: transform; }
.hero-parallax-bg {
  position: absolute;
  inset: -10% -5%;
  z-index: 1;
  background:
    radial-gradient(circle at 15% 20%, rgba(182, 144, 90, 0.18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(182, 144, 90, 0.14), transparent 50%);
  pointer-events: none;
  transition: transform 0.05s linear;
}

/* ===== Animated stat counters ===== */
.hero-facts strong[data-count] { font-variant-numeric: tabular-nums; }

/* ===== Swipeable highlight carousel ===== */
.swipe-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.swipe-carousel::-webkit-scrollbar { display: none; }
.swipe-carousel .testimonial-card,
.swipe-carousel .swipe-card {
  scroll-snap-align: center;
  flex: 0 0 82%;
}
@media (min-width: 900px) {
  .swipe-carousel { overflow: visible; display: grid; grid-template-columns: repeat(3, 1fr); }
  .swipe-carousel .testimonial-card, .swipe-carousel .swipe-card { flex: initial; }
}
.swipe-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}
@media (min-width: 900px) { .swipe-dots { display: none; } }
.swipe-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-on-dark);
  transition: background 0.2s ease, transform 0.2s ease;
}
.swipe-dots span.active { background: var(--gold); transform: scale(1.3); }
.swipe-hint {
  display: none;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-top: 4px;
}
@media (max-width: 899px) { .swipe-hint { display: block; } }
