@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Inter:wght@400;500;600;700&display=swap");
:root {
  --bg: #0b0a08;
  --panel: #161310;
  --panel-2: #1c1814;
  --border: #2b241a;
  --gold: #cfa04b;
  --gold-bright: #f2cd84;
  --cream: #f3efe6;
  --muted: #9c9384;
  --danger: #dd8f8f;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
textarea,
select {
  font: inherit;
}
/* ACCESSIBILITY */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}
/* PAGE CONTAINER */
.page {
  max-width: 1180px;
  min-height: 100vh;
  margin: 0 auto;
}
/* HEADER AND NAVIGATION */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid rgba(43, 36, 26, 0.75);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--gold);
  transform: rotate(3deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--gold);
  overflow: hidden;
}
.brand-mark:has(img) {
  width: auto;
  height: 120px;
  border: none;
  transform: none;
}
.brand-mark img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-text .name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}
.brand-text .tag {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 1px;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  color: var(--cream);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-color: var(--gold);
}
/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--gold);
  background: transparent;
  color: var(--gold);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  background: rgba(207, 160, 75, 0.08);
}
.btn.filled {
  background: linear-gradient(
    135deg,
    var(--gold-bright),
    var(--gold)
  );
  color: #1a1400;
  border: none;
}
.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
/* HOMEPAGE HERO */
.hero {
  position: relative;
  min-height: 460px;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 10, 8, 0.94) 0%,
    rgba(11, 10, 8, 0.78) 38%,
    rgba(11, 10, 8, 0.25) 65%,
    rgba(11, 10, 8, 0.05) 100%
  );
}
.hero-left {
  position: relative;
  z-index: 1;
  max-width: 570px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 54px);
  line-height: 1.12;
  margin: 0 0 18px;
}
.gold {
  color: var(--gold);
}
.hero p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 0 24px;
}
/* INTERNAL PAGE HERO */
.page-hero {
  padding: 72px 30px 56px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(207, 160, 75, 0.14),
      transparent 34%
    ),
    var(--bg);
}
.eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero h1 {
  margin: 0 0 15px;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;
}
.page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}
/* GENERAL SECTIONS */
.section {
  padding: 50px 30px;
}
.section.alt {
  background: var(--panel-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1.25;
  margin: 0 0 4px;
}
.section-rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 13px 0 24px;
}
.section-intro {
  max-width: 720px;
  color: var(--muted);
  margin: 0 0 28px;
}
/* GRIDS */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
/* GENERAL CARDS */
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}
.card:hover {
  border-color: rgba(207, 160, 75, 0.65);
}
.services-card {
  position: relative;
  background-image:
    linear-gradient(rgba(15, 13, 10, 0.82), rgba(15, 13, 10, 0.88)),
    url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.about-bg {
  background-image:
    linear-gradient(rgba(15, 13, 10, 0.82), rgba(15, 13, 10, 0.88)),
    url("../images/background1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-bg {
  background-image:
    linear-gradient(rgba(15, 13, 10, 0.85), rgba(15, 13, 10, 0.9)),
    url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card h2,
.card h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
}
.card p {
  color: var(--muted);
}
/* SERVICE-BASED BUSINESS IMAGE */
.business-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 20px;
}
.business-item {
  text-align: center;
}
.learn {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
/* SERVICES */
.services-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.service-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}
.service-icon {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 auto;
}
/* LEDGER LITE */
.ledger-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
/* PROJECT CARDS */
.project-preview {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}
.project-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(
    145deg,
    #252016,
    #0f0d0a
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 3px;
  overflow: hidden;
}
.project-image img,
.project-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.project-copy {
  padding: 20px;
}
.project-copy h2,
.project-copy h3 {
  font-family: "Playfair Display", serif;
}
/* Clickable project card */
.project-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.project-preview:has(.project-link):hover {
  border-color: var(--gold, #d4a53a);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.project-cta {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--gold, #d4a53a);
}
.project-link:hover .project-cta {
  text-decoration: underline;
}
/* TAGS */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-pill {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
}
/* SKILLS TICKER (stock-market style) */
.ticker-board {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.ticker {
  position: relative;
  overflow: hidden;
  padding: 6px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 38s linear infinite;
}
.ticker--rev .ticker-track {
  animation-direction: reverse;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--cream);
  font-size: 12px;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.2);
}
.ticker-item .sym {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 11px;
}
.ticker-cat {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  margin-right: 4px;
  border-radius: 6px;
  background: var(--gold);
  color: #17130c;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
  .ticker {
    overflow-x: auto;
  }
}
/* ABOUT PAGE */
.about-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: start;
}
.about-photo {
  min-height: 320px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    #3a3228,
    #16130f
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-align: center;
}
img.about-photo {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  border: 4px solid #d4af37;
  border-radius: 50%;
  background: none;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 20px auto 0;
  box-shadow:
    0 0 0 4px #cfd0d4,   /* silver */
    0 0 0 8px #b08d2b,   /* deep gold */
    0 0 0 11px #8f9096,  /* dark silver edge */
    0 10px 26px rgba(0, 0, 0, 0.55);
}
/* EDUCATION TIMELINE */
.timeline {
  display: grid;
  gap: 15px;
}
.timeline-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: var(--panel);
}
.timeline-logo {
  flex: 0 0 auto;
  width: 108px;
  height: 108px;
  border-radius: 8px;
  background: #000;
  object-fit: contain;
  padding: 6px;
}
.timeline-body {
  min-width: 0;
}
.timeline-item h3 {
  margin: 0 0 6px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}
