/* Reuse nav/footer styles inline to mirror index */
.nav-row {display:flex;align-items:center;justify-content:space-between;height:68px;}
.nav-brand {display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);font-family:var(--display);font-weight:700;font-size:22px;letter-spacing:-0.02em;}
.nav-brand img {width:44px;height:44px;border-radius:10px;}
.nav-links {display:flex;align-items:center;gap:clamp(18px,2.5vw,32px);}
.nav-link {font-family:var(--sans);font-size:14px;color:var(--ink-soft);text-decoration:none;padding:6px 0;position:relative;transition:color .3s;}
.nav-link:hover {color:var(--ink);}
.nav-link[data-active="true"] {color:var(--ink);}
.nav-link[data-active="true"]::after {content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;background:var(--plum);border-radius:2px;}

/* Page-specific */
.page-hero {
  position: relative;
  padding-top: clamp(56px, 7vw, 100px);
  padding-bottom: clamp(40px, 5vw, 80px);
  overflow: hidden;
}
.page-hero .blob {
  top: -120px;
  right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(closest-side, var(--plum-haze), transparent 70%);
  filter: blur(50px);
  opacity: 0.6;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .page-hero-grid { grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 5vw, 80px); }
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--plum-ink);
  margin: 28px 0 0;
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.page-hero p.lead {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
}
.page-hero .ctas {
  margin: 32px 0 0;
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* Phone showcase */
.phone-mockup-wrap {
  position: relative;
  max-width: clamp(320px, 36vw, 480px);
  margin: 0 auto;
  perspective: 1600px;
}
@media (min-width: 900px) {
  .page-hero-grid > .fade-up:first-child {
    position: relative;
    z-index: 2;
  }
  .phone-mockup-wrap {
    max-width: none;
    width: 150%;
    margin-left: -20%;
    z-index: 1;
  }
}
.phone-mockup-img {
  display: block;
  width: 100%;
  opacity: 0;
  transform: rotateY(-90deg) scale(0.96);
  transform-origin: center center;
  transition: opacity 0.9s var(--ease-out), transform 1.1s var(--ease-out);
}
.fade-up.in .phone-mockup-img,
.phone-mockup-wrap.in .phone-mockup-img {
  opacity: 1;
  transform: rotateY(0deg) scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .phone-mockup-img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.phone-screen {
  background: white;
  border-radius: clamp(20px, 3vw, 32px);
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.phone-header {
  padding: 14px 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-family: var(--sans);
  color: var(--ink-muted);
}
.phone-notch {
  width: 80px; height: 22px;
  background: var(--plum-ink);
  border-radius: 999px;
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
}
.phone-content {
  padding: 32px 14px 14px;
}
.phone-greeting {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.phone-greeting small {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 4px;
}
.phone-section {
  margin-top: 18px;
}
.phone-photo {
  border-radius: 16px;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.phone-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.5));
}
.phone-photo-tag {
  position: absolute;
  left: 12px; top: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--plum-deep);
  font-weight: 500;
  z-index: 1;
}
.phone-photo-caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  color: white;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.phone-chat {
  margin-top: 14px;
  background: var(--plum-wash);
  border-radius: 14px;
  padding: 12px;
}
.phone-chat .row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-chat .av {
  width: 28px; height: 28px;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
}
.phone-chat .name {
  font-size: 12px; font-weight: 500;
}
.phone-chat .msg {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.phone-chat .time {
  margin-top: 6px;
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* Steps */
.steps {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-wash);
}
.steps-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .steps-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  transition: all .5s var(--ease-out);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--plum-soft);
  box-shadow: var(--shadow-md);
}
.step .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--plum);
  font-feature-settings: "tnum";
}
.step h3 {
  margin: 16px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.step p {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Features illustrated */
.features {
  padding-block: clamp(80px, 10vw, 140px);
}
.features-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 800px) {
  .features-grid {
    grid-template-columns: 1.4fr 1fr;
    grid-auto-rows: minmax(220px, auto);
  }
}
.fbox {
  position: relative;
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: all .5s var(--ease-out);
  display: flex; flex-direction: column;
}
.fbox:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fbox.big {
  background: linear-gradient(160deg, var(--plum-deep), var(--plum));
  color: white;
  border-color: transparent;
}
.fbox.big h3 { color: white; }
.fbox.big p { color: rgba(255,255,255,.7); }
.fbox.dark { background: var(--plum-ink); color: white; border-color: transparent; }
.fbox.dark h3 { color: white; }
.fbox.dark p { color: rgba(255,255,255,.7); }
.fbox-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--plum);
}
.fbox.big .fbox-eyebrow, .fbox.dark .fbox-eyebrow { color: var(--plum-soft); }
.fbox h3 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.fbox p {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  flex: 1;
}
.fbox-visual {
  margin-top: 28px;
  height: 180px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* Photo box */
.fbox-photo {
  background-size: cover;
  background-position: center;
}

/* Chat illustration */
.illust-chat {
  position: relative;
  background: rgba(255,255,255,.04);
  height: 220px;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.illust-chat .bubble {
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  line-height: 1.4;
}
.illust-chat .bubble.them {
  background: rgba(255,255,255,.08);
  color: white;
  border-bottom-left-radius: 4px;
}
.illust-chat .bubble.me {
  background: var(--plum);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Menu illustration */
.illust-menu {
  background: var(--plum-wash);
  border-radius: 16px;
  padding: 16px;
  margin-top: 28px;
}
.illust-menu .day {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum-deep);
  font-weight: 600;
}
.illust-menu .item {
  margin-top: 10px;
  padding: 10px 12px;
  background: white;
  border-radius: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}
.illust-menu .item + .item { margin-top: 6px; }
.illust-menu .item strong { color: var(--ink); font-weight: 500; }

/* Calendar illustration */
.illust-cal {
  background: var(--plum-deep);
  border-radius: 16px;
  padding: 16px;
  color: white;
  margin-top: 28px;
}
.illust-cal .head {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-soft);
}
.illust-cal .date {
  margin-top: 8px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
}
.illust-cal .event {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  font-size: 13px;
  display: flex; gap: 10px; align-items: center;
}
.illust-cal .event .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--plum-soft);
}

