/* KL360 Landing Page — shared design system
   Hybrid of kl-360.my (dark, investor-grade) and kl360.my (minimalist, lifestyle) */

:root {
  --color-bg: #0b0c0f;
  --color-bg-alt: #111318;
  --color-surface: #16181f;
  --color-surface-light: #f7f5f1;
  --color-ink: #eceae6;
  --color-ink-muted: #a7a9b0;
  --color-ink-on-light: #14151a;
  --color-ink-on-light-muted: #5b5d63;
  --color-gold: #c9a25d;
  --color-gold-light: #e4c485;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-light: rgba(20, 21, 26, 0.1);
  --font-display: "Georgia", "Songti SC", "Noto Serif SC", "Noto Naskh Arabic", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Noto Sans Arabic", Tahoma, Roboto, Helvetica, Arial, sans-serif;
  --container-max: 1200px;
  --radius: 4px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1em;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--light {
  background: var(--color-surface-light);
  color: var(--color-ink-on-light);
}

.section--light .eyebrow {
  color: #a67c3d;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.section--light .section-head p,
.section--light p {
  color: var(--color-ink-on-light-muted);
}

.lede {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
}

.section-head .btn {
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gold);
  color: #14151a;
}

.btn--primary:hover {
  background: var(--color-gold-light);
}

.btn--outline {
  border-color: var(--color-border);
  color: var(--color-ink);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.section--light .btn--outline {
  border-color: var(--color-border-light);
  color: var(--color-ink-on-light);
}

.btn--whatsapp {
  background: #25d366;
  color: #0b0c0f;
}

.btn--whatsapp:hover {
  background: #2ee578;
}

.btn--block {
  width: 100%;
}

.btn--beam {
  position: relative;
  z-index: 0;
  background: var(--color-bg-alt);
  color: var(--color-gold);
  border: none;
  overflow: hidden;
}

.btn--beam:hover {
  color: var(--color-gold-light);
}

.btn--beam::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 85%, var(--color-gold-light) 92%, var(--color-gold-light) 100%);
  animation: beam-spin 2.5s linear infinite;
  z-index: -2;
}

.btn--beam::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--color-bg-alt);
  border-radius: calc(var(--radius) - 1px);
  z-index: -1;
}

@keyframes beam-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header / Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 12, 15, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--color-ink);
}

.nav__logo strong {
  color: var(--color-gold);
}

.nav__logo img {
  height: 46px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--color-gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Persistent language bar — always visible above the main nav row,
   on every breakpoint, so switching language never requires opening anything */
.header-langs {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px 24px;
  border-bottom: 1px solid var(--color-border);
}

.header-langs a {
  padding: 3px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-ink-muted);
  font-size: 0.72rem;
}

.header-langs a.is-active,
.header-langs a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-ink);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 180px;
  background:
    linear-gradient(180deg, rgba(11,12,15,0) 0%, rgba(11,12,15,0) 78%, var(--color-bg) 100%),
    url(../img/hero-skyline.jpg) center 32%/cover no-repeat;
}

.hero__fireworks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__content .eyebrow {
  font-weight: 700;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-ink);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.8);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}

/* Presented-by credit bar */
.presented-by {
  padding: 32px 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.presented-by .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.presented-by__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.presented-by img {
  height: 48px;
  width: auto;
  opacity: 0.9;
}

.footer-presented {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--color-border);
}

.footer-presented img {
  height: 48px;
  width: auto;
  opacity: 0.9;
}

/* Signature experiences showcase (full-bleed) */
.showcase {
  background: var(--color-bg);
}

.showcase__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.showcase__intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.showcase__item {
  position: relative;
  width: 100%;
  height: min(680px, 82vh);
  overflow: hidden;
}

.showcase__item + .showcase__item {
  margin-top: 6px;
}

.showcase__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at top left, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase__caption {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  max-width: 560px;
  padding: 56px;
  color: #fff;
}

.showcase__index {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--color-gold-light);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  margin-bottom: 10px;
}

.showcase__caption h3 {
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.85);
  margin-bottom: 10px;
}

.showcase__caption p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
  margin: 0;
}

