:root {
  --faq-brown: #2d2119;
  --faq-cream: #f4efe8;
  --faq-paper: #fbf8f2;
  --faq-gold: #c99659;
  --faq-copper: #a77748;
  --faq-ink: #211b17;
  --faq-muted: #665b52;
  --faq-line: rgba(45, 33, 25, .17);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--faq-ink); background: var(--faq-cream); font-family: 'DM Sans', sans-serif; }
a { color: inherit; }

.faq-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(145px, 14vw, 190px) 6vw clamp(46px, 5vw, 68px);
  color: #fff;
  background: var(--faq-brown);
}
.faq-hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.faq-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(36, 23, 15, .92), rgba(36, 23, 15, .5) 56%, rgba(36, 23, 15, .22)), linear-gradient(0deg, rgba(28, 18, 12, .72), transparent 55%); }
.faq-hero-content { position: relative; z-index: 1; width: min(100%, 1040px); }
.faq-kicker { margin: 0; color: #e1b985; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.faq-hero h1 { max-width: 900px; margin: 22px 0 0; font: 500 clamp(54px, 6.2vw, 88px)/.92 'Marcellus', Georgia, serif; letter-spacing: -.055em; }
.faq-hero h1 em { color: #e7c79e; font-weight: 500; }
.faq-hero-lead { max-width: 680px; margin: 26px 0 0; color: #e7ddd3; font-size: 15px; line-height: 1.7; }

.faq-main { padding: clamp(62px, 7vw, 98px) 6vw clamp(76px, 9vw, 130px); background: var(--faq-cream); }
.faq-intro { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); gap: clamp(42px, 8vw, 120px); align-items: end; padding-bottom: clamp(48px, 6vw, 78px); border-bottom: 1px solid var(--faq-line); }
.faq-intro h2 { max-width: 760px; margin: 18px 0 0; font: 500 clamp(48px, 6vw, 82px)/.98 'Marcellus', Georgia, serif; letter-spacing: -.05em; }
.faq-intro h2 em { color: var(--faq-copper); font-weight: 500; }
.faq-intro-copy p { margin: 0; color: var(--faq-muted); font-size: 14px; line-height: 1.85; }
.faq-intro-copy p + p { margin-top: 16px; color: #8a7d70; font-size: 11px; }

.faq-search {
  grid-column: 2;
  margin: 0;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--faq-line);
  background: var(--faq-paper);
}
.faq-search label { display: block; margin-bottom: 12px; color: var(--faq-copper); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.faq-search-row { display: grid; grid-template-columns: minmax(0, 1fr) 150px; }
.faq-search input,
.faq-search button { min-height: 60px; border: 1px solid var(--faq-brown); border-radius: 0; font: inherit; }
.faq-search input { width: 100%; padding: 0 20px; color: var(--faq-ink); background: transparent; font-size: 15px; outline: none; }
.faq-search input::placeholder { color: #8b8076; opacity: 1; }
.faq-search input:focus { box-shadow: inset 0 0 0 2px var(--faq-gold); }
.faq-search button { margin-left: -1px; color: #fff; background: var(--faq-brown); cursor: pointer; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: color .2s ease, background-color .2s ease; }
.faq-search button:hover,
.faq-search button:focus-visible { color: var(--faq-brown); background: var(--faq-gold); outline: none; }
.faq-search-status { margin: 13px 0 0; color: #7d7065; font-size: 11px; line-height: 1.5; }

.faq-layout { display: grid; grid-template-columns: minmax(210px, .32fr) minmax(0, 1fr); column-gap: clamp(38px, 7vw, 100px); row-gap: clamp(34px, 4vw, 52px); margin-top: clamp(42px, 5vw, 68px); }
.faq-aside { grid-row: 1 / span 2; align-self: start; position: sticky; top: 118px; }
.faq-aside span { display: block; color: var(--faq-copper); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.faq-aside p { max-width: 250px; margin: 18px 0 0; color: var(--faq-muted); font-size: 13px; line-height: 1.7; }
.faq-aside a { width: min(100%, 250px); min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 26px; padding: 10px 13px 10px 16px; border: 1px solid var(--faq-brown); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, background-color .2s ease; }
.faq-aside a .diamond-arrow { width: 28px; height: 28px; color: var(--faq-brown); border-color: currentColor; }
.faq-aside a:hover,
.faq-aside a:focus-visible { color: #fff; background: var(--faq-brown); outline: none; }
.faq-aside a:hover .diamond-arrow,
.faq-aside a:focus-visible .diamond-arrow { color: var(--faq-brown); border-color: var(--faq-gold); background: var(--faq-gold); }

.faq-list { grid-column: 2; min-width: 0; }
.faq-group + .faq-group { margin-top: clamp(46px, 6vw, 78px); }
.faq-group h3 { margin: 0; padding: 0 0 18px; color: var(--faq-copper); border-bottom: 1px solid var(--faq-line); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.faq-item { border-bottom: 1px solid var(--faq-line); }
.faq-item[hidden],
.faq-group[hidden] { display: none; }
.faq-item summary { position: relative; padding: 27px 64px 27px 0; cursor: pointer; list-style: none; font: 500 clamp(23px, 2.4vw, 34px)/1.2 'Marcellus', Georgia, serif; letter-spacing: -.025em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; top: 50%; right: 0; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--faq-line); border-radius: 50%; transform: translateY(-50%); transition: color .2s ease, background-color .2s ease, transform .2s ease; }
.faq-item[open] summary::after { color: #fff; background: var(--faq-brown); transform: translateY(-50%) rotate(45deg); }
.faq-item p { max-width: 900px; margin: -3px 0 28px; color: var(--faq-muted); font-size: 14px; line-height: 1.85; }
.faq-item p a { color: #765231; text-underline-offset: 3px; }
.faq-search-empty { margin: 0; padding: 36px 0; color: var(--faq-muted); border-top: 1px solid var(--faq-line); border-bottom: 1px solid var(--faq-line); font-size: 14px; line-height: 1.7; }

.faq-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 36px; align-items: end; margin-top: clamp(70px, 9vw, 120px); padding: clamp(38px, 5vw, 70px); color: #fff; background: var(--faq-brown); }
.faq-cta h2 { max-width: 760px; margin: 18px 0 0; font: 500 clamp(42px, 5.5vw, 76px)/1 'Marcellus', Georgia, serif; letter-spacing: -.045em; }
.faq-cta h2 em { color: #e7c79e; font-weight: 500; }
.faq-cta-actions { display: grid; gap: 12px; min-width: 260px; }
.faq-cta-actions a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 58px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.34); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.faq-cta-actions a:first-child { color: var(--faq-brown); border-color: var(--faq-gold); background: var(--faq-gold); }

@media (max-width: 900px) {
  .faq-hero { min-height: 480px; padding-right: 24px; padding-left: 24px; }
  .faq-hero h1 { font-size: 54px; }
  .faq-main { padding: 64px 24px 80px; }
  .faq-intro, .faq-layout, .faq-cta { grid-template-columns: 1fr; }
  .faq-intro h2 { font-size: 50px; }
  .faq-aside,
  .faq-search,
  .faq-list { grid-column: auto; grid-row: auto; }
  .faq-aside { position: static; }
  .faq-aside a { width: 100%; max-width: none; }
  .faq-cta-actions { min-width: 0; }
}

@media (max-width: 520px) {
  .faq-hero { min-height: 420px; padding: 140px 18px 38px; }
  .faq-hero h1 { margin-top: 18px; font-size: 43px; }
  .faq-hero-lead { margin-top: 20px; font-size: 13px; line-height: 1.6; }
  .faq-main { padding: 54px 18px 70px; }
  .faq-intro h2 { font-size: 42px; }
  .faq-intro { gap: 28px; padding-bottom: 38px; }
  .faq-search { padding: 20px 16px; }
  .faq-search-row { grid-template-columns: 1fr; gap: 10px; }
  .faq-search input,
  .faq-search button { width: 100%; min-height: 54px; margin: 0; }
  .faq-search input { padding: 0 15px; font-size: 13px; }
  .faq-layout { margin-top: 34px; }
  .faq-aside { padding-bottom: 4px; }
  .faq-group + .faq-group { margin-top: 48px; }
  .faq-item summary { padding: 22px 50px 22px 0; font-size: 22px; }
  .faq-item summary::after { width: 32px; height: 32px; }
  .faq-item p { margin-bottom: 23px; font-size: 13px; line-height: 1.75; }
  .faq-cta { padding: 34px 22px; }
  .faq-cta h2 { font-size: 40px; }
}
