@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #141414;
  --bg-deep: #0e0e0e;
  --surface: #1c1c1c;
  --surface-strong: #232323;
  --text: #f5edd5;
  --muted: #999999;
  --gold: #c9a84c;
  --gold-soft: rgba(201, 168, 76, 0.14);
  --border: rgba(201, 168, 76, 0.18);
}

* {
  box-sizing: border-box;
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-36px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutToLeft {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-36px); }
}

@keyframes slideOutToRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(36px); }
}

html {
  overflow-x: hidden;
}

main.page-enter-right { animation: slideInFromRight 0.25s ease both; }
main.page-enter-left  { animation: slideInFromLeft  0.25s ease both; }
main.page-leave-left  { animation: slideOutToLeft   0.15s ease both; }
main.page-leave-right { animation: slideOutToRight  0.15s ease both; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── Header ──────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Footer ───────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 80px;
}

.site-footer-inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.site-footer-brand {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.site-footer-meta {
  color: var(--muted);
  font-size: 12px;
}

.site-footer-meta a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer-meta a:hover {
  color: var(--text);
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn-gold,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: #141414;
}

.btn-gold:hover {
  background: #d8b75c;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: 96px 0 72px;
}

.hero-eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  color: var(--gold);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
  max-width: 820px;
}

.hero-title--display {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 13rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  max-width: none;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}

/* ── Services ─────────────────────────────────────────────── */

.section-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  color: var(--gold);
}

.section-title {
  margin: 0 0 40px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  max-width: 640px;
}