.timeline-item .timeline-meta {
  color: var(--gold);
  font-size: 13px;
}
.timeline-item .timeline-desc {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
/* CONTACT PAGE */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
}
.contact-list {
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background-image: url("../images/sidebar.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.contact-item {
  padding: 18px;
  background: rgba(15, 13, 10, 0.62);
  border: 1px solid rgba(207, 160, 75, 0.28);
  border-radius: 7px;
  backdrop-filter: blur(2px);
}
.contact-item strong {
  display: block;
  color: var(--gold);
  margin-bottom: 5px;
}
/* CONTACT FORM */
.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}
.form-group {
  margin-bottom: 16px;
}
label {
  display: block;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 700;
}
input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #0f0d0a;
  color: var(--cream);
}
textarea {
  min-height: 150px;
  resize: vertical;
}
.form-note {
  color: var(--muted);
  font-size: 11px;
}
/* PRIVACY, TERMS AND ACCESSIBILITY */
.legal {
  max-width: 860px;
  margin: 0 auto;
}
.legal h2 {
  margin-top: 34px;
  font-family: "Playfair Display", serif;
  color: var(--gold);
}
.notice {
  padding: 16px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--panel);
  color: var(--muted);
}
/* FINAL CALL TO ACTION */
.final-cta {
  text-align: center;
  padding: 60px 30px;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(207, 160, 75, 0.12),
    transparent 65%
  );
}
.cta-bg {
  background-image:
    radial-gradient(circle at 50% 30%, rgba(207, 160, 75, 0.12), transparent 65%),
    linear-gradient(rgba(15, 13, 10, 0.82), rgba(15, 13, 10, 0.88)),
    url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.final-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin: 0 0 12px;
}
.final-cta p {
  color: var(--muted);
  margin: 0 0 22px;
}
/* FOOTER */
.footer {
  padding: 26px 30px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 10px;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links a:hover,
.footer-cookie-button:hover {
  color: var(--gold);
}
.footer-cookie-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}
/* COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 920px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
}
.cookie-banner p {
  margin: 0 0 14px;
  color: var(--muted);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
/* TABLET RESPONSIVE */
@media (max-width: 920px) {
  .nav {
    justify-content: center;
  }
  .brand {
    margin-right: auto;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-wrap,
  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }
}
/* MOBILE RESPONSIVE */
@media (max-width: 640px) {
  .nav {
    padding: 18px 20px;
  }
  .brand {
    margin-right: 0;
  }
  .nav-links {
    gap: 15px;
  }
  .section,
  .page-hero,
  .hero,
  .final-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .business-image {
    height: 230px;
  }
  .footer {
    justify-content: center;
    text-align: center;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}
/* REDUCED MOTION ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* -----------------------------------
   MASSAGE WEB DESIGN SERVICE PAGE
----------------------------------- */
.service-hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.massage-service-hero {
  background:
    radial-gradient(
      circle at 82% 30%,
      rgba(207, 160, 75, 0.2),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #0b0a08,
      #18130d
    );
}
.massage-intro-layout,
.massage-about-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: start;
}
.massage-highlight,
.experience-card {
  border-color: rgba(207, 160, 75, 0.6);
}
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.feature-check-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.feature-check-list li:last-child {
  border-bottom: 0;
}
.feature-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--gold);
  font-weight: 700;
}
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-number {
  color: rgba(207, 160, 75, 0.22);
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.feature-card:hover .feature-number {
  color: var(--gold);
}
.process-card {
  text-align: center;
}
.process-number {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 700;
}
.learn {
  display: inline-flex;
  margin-top: 10px;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}
.learn:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}
/* TABLET */
@media (max-width: 920px) {
  .massage-intro-layout,
  .massage-about-layout {
    grid-template-columns: 1fr;
  }
}
/* MOBILE */
@media (max-width: 640px) {
  .service-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .service-hero-buttons .btn {
    width: 100%;
  }
}

/* ---- IMAGE PLACEHOLDERS (auto-swap to real image when file is added) ---- */
.img-ph{
  position:relative;
  display:flex;align-items:center;justify-content:center;
  min-height:220px;width:100%;
  background:
    linear-gradient(135deg, rgba(207,160,75,.08), rgba(0,0,0,0)) ,
    repeating-linear-gradient(45deg, var(--panel), var(--panel) 14px, #1b1712 14px, #1b1712 28px);
  border:1px solid rgba(207,160,75,.28);
  border-radius:14px;
  color:var(--muted);
  overflow:hidden;
}
.img-ph span{
  font-size:.8rem;letter-spacing:.06em;text-transform:uppercase;
  padding:.4rem .8rem;border:1px solid rgba(156,147,132,.4);border-radius:999px;
  background:rgba(11,10,8,.55);
}
.about-photo.img-ph{min-height:340px;}
.img-ph.business-image{min-height:280px;}
.img-ph.ledger-logo{min-height:120px;max-width:220px;}


/* ---- MOBILE NAV TOGGLE (hamburger) ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid rgba(207, 160, 75, .35);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-bright);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .nav-toggle { display: flex; order: 2; margin-left: auto; }
  .nav-links {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 4px;
    margin-top: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 8px; border-radius: 8px; }
  .nav-links a:hover,
  .nav-links a.active { background: rgba(207, 160, 75, .12); }
}

/* ---- FAQ ACCORDION ---- */
.swirl-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.swirl-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/sidebar-horizontal.png") no-repeat center;
  background-size: cover;
  mix-blend-mode: screen;
  opacity: 0.4;
  pointer-events: none;
  z-index: 4;
}
.faq {
  max-width: 820px;
}
.faq-group-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold);
  margin: 30px 0 12px;
}
.faq-group-title:first-child {
  margin-top: 0;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(207, 160, 75, 0.6);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  position: relative;
  font-weight: 600;
  color: var(--cream);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--gold-bright);
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-answer {
  padding: 0 20px 18px;
  color: var(--muted);
}
.faq-answer p {
  margin: 0;
}