/* Media placeholder */
.media-placeholder {
  background: linear-gradient(135deg, #1c1e26, #0e0f13);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-ink-muted);
  font-size: 0.85rem;
  text-align: center;
  min-height: 220px;
  position: relative;
}

.media-placeholder::after {
  content: "▦";
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
}

.media-placeholder span {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.media-photo {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.media-photo--wide {
  aspect-ratio: 16 / 9;
}

.media-photo--panel {
  margin-top: 32px;
}

.media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-showcase__frame {
  max-width: 960px;
  margin: 0 auto;
}

.video-showcase__aspect {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.video-showcase__aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.photo-tile {
  text-align: center;
}

.photo-tile span {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

/* Grid layouts */
.grid {
  display: grid;
  gap: 32px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
}

.section--light .card {
  background: #fff;
  border-color: var(--color-border-light);
}

.card h3 {
  font-size: 1.15rem;
  color: var(--color-gold);
}

.section--light .card h3 {
  color: #a67c3d;
}

.card--compact {
  text-align: center;
  padding: 24px;
}

.card--compact .card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.card--compact h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.card--compact p {
  font-size: 0.82rem;
  color: var(--color-ink-muted);
  margin: 0;
}

/* Layout filters + gallery */
.layout-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.layout-filter {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-ink-muted);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.layout-filter:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.layout-filter.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #14151a;
}

.layout-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.layout-card img {
  width: 100%;
  display: block;
}

.layout-carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 96px;
}

.layout-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  background: var(--color-bg-alt);
  color: var(--color-gold);
  font-size: 2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}

.layout-arrow:hover:not(:disabled) {
  background: var(--color-gold);
  color: #14151a;
}

.layout-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.layout-arrow--prev {
  left: 0;
}

.layout-arrow--next {
  right: 0;
}

/* Problem/solution */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.compare__col {
  padding: 32px;
  border-radius: var(--radius);
}

.compare__col--problem {
  background: rgba(201, 82, 82, 0.08);
  border: 1px solid rgba(201, 82, 82, 0.25);
}

.compare__col--solution {
  background: rgba(201, 162, 93, 0.08);
  border: 1px solid rgba(201, 162, 93, 0.3);
  animation: solution-glow 3s ease-in-out infinite;
}

@keyframes solution-glow {
  0%, 100% {
    box-shadow: 0 0 16px 0 rgba(201, 162, 93, 0.12);
  }
  50% {
    box-shadow: 0 0 28px 2px rgba(201, 162, 93, 0.35);
  }
}

.compare__col h3 {
  margin-bottom: 16px;
}

.compare__col ul {
  margin: 0;
  padding-left: 20px;
}

.compare__col li {
  margin-bottom: 10px;
  color: var(--color-ink-muted);
}

/* Facilities list */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility {
  text-align: center;
}

.facility__photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
}

.facility__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.facility:hover .facility__photo img {
  transform: scale(1.06);
}

.facility span {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

/* Location */
.proximity-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.proximity-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-ink-muted);
}

.proximity-list b {
  color: var(--color-ink);
  font-weight: 500;
}

/* Credentials / partners */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.partner-chip {
  padding: 12px 24px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--color-ink-on-light-muted);
}

.partner-chip--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 14px 28px;
}

.partner-chip--logo img {
  height: 34px;
  width: auto;
  display: block;
}

/* Developer track record */
.track-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.track-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
}

.track-card .facility__photo {
  margin-bottom: 20px;
}

.track-card h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.track-card__type {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.track-card__stats {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.track-card__stats li {
  display: flex;
  flex-direction: column;
}

.track-card__stats b {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-ink);
}

.track-card__stats span {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-top: 2px;
}

/* FAQ accordion */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 600;
  color: var(--color-ink);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.3rem;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  margin: 0;
  padding: 0 60px 22px 24px;
  color: var(--color-ink-muted);
}

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-ink-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  margin-bottom: 16px;
}

.footer-brand img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-brand strong {
  color: var(--color-gold);
}

.footer-heading {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 20px;
}

.footer-grid li {
  margin-bottom: 10px;
  break-inside: avoid;
}

.footer-grid a:hover {
  color: var(--color-gold);
}

/* Floating contact cluster (bottom-right, popover opens upward) */
.contact-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.whatsapp-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  font-size: 1.5rem;
  animation: whatsapp-glow 2.2s ease-in-out infinite;
}

@keyframes whatsapp-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* WeChat nav wrapper (popover opens downward) — button reuses .btn.btn--beam */
.nav-wechat {
  position: relative;
  display: flex;
  align-items: center;
}

/* Floating WeChat button (bottom-right cluster) — same treatment as WhatsApp */
.wechat-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #07c160;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  animation: wechat-glow 2.2s ease-in-out infinite;
}

@keyframes wechat-glow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(7, 193, 96, 0.7);
  }
  50% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 16px rgba(7, 193, 96, 0);
  }
}

/* Shared WeChat popover card */
.wechat-popover {
  position: absolute;
  right: 0;
  background: var(--color-surface-light);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  text-align: center;
  display: none;
  z-index: 95;
}

.wechat-popover.is-open {
  display: block;
}

.wechat-popover img {
  width: 380px;
  max-width: 80vw;
  display: block;
  border-radius: 4px;
}

.contact-float .wechat-popover {
  bottom: 100%;
  margin-bottom: 12px;
}

.nav-wechat .wechat-popover {
  top: 100%;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 12, 15, 0.97);
    padding: 24px;
    gap: 16px;
  }
  .nav__toggle { display: block; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
  .track-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-carousel { padding: 0 64px; }
  .layout-arrow { width: 48px; height: 48px; font-size: 1.5rem; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .showcase__item { height: 60vh; }
  .showcase__caption { padding: 28px; max-width: 100%; }
  .layout-carousel { padding: 0 44px; }
  .layout-arrow { width: 36px; height: 36px; font-size: 1.25rem; }
  .nav__actions { gap: 10px; }
  .nav__actions .btn--beam { padding: 10px 16px; font-size: 0.85rem; }
  .faq-item summary { padding: 18px 20px; font-size: 0.95rem; }
  .faq-item__answer { padding: 0 20px 18px; }
}

/* RTL (Arabic) — flexbox/grid direction and text-align already flip
   automatically with dir="rtl"; only hand-positioned (left/right) elements
   need explicit mirroring here. Photography and its captions are left
   un-mirrored since the underlying images aren't flipped. */
[dir="rtl"] .wechat-popover {
  right: auto;
  left: 0;
}

[dir="rtl"] .contact-float {
  right: auto;
  left: 24px;
}

[dir="rtl"] .layout-arrow--prev {
  left: auto;
  right: 0;
}

[dir="rtl"] .layout-arrow--next {
  right: auto;
  left: 0;
}
