/* === TOKENS === */
:root {
  --bg: #12100e;
  --bg-raised: #1c1914;
  --bg-card: #211e17;
  --fg: #f0ebe0;
  --fg-muted: #a89f8c;
  --fg-faint: #6b6358;
  --accent: #c87a2e;
  --accent-dim: #8a5520;
  --border: rgba(200, 122, 46, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-mono: 'Space Grotesk', monospace;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding: 2rem 3rem;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 4rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 40%, rgba(200, 122, 46, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-text {
  max-width: 680px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.9;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-headline-top { display: block; font-style: italic; }
.hero-headline-bottom { display: block; font-weight: 400; color: var(--accent); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pill {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ornament svg {
  width: 240px;
  height: 240px;
  animation: spin-slow 60s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.hero-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.strip-item {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-faint);
}
.strip-sep { color: var(--accent); opacity: 0.4; font-size: 0.6rem; }

/* === SECTION TOKENS === */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}

/* === SERVICES === */
.services {
  padding: 7rem 3rem;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--bg-raised);
  padding: 3rem;
  position: relative;
}
.service-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.service-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 8rem 3rem;
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.philosophy-label {
  padding-top: 0.5rem;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 400;
}
.philosophy-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

/* === CLOSING === */
.closing {
  padding: 8rem 3rem;
  text-align: center;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-ornament {
  display: block;
  margin-bottom: 2.5rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.closing-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.closing-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 1rem 2.5rem;
  transition: opacity 0.2s;
  margin-bottom: 1rem;
}
.closing-cta-btn:hover { opacity: 0.88; }
.closing-cta-reassurance {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin-top: 0;
}

/* === HERO CTA === */
.hero-cta-wrap {
  margin-top: 2.5rem;
}
.hero-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  padding: 1rem 2.5rem;
  transition: opacity 0.2s;
  margin-bottom: 0.9rem;
}
.hero-cta-btn:hover { opacity: 0.88; }
.hero-cta-reassurance {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
  margin: 0;
  line-height: 1.6;
}

/* === FOOTER === */
.site-footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--fg);
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
}
.footer-meta { text-align: right; display: flex; flex-direction: column; gap: 0.2rem; }
.footer-location, .footer-copy {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === PORTFOLIO === */
.portfolio {
  padding: 7rem 3rem;
}
.portfolio-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.portfolio-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-top: 0.8rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--border);
  border: 1px solid var(--border);
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-item--tall { grid-row: span 2; min-height: 540px; }
.portfolio-item--wide { min-height: 260px; }
.portfolio-item--coverup { min-height: 260px; }
.portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.5rem 1.2rem;
  background: linear-gradient(transparent, rgba(18, 16, 14, 0.9));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.caption-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(200, 122, 46, 0.12);
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
}
.caption-desc {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.portfolio-cta {
  text-align: center;
  margin-top: 3rem;
}
.portfolio-book-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.portfolio-book-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* === CONTACT === */
.contact {
  padding: 7rem 3rem;
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-top: 0.8rem;
  line-height: 1.8;
}
.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-email {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  text-decoration: none;
}
.contact-email:hover { opacity: 0.8; }
.contact-availability {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-faint);
}
.contact-form-wrap { padding-top: 0.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.form-input {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input::placeholder { color: var(--fg-faint); }
.form-input:focus { border-color: var(--accent); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c87a2e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit-btn {
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}
.form-submit-btn:hover:not(:disabled) { opacity: 0.85; }
.form-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.form-success {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
}
.form-error {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}
.form-error a { color: var(--accent); }
.btn-loading { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .site-nav { padding: 1.5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-strip { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .strip-sep { display: none; }
  .portfolio { padding: 5rem 1.5rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item--tall { grid-row: span 1; min-height: 360px; }
  .portfolio-item--wide, .portfolio-item--coverup { min-height: 260px; }
  .services { padding: 5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem; }
  .philosophy { padding: 5rem 1.5rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact { padding: 5rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
  .site-footer { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 3.5rem; }
  .service-name { font-size: 1.2rem; }
  .closing-headline { font-size: 1.8rem; }
}

/* === GALLERY (portfolio) === */
.gallery {
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}
.gallery-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.gallery-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  opacity: 0.8;
}

/* Section dividers */
.gallery-section {
  max-width: 1200px;
  margin: 0 auto 4rem;
}
.gallery-section:last-of-type { margin-bottom: 0; }
.gallery-section-label {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.gallery-section-num {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.6;
}
.gallery-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
}

/* Responsive grid — portrait images */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
/* Wide grid for landscape murals */
.gallery-grid--wide {
  grid-template-columns: 1fr;
}

/* Gallery items */
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
  cursor: pointer;
  /* Reserve space to prevent layout shift */
  aspect-ratio: 3/4;
}
.gallery-item--landscape {
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.04);
}
.gallery-item:focus {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

/* Caption overlay */
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(transparent 55%, rgba(12, 10, 8, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus .gallery-item-overlay {
  opacity: 1;
}
/* Always show on touch devices (no hover) */
@media (hover: none) {
  .gallery-item-overlay { opacity: 1; }
}
.gallery-cat-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(200, 122, 46, 0.12);
  border: 1px solid var(--border);
  padding: 0.2rem 0.55rem;
  align-self: flex-start;
  margin-bottom: 0.4rem;
}
.gallery-zoom-hint {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* Gallery CTA */
.gallery-footer-cta {
  text-align: center;
  margin-top: 3.5rem;
}
.gallery-book-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.gallery-book-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(8, 7, 5, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  /* Animate in */
  animation: lb-fadein 0.2s ease;
}
.lightbox[hidden] { display: none; }
@keyframes lb-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
  z-index: 1;
}
.lightbox-close:hover { color: var(--fg); }
.lightbox-inner {
  max-width: min(900px, 95vw);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.lightbox-img {
  max-height: 72vh;
  max-width: 100%;
  object-fit: contain;
  display: block;
  /* No layout shift — image dimensions vary */
}
.lightbox-caption {
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.lightbox-cat {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.lightbox-story {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === GALLERY RESPONSIVE === */
@media (max-width: 768px) {
  .gallery { padding: 5rem 1.5rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item { aspect-ratio: 4/3; }
  .gallery-item--landscape { aspect-ratio: 16/9; }
  /* Always show overlay on mobile */
  .gallery-item-overlay { opacity: 1; }
  .lightbox-img { max-height: 55vh; }
  .lightbox-inner { gap: 1rem; }
}

@media (max-width: 480px) {
  .gallery-section-title { font-size: 1.1rem; }
  .lightbox { padding: 1rem; }
  .lightbox-close { top: 0.75rem; right: 1rem; font-size: 1.75rem; }
}

/* === FAQ / TRUST === */
.faq {
  padding: 7rem 3rem;
  border-top: 1px solid var(--border);
}
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.faq-header {
  margin-bottom: 4rem;
}
.faq-intro {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  line-height: 1.8;
  max-width: 520px;
}

/* Two-column grid on desktop (≥900px) */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Accordion group */
.faq-group {
  background: var(--bg);
}

/* Toggle button — accordion header */
.faq-group-toggle {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.faq-group-toggle:hover {
  background: var(--bg-raised);
}
/* On desktop the toggle isn't interactive (groups stay open), but keep hover subtle */
@media (min-width: 900px) {
  .faq-group-toggle { cursor: default; }
  .faq-group-toggle:hover { background: none; }
}

.faq-group-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}
.faq-group-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  flex: 1;
}

/* Chevron indicator — hide on desktop */
.faq-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-bottom: 2px;
}
.faq-group-toggle[aria-expanded="true"] .faq-chevron {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}
@media (min-width: 900px) {
  .faq-chevron { display: none; }
}

/* Group body */
.faq-group-body {
  padding: 2rem;
}
.faq-group-body[hidden] { display: none; }

/* Q&A list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-q {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.faq-a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* TODO placeholders — clearly visible to the operator */
.faq-todo {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: rgba(200, 122, 46, 0.08);
  border: 1px dashed rgba(200, 122, 46, 0.35);
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  font-style: normal;
  margin-top: 0.25rem;
}

/* === FAQ RESPONSIVE === */
@media (max-width: 900px) {
  .faq { padding: 5rem 1.5rem; }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-group-toggle { padding: 1.5rem 1.5rem; }
  .faq-group-body { padding: 0 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .faq-header { margin-bottom: 2.5rem; }
  .faq-group-title { font-size: 1rem; }
}