/* Notifications illustration */
.illust-notif {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.illust-notif .notif-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
}
.illust-notif .notif-ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--plum-soft), var(--plum));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.illust-notif .notif-txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.illust-notif .notif-txt strong {
  font-size: 13px;
  font-weight: 600;
  color: white;
}
.illust-notif .notif-txt span {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.illust-notif .notif-time {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

/* Family avatars */
.illust-family {
  margin-top: 28px;
  display: flex;
  align-items: center;
}
.illust-family .favatar,
.illust-family .favatar-more {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: white;
  border: 2px solid var(--paper);
}
.illust-family .favatar + .favatar,
.illust-family .favatar-more { margin-left: -12px; }
.illust-family .favatar-more {
  background: var(--line);
  color: var(--ink-soft);
}

/* Footer reused */
.footer {padding-block:clamp(56px,7vw,100px);background:white;border-top:1px solid var(--line);}
.footer-grid {
  align-items: start;display:grid;grid-template-columns:1fr;gap:clamp(32px,4vw,64px);}
@media (min-width:800px) {.footer-grid{grid-template-columns:1.5fr 1fr 1fr 1fr;}}
.footer-brand { margin-top: 0; }
.footer-brand .display {
  margin-top: 0;font-size:30px;}
.footer-brand p {margin-top:14px;max-width:320px;color:var(--ink-soft);font-size:15px;line-height:1.55;}
.footer-col h4 {font-family:var(--sans);font-size:12px;letter-spacing:0.18em;text-transform:uppercase;color:var(--ink-muted);font-weight:500;margin:0 0 14px;}
.footer-col ul {list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px;}
.footer-col a {color:var(--ink-soft);text-decoration:none;font-size:15px;transition:color .3s;}
.footer-col a:hover {color:var(--plum);}
.footer-base {margin-top:clamp(48px,6vw,72px);padding-top:24px;border-top:1px solid var(--line);display:flex;flex-wrap:wrap;gap:16px 24px;justify-content:space-between;align-items:center;font-size:12px;color:var(--ink-muted);letter-spacing:0.06em;}
.footer-base a {color:var(--ink-muted);text-decoration:none;}
.footer-base a:hover {color:var(--ink);}

/* Section head reused */
.shead {max-width:720px;}
.shead h2 {margin:14px 0 0;font-family:var(--display);font-weight:700;font-size:clamp(40px,5.6vw,80px);line-height:0.96;letter-spacing:-0.035em;color:var(--ink);}
.shead h2 em {font-family:var(--serif);font-style:italic;font-weight:400;color:var(--plum);}
.shead p {margin:20px 0 0;font-size:17px;line-height:1.6;color:var(--ink-soft);max-width:560px;}

/* CTA strip */
.cta-strip {
  padding-block: clamp(60px, 7vw, 100px);
  background: var(--plum-wash);
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-strip-inner { grid-template-columns: 1.4fr auto; gap: 56px; }
}
.cta-strip h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--plum-ink);
  margin: 0;
}
.cta-strip h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum);
}
.cta-strip p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 480px;
}