.services {
  padding: 24px 0 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.2s ease;
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Homepage — Work teaser ────────────────────────────────── */

.home-work {
  padding: 24px 0 80px;
}

.home-work-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.home-work-header .section-title {
  margin-bottom: 0;
}

.home-section-link {
  font-size: 0.88rem;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.home-section-link:hover {
  opacity: 0.75;
}

.home-work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hwc {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

.hwc-main {
  aspect-ratio: 2/3;
}

.hwc-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hwc-right .hwc {
  flex: 1;
}

/* ── Homepage — About teaser ───────────────────────────────── */

.home-about {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.home-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
}

.home-about-bio {
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.74;
  color: var(--muted);
}

.home-about-creds {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home-cred {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.home-cred-value {
  font-size: 1rem;
  font-weight: 600;
}

.home-cred-label {
  font-size: 0.84rem;
  color: var(--muted);
}

@media (max-width: 820px) {
  .home-about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .home-work-header {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .home-work-grid {
    grid-template-columns: 1fr;
  }

  .hwc-main {
    aspect-ratio: 4/3;
  }
}

/* ── About ─────────────────────────────────────────────────── */

.about-intro {
  padding: 72px 0 52px;
}

.about-name {
  margin: 0 0 12px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
}

.about-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-main {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
  padding-bottom: 72px;
}

.about-photo {
  aspect-ratio: 3/4;
  border-radius: 20px;
  background: linear-gradient(160deg, #1b1917 0%, #252218 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.about-photo-slot {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
}

.about-bio {
  padding-top: 6px;
}

.about-bio p {
  margin: 0 0 22px;
  font-size: 1.08rem;
  line-height: 1.76;
  color: var(--muted);
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-creds {
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cred-card {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cred-label {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.cred-value {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.cred-sub {
  margin: 7px 0 0;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.about-cta {
  padding: 64px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}

.about-cta p {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1rem;
}

@media (max-width: 820px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    max-width: 300px;
  }

  .about-creds {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .about-creds {
    grid-template-columns: 1fr;
  }
}

/* ── Portfolio ─────────────────────────────────────────────── */

.pf-header {
  padding: 72px 0 0;
}

.pf-title {
  margin: 0 0 36px;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.08;
}

.pf-toggle {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: fit-content;
}

.pf-btn {
  padding: 10px 28px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.pf-btn.active {
  background: var(--gold);
  color: #141414;
  font-weight: 700;
}

.pf-btn:not(.active):hover {
  color: var(--text);
}

.pf-grid {
  columns: 3;
  column-gap: 14px;
  padding: 48px 0 80px;
}

.pf-item {
  break-inside: avoid;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.pf-item.pf-hidden {
  display: none;
}

.pf-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.2s;
  pointer-events: none;
}

.pf-item:hover::after {
  background: rgba(0, 0, 0, 0.28);
}

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

.pf-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Aspect ratios */
.ph-portrait        { aspect-ratio: 2/3; }
.ph-slight-portrait { aspect-ratio: 4/5; }
.ph-square          { aspect-ratio: 1/1; }
.ph-landscape       { aspect-ratio: 3/2; }
.ph-wide            { aspect-ratio: 16/9; }

/* Placeholder gradient variations */
.ph-v1 { background: linear-gradient(145deg, #1e1e1e 0%, #262626 100%); }
.ph-v2 { background: linear-gradient(160deg, #1b1917 0%, #252218 100%); }
.ph-v3 { background: linear-gradient(135deg, #1d1d1d 0%, #212121 100%); }
.ph-v4 { background: linear-gradient(150deg, #201e1a 0%, #26231e 100%); }
.ph-v5 { background: linear-gradient(130deg, #1c1b18 0%, #22221a 100%); }

.pf-slot {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 500;
  pointer-events: none;
}

/* ── Lightbox ─────────────────────────────────────────────── */

.pf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.pf-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.pf-lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.15s;
}

.pf-lb-close:hover {
  color: var(--text);
}

.pf-lb-inner {
  position: relative;
  max-width: min(860px, calc(100vw - 48px));
  max-height: calc(100vh - 80px);
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.pf-lb-img {
  display: block;
  border-radius: 20px;
}

.pf-lb-img img {
  display: block;
  max-width: min(860px, calc(100vw - 48px));
  max-height: calc(100vh - 80px);
  width: auto;
  height: auto;
  border-radius: 20px;
}

.pf-lb-slot {
  position: absolute;
  bottom: 14px;
  left: 18px;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.22);
}

/* Video lightbox — wider inner, iframe fills it */
.pf-lb-video-mode {
  max-width: min(900px, calc(100vw - 48px));
}

.pf-lb-video-mode .pf-lb-img {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.pf-lb-video-mode .pf-lb-img iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Play icon overlay on video placeholder cards */
.pf-video-thumb {
  position: relative;
}

.pf-video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-video-thumb::after {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  transition: color 0.2s;
}

.pf-item:hover .pf-video-thumb::after {
  color: rgba(201, 168, 76, 0.7);
}

@media (max-width: 900px) {
  .pf-grid { columns: 2; }
}

@media (max-width: 640px) {
  .pf-grid { columns: 1; }

  .pf-toggle { width: 100%; }

  .pf-btn { flex: 1; text-align: center; }
}

/* ── Mobile Navigation ─────────────────────────────────────── */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-close {
  position: absolute;
  top: 76px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.15s;
}

.nav-mobile-close:hover {
  color: var(--text);
}

.nav-mobile a {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--muted, #888);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--gold, #c9a84c);
}

@media (max-width: 680px) {
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── Pricing Page ──────────────────────────────────────────── */

.pricing-hero {
  padding: 72px 0 56px;
}

.pricing-hero .section-title {
  margin-bottom: 12px;
}

.pricing-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-section {
  padding: 0 0 64px;
}

.pricing-section-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-section-title {
  margin: 0 0 28px;
  font-size: 1.3rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.pricing-card {
  padding: 28px 26px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.pc-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.pc-price {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pc-price-label {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.pc-desc {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.pc-alt-price {
  margin: 8px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pc-alt-price-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
}

.pc-alt-price-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0 0 64px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.addon-name {
  font-size: 0.9rem;
}

.addon-price {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-note {
  margin: 24px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.pricing-cta {
  padding: 64px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}

.pricing-cta p {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1rem;
}

@media (max-width: 820px) {
  .pricing-grid--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .pricing-grid,
  .pricing-grid--3,
  .addon-grid { grid-template-columns: 1fr; }
}

/* ── FAQ ─────────────────────────────────────────────────────────────── */

.faq-hero {
  padding: 72px 0 48px;
  text-align: center;
}

.faq-hero .section-title {
  max-width: none;
  text-align: center;
}

.faq-tagline {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 12px 0 0;
}

.faq-section {
  padding: 0 0 80px;
  max-width: 760px;
}

.faq-group {
  margin-bottom: 56px;
}

.faq-group-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-item:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
  list-style: none;
  padding: 20px 32px 20px 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: color 0.15s;
}

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

.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] .faq-q {
  color: var(--gold);
}

.faq-a {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 20px;
  padding-right: 32px;
}

.faq-a a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-cta {
  padding: 64px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
}

.faq-cta p {
  color: var(--muted);
  margin: 0 0 32px;
  font-size: 1rem;
}

.faq-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
