:root {
  --bg: #0b0a09;
  --bg-alt: #111009;
  --ink: #f3ece1;
  --ink-dim: #a89d8c;
  --ember: #c17f4a;
  --ember-bright: #e0a565;
  --line: rgba(243, 236, 225, 0.12);
  --serif: 'Fraunces', serif;
  --sans: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.5;
  overflow-x: hidden;
}

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

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ember-bright);
  font-weight: 500;
}

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* intro / enter gate */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  background-image: radial-gradient(circle at 50% 55%, rgba(193, 127, 74, 0.16), transparent 60%);
  transition: opacity 1s ease;
}

.intro--hidden {
  opacity: 0;
  pointer-events: none;
}

.intro__smoke {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intro__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.6s ease;
}

.intro--entering .intro__inner {
  opacity: 0;
  transform: translateY(-14px);
}

.intro__mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.6rem;
}

.intro__tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-dim);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}

.enter-btn {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  border: 1px solid var(--ember);
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, transform 0.3s ease, box-shadow 0.4s ease;
}

.enter-btn:hover {
  background: var(--ember);
  color: #0b0a09;
  transform: scale(1.06);
  box-shadow: 0 0 40px rgba(193, 127, 74, 0.35);
}

.enter-btn:disabled {
  cursor: default;
}

/* nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 1.75rem clamp(1.5rem, 5vw, 4rem);
  mix-blend-mode: difference;
}

.nav__mark {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
}

.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav__links a:hover { opacity: 1; }

@media (max-width: 920px) {
  .nav__links { display: none; }
}

/* hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero__ember {
  position: absolute;
  top: 50%; left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 900px;
  max-height: 900px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(193, 127, 74, 0.22) 0%, rgba(193, 127, 74, 0.06) 40%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

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

.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ember-bright);
}

.eyebrow { display: inline-block; margin-bottom: 1.5rem; }

.hero__sub {
  margin: 1.75rem auto 2.75rem;
  max-width: 520px;
  color: var(--ink-dim);
  font-size: 1.02rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid var(--ember);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.35s ease, color 0.35s ease, transform 0.2s ease;
}

.btn:hover {
  background: var(--ember);
  color: #0b0a09;
  transform: translateY(-2px);
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  margin-top: 3.5rem;
}

.hero__stat span {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--ember-bright);
}

.hero__stat p {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-dim);
}

.hero__scroll span {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--ember), transparent);
  animation: scrolldown 2s ease-in-out infinite;
}

.hero__scroll p {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.4; }
}

/* marquee */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  padding: 1.4rem 0;
  background: var(--bg-alt);
}

.marquee__track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* philosophy */
.philosophy {
  padding: clamp(6rem, 14vw, 10rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

@media (max-width: 800px) {
  .philosophy__grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.75rem;
  color: var(--ink);
}

.philosophy__text p:not(.lead) {
  max-width: 560px;
  color: var(--ink-dim);
  font-size: 1.02rem;
}

/* process */
.process {
  padding: clamp(6rem, 14vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}

.process__head {
  max-width: 620px;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.process__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}

.process__sub {
  color: var(--ink-dim);
  font-size: 1.02rem;
  max-width: 480px;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.process__card {
  background: var(--bg);
  padding: 2.75rem 2.25rem;
}

.process__num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ember-bright);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.process__card h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.process__card p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 340px;
}

/* design section */
.design {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

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

.design__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
}

#vessel-stage {
  position: relative;
  width: 280px;
  height: 520px;
}

#vessel-canvas,
#smoke-trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#smoke-trail-canvas {
  pointer-events: none;
}

.vessel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 340px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}

.vessel__cap {
  width: 60px;
  height: 34px;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #2a241d, #17130f);
  border: 1px solid rgba(243,236,225,0.08);
}

.vessel__body {
  width: 78px;
  flex: 1;
  margin-top: -4px;
  border-radius: 6px;
  background: linear-gradient(135deg, #efe6d8, #cabb9f 45%, #a8967a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: inset -10px 0 20px rgba(0,0,0,0.25), inset 6px 0 16px rgba(255,255,255,0.25);
}

.vessel__band {
  width: 100%;
  height: 3px;
  background: rgba(193, 127, 74, 0.55);
}

.vessel__tip {
  width: 78px;
  height: 46px;
  margin-top: -2px;
  border-radius: 4px 4px 30px 30px;
  background: linear-gradient(180deg, #c17f4a, #8f5a30);
}

.vessel__shadow {
  width: 140px;
  height: 24px;
  margin-top: 2rem;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, transparent 70%);
}

.design__copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0 2.5rem;
  max-width: 480px;
}

.specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.specs li {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.specs li:last-child { border-bottom: none; padding-bottom: 0; }

.specs__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ember-bright);
  font-size: 1.1rem;
  flex-shrink: 0;
  padding-top: 0.15rem;
}

.specs h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.specs p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 420px;
}

/* finish swatches */
.finishes {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.finishes__label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1rem;
}

.finishes__row {
  display: flex;
  gap: 0.9rem;
}

.finish-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--swatch);
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.finish-swatch:hover { transform: scale(1.1); }

.finish-swatch.is-active {
  border-color: var(--ember-bright);
  transform: scale(1.12);
}

.finishes__active {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
}

/* editions */
.editions {
  padding: clamp(6rem, 14vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}

.editions__head {
  max-width: 620px;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.editions__head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}

.editions__sub {
  color: var(--ink-dim);
  font-size: 1.02rem;
  max-width: 480px;
}

.editions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.editions__card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2.25rem;
  transition: border-color 0.3s ease;
}

.editions__card:hover { border-color: var(--ember); }

.editions__swatch {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--swatch);
  margin-bottom: 1.5rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.editions__card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.editions__card p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  min-height: 3.2em;
}

.editions__btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.editions__btn:hover {
  background: var(--ember);
  border-color: var(--ember);
  color: #0b0a09;
}

/* testimonials */
.testimonials {
  padding: clamp(5rem, 10vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials__eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.testimonials__grid blockquote {
  text-align: center;
}

.testimonials__grid p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
}

.testimonials__grid cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* cta banner */
.cta-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}

.cta-banner__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.cta-banner__inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.05;
}

.cta-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--ember);
  transition: gap 0.3s ease, color 0.3s ease;
}

.cta-banner__link:hover {
  gap: 1.3rem;
  color: var(--ember-bright);
}

.cta-banner__arrow {
  font-size: 1.1rem;
}

/* waitlist */
.waitlist {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  text-align: center;
}

.waitlist__inner { max-width: 560px; margin: 0 auto; }

.waitlist h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.75rem 0 1rem;
}

.waitlist__sub {
  color: var(--ink-dim);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.waitlist__form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist__form input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1rem 1.5rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.waitlist__form input::placeholder { color: var(--ink-dim); }
.waitlist__form input:focus { border-color: var(--ember); }

.waitlist__form button {
  padding: 1rem 2.2rem;
  border-radius: 999px;
  border: none;
  background: var(--ember);
  color: #0b0a09;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.waitlist__form button:hover { background: var(--ember-bright); transform: translateY(-2px); }

.waitlist__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--ink-dim);
}

.waitlist__note.success { color: var(--ember-bright); }

.waitlist__count {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}

.waitlist__count span {
  color: var(--ember-bright);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}

/* footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  font-size: 0.8rem;
  color: var(--ink-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__mark {
  font-family: var(--serif);
  letter-spacing: 0.1em;
  color: var(--ink);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a { transition: color 0.3s ease; }
.footer__links a:hover { color: var(--ember-bright); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Montelier brand marks (logo + wordmark) ---- */
.intro__logo {
  display: block;
  width: 120px;
  height: auto;
  margin: 0 auto 1.4rem;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.5));
}

/* Nav: render the gold logo true-to-colour (opt out of the difference blend) */
.nav { mix-blend-mode: normal; }
.nav__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  text-decoration: none;
}
.nav__logo {
  height: 34px;
  width: auto;
  display: block;
}
.nav__links a { color: var(--ink); }

.footer__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.footer__logo {
  height: 30px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .intro__logo { width: 92px; }
  .nav__mark span { font-size: 0.95rem; }
}

/* ---- FAQ ---- */
.faq {
  padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 6vw, 5rem);
  max-width: 960px;
  margin: 0 auto;
}
.faq__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.faq__head h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 0.4rem;
}
.faq__sub {
  color: var(--ink-dim);
  max-width: 40ch;
  margin: 1rem auto 0;
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.faq__q:hover { color: var(--ember-bright); }

/* plus / minus icon */
.faq__icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 16px;
  height: 1.5px;
  background: var(--ember);
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq__a p {
  color: var(--ink-dim);
  line-height: 1.7;
  font-size: 0.98rem;
  padding: 0 2.5rem 1.6rem 0.25rem;
  margin: 0;
  max-width: 62ch;
}