/* App download — phone mockup + store badges */
.appdl {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--plum-deep);
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.appdl::before {
  content: "";
  position: absolute;
  top: -260px; left: -200px;
  width: 760px; height: 760px;
  background: radial-gradient(closest-side, var(--plum), transparent 65%);
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
}
.appdl::after {
  content: "";
  position: absolute;
  bottom: -240px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, var(--plum-soft), transparent 65%);
  filter: blur(60px);
  opacity: 0.25;
  z-index: -1;
}
.appdl-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (min-width: 980px) {
  .appdl-grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(60px, 7vw, 120px); }
}
.appdl-text .eyebrow { color: var(--plum-soft); }
.appdl-text h2 {
  margin: 14px 0 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: white;
  max-width: 14ch;
}
.appdl-text h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--plum-soft);
}
.appdl-text p {
  margin: 22px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  max-width: 500px;
}

.appdl-stores {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  text-decoration: none;
  color: white;
  transition: all .3s var(--ease-out);
  backdrop-filter: blur(8px);
}
.store-badge:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--plum-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.4);
}
.store-badge .ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.store-badge .t-small {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.6);
  line-height: 1;
  text-transform: uppercase;
}
.store-badge .t-big {
  margin-top: 3px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.appdl-qr-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.appdl-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px 28px;
}
.star-ic {
  flex-shrink: 0;
}
.appdl-meta .m .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.025em;
  color: white;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.appdl-meta .m .l {
  margin-top: 4px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,.55);
}
.appdl-qr {
  flex-shrink: 0;
  display: inline-block;
  padding: 14px;
  background: white;
  border-radius: 18px;
}
.appdl-qr img {
  display: block;
  width: 150px;
  height: 150px;
}

/* Phone mockup */
.appdl-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.appdl-mockup-img {
  display: block;
  width: 100%;
  max-width: 480px;
}
@media (min-width: 980px) {
  .appdl-mockup-img {
    max-width: none;
    width: 145%;
  }
}

@media (max-width: 980px) {
  .phone { transform: scale(0.85); transform-origin: center bottom; }
  .appdl-phones { min-height: 480px; }
}
@media (max-width: 600px) {
  .phone-ping { right: 0; }
}

/* Testimonials family — carousel */
.tquote {
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.tquote-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.tquote-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.tquote-arrow {
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  display: grid; place-items: center;
  cursor: pointer;
  transition: all .25s var(--ease-out);
}
.tquote-arrow:hover {
  background: var(--plum-ink);
  border-color: var(--plum-ink);
  color: white;
  transform: translateY(-2px);
}
.tquote-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}
.tquote-viewport {
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 18px, black calc(100% - 18px), transparent 100%);
}
.tquote-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 18px 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.tquote-track:active { cursor: grabbing; }
.tquote-track::-webkit-scrollbar { display: none; }
.tquote-card {
  flex: 0 0 min(440px, 86%);
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(24px, 2.8vw, 36px);
  position: relative;
  display: flex; flex-direction: column;
  transition: all .4s var(--ease-out);
}
.tquote-card:nth-child(odd) {
  background: linear-gradient(180deg, var(--plum-wash), var(--paper));
}
.tquote-card:hover {
  transform: translateY(-3px);
  border-color: var(--plum-soft);
  box-shadow: var(--shadow-md);
}
.tquote-card .qmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 80px;
  line-height: 0.6;
  color: var(--plum-soft);
  display: block;
  margin-bottom: -10px;
}
.tquote-card q {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: block;
  flex: 1;
}
.tquote-card q::before, .tquote-card q::after { content: ""; }
.tquote-card .foot {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tquote-card .av {
  width: 48px; height: 48px; border-radius: 999px;
  background-size: cover; background-position: center;
  box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--plum-soft);
}
.tquote-card .name { font-family: var(--display); font-weight: 600; font-size: 15px; }
.tquote-card .role { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }
.tquote-dots {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tquote-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition: all .3s;
  border: 0;
  padding: 0;
}
.tquote-dot.active {
  background: var(--plum);
  width: 28px;
}

/* FAQ reused */
.faq-section {padding-block:clamp(80px,10vw,140px);background:var(--plum-wash);}
.faq-list {margin-top:clamp(36px,4vw,56px);max-width:880px;}
details.faq {border-top:1px solid var(--line-strong);padding:28px 0;}
details.faq:last-child {border-bottom:1px solid var(--line-strong);}
details.faq summary {list-style:none;display:flex;justify-content:space-between;gap:20px;align-items:center;cursor:pointer;font-family:var(--display);font-weight:500;font-size:clamp(20px,2vw,26px);letter-spacing:-0.015em;line-height:1.2;}
details.faq summary::-webkit-details-marker {display:none;}
details.faq .chev {width:36px;height:36px;border:1px solid var(--line-strong);border-radius:999px;display:grid;place-items:center;color:var(--plum);transition:all .35s var(--ease-out);flex-shrink:0;}
details.faq[open] .chev {transform:rotate(45deg);background:var(--plum);color:white;border-color:var(--plum);}
details.faq .answer {margin-top:16px;max-width:720px;font-size:17px;line-height:1.6;color:var(--ink-soft);}
