/* Murmure.travel — public site styles (v0.1)
 * Palette extracted from the brand SVG: green gradient + gold accent on cream.
 * No external dependencies: system sans for UI, Georgia for editorial body.
 * GDPR-friendly by design — zero Google Fonts call from the privacy page. */

:root {
  --green-dark: #112a1c;
  --green: #2d5a3f;
  --green-light: #447a55;
  --gold: #c9a84c;
  --cream: #faf7f0;
  --cream-dark: #d8d0c0;
  --ink: #1a1f1b;
  --ink-soft: #4a4f4b;
  --border: rgba(17, 42, 28, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.18), transparent 55%),
    linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}

.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.hero__icon {
  width: 96px;
  height: 96px;
  display: block;
  margin: 0 0 1rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.32));
}

.hero__brand {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-style: italic;
  color: var(--gold);
  margin: 0 0 2.2rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  color: var(--cream);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__tagline {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream-dark);
  max-width: 520px;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.hero__meta {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  color: rgba(250, 247, 240, 0.78);
  margin: 0 0 2.25rem;
  letter-spacing: 0.01em;
}

.hero__meta strong {
  color: var(--cream);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero__cta-meta {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.55);
}

/* ===== Phone mockup ===== */
.hero__phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 820px;
}

.hero__halo {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  filter: blur(10px);
}

.phone {
  position: relative;
  width: 380px;
  border-radius: 22px;
  overflow: visible;
  z-index: 1;
  flex-shrink: 0;
}

.phone__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transform: rotate(-5deg);
  transform-origin: center center;
  box-shadow:
    0 28px 56px rgba(17, 42, 28, 0.32),
    0 8px 20px rgba(17, 42, 28, 0.18);
}

.phone__shot {
  width: 100%;
  height: auto;
  display: block;
}

/* Notif card floating on hero phone */
.phone__notif {
  position: absolute;
  top: 32%;
  left: -34px;
  right: -34px;
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow:
    0 24px 48px rgba(17, 42, 28, 0.45),
    0 2px 4px rgba(17, 42, 28, 0.15);
  font-family: system-ui, -apple-system, sans-serif;
  transform: rotate(-2deg);
  z-index: 3;
  animation: notif-in 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s both;
}

@keyframes notif-in {
  0% { opacity: 0; transform: translateY(12px) rotate(-6deg); }
  100% { opacity: 1; transform: translateY(0) rotate(-2deg); }
}

.notif__dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.22);
  animation: notif-pulse 2s ease-out infinite;
}

@keyframes notif-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.22); }
  50% { box-shadow: 0 0 0 11px rgba(201, 168, 76, 0.04); }
}

.notif__title {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
  letter-spacing: -0.005em;
}

.notif__sub {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.notif__cta {
  color: var(--green);
  font-weight: 600;
}

/* ===== Experience section ===== */
.experience {
  background: var(--cream);
  padding: 5.5rem 1.5rem 4.5rem;
  position: relative;
}

.experience__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__title {
  font-family: Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--green-dark);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step__media {
  height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.phone--sm {
  width: 270px;
  border-radius: 18px;
}

.phone--sm .phone__frame {
  border-radius: 18px;
  transform: none;
  box-shadow:
    0 18px 36px rgba(17, 42, 28, 0.22),
    0 6px 14px rgba(17, 42, 28, 0.12);
}

.step__illustration {
  height: 460px;
  width: auto;
  max-width: 230px;
  opacity: 0.95;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.step__title {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--green-dark);
  margin: 0.25rem 0 0.65rem;
  letter-spacing: -0.01em;
}

.step__body {
  max-width: 280px;
}

.step__body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ===== Main column ===== */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

main h2 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

main h2:first-child { margin-top: 0; }

main h3 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin: 1.75rem 0 0.75rem;
}

main p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

main a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

main a:hover {
  color: var(--green-dark);
  text-decoration-thickness: 2px;
}

main strong {
  color: var(--ink);
  font-weight: 600;
}

main ul {
  padding-left: 1.5rem;
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
}

main li {
  margin-bottom: 0.4rem;
}

main table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.95rem;
}

main th, main td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

main th {
  background: rgba(68, 122, 85, 0.08);
  color: var(--green-dark);
  font-weight: 600;
}

main code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  background: rgba(68, 122, 85, 0.1);
  padding: 0.1em 0.35em;
  border-radius: 3px;
  font-size: 0.92em;
  color: var(--green-dark);
}

/* ===== Landing-specific ===== */
.cta {
  text-align: center;
  margin: 2.5rem 0;
}

.cta__btn {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.85rem 1.8rem;
  text-decoration: none;
  border-radius: 6px;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.35);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
  font-family: system-ui, -apple-system, sans-serif;
}

.feature {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature__title {
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.feature__body {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: #fff;
}

footer a {
  color: var(--ink-soft);
  text-decoration: none;
  margin: 0 0.6rem;
}

footer a:hover { color: var(--green-dark); }

footer .footer__brand {
  display: block;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 0.6rem;
  margin: 1rem auto 0;
  padding: 1rem 0 0;
  max-width: 720px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}

.langs a {
  color: var(--ink-soft);
  margin: 0;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
}

.langs a:hover {
  color: var(--green-dark);
  background: rgba(68, 122, 85, 0.08);
}

.langs a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 600;
  background: rgba(201, 168, 76, 0.12);
}

/* ===== Top-right language bar ===== */
.langbar {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 50;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.88rem;
}

.langbar summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 42, 28, 0.08);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(17, 42, 28, 0.12);
  transition: background 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.langbar summary::-webkit-details-marker { display: none; }
.langbar summary::marker { display: none; }

.langbar summary:hover,
.langbar[open] summary {
  background: #fff;
  box-shadow: 0 6px 20px rgba(17, 42, 28, 0.16);
}

.langbar .flag {
  font-size: 1.05rem;
  line-height: 1;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.langbar .label {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  color: var(--green-dark);
}

.langbar .caret {
  color: var(--ink-soft);
  transition: transform 0.2s ease;
}

.langbar[open] .caret { transform: rotate(180deg); }

.langbar ul {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  margin: 0;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid rgba(17, 42, 28, 0.08);
  border-radius: 12px;
  list-style: none;
  box-shadow: 0 14px 40px rgba(17, 42, 28, 0.2);
  min-width: 200px;
  animation: langbar-in 0.12s ease-out;
}

@keyframes langbar-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.langbar ul li { margin: 0; padding: 0; }

.langbar ul a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 0.75rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
  font-size: 0.92rem;
}

.langbar ul a:hover {
  background: rgba(68, 122, 85, 0.08);
  color: var(--green-dark);
}

.langbar ul a[aria-current="page"] {
  color: var(--green-dark);
  font-weight: 600;
  background: rgba(201, 168, 76, 0.12);
}

.langbar ul .flag {
  font-size: 1.15rem;
}

@media (max-width: 680px) {
  .langbar { top: 10px; right: 10px; }
  .langbar summary { padding: 0.35rem 0.65rem; font-size: 0.82rem; }
  .langbar .flag { font-size: 0.95rem; }
  .langbar .label { font-size: 0.75rem; }
  .langbar ul { min-width: 180px; font-size: 0.88rem; }
}

/* ===== Memo section ===== */
.memo {
  background: linear-gradient(180deg, var(--cream) 0%, #f2ede1 100%);
  padding: 5.5rem 1.5rem 5rem;
  border-top: 1px solid var(--border);
}

.memo__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 3.5rem;
  align-items: start;
}

.memo__visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 24px 50px rgba(17, 42, 28, 0.22),
    0 8px 20px rgba(17, 42, 28, 0.12);
}

.memo__visual img {
  width: 100%;
  height: auto;
  display: block;
}

.memo__visual figcaption {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(17, 42, 28, 0.5);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

.memo__body {
  display: flex;
  flex-direction: column;
}

.memo__eyebrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section__title--left {
  text-align: left;
  margin: 0 0 1rem;
  max-width: none;
}

.memo__context {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 1.75rem;
  max-width: 520px;
}

/* Player card */
.player {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: 0 6px 18px rgba(17, 42, 28, 0.06);
}

.player__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.player__play {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, transform 0.1s ease;
  padding: 0;
}

.player__play:hover {
  background: var(--green-dark);
  transform: scale(1.03);
}

.player__play:active {
  transform: scale(0.97);
}

.player__icon { display: block; }
.player__icon--pause { display: none; }
.player--playing .player__icon--play { display: none; }
.player--playing .player__icon--pause { display: block; }

.player__track {
  flex: 1;
  height: 6px;
  background: rgba(17, 42, 28, 0.1);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.player__progress {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 0.1s linear;
}

.player__time {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  min-width: 68px;
  text-align: right;
}

.player__selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.player__group {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-wrap: wrap;
}

.pill {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}

.pill:hover {
  color: var(--green-dark);
  border-color: var(--green-light);
}

.pill--active {
  background: var(--green-dark);
  color: var(--cream);
  border-color: var(--green-dark);
}

.pill--active:hover {
  background: var(--green);
  color: var(--cream);
}

/* Transcript disclosure */
.memo__transcript {
  margin-top: 1.25rem;
  font-family: Georgia, serif;
}

.memo__transcript summary {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.88rem;
  color: var(--green-dark);
  cursor: pointer;
  padding: 0.5rem 0;
  font-weight: 500;
  list-style: none;
}

.memo__transcript summary::-webkit-details-marker { display: none; }

.memo__transcript summary::before {
  content: "▸ ";
  color: var(--gold);
  display: inline-block;
  transition: transform 0.2s ease;
  margin-right: 0.25rem;
}

.memo__transcript[open] summary::before {
  content: "▾ ";
}

.memo__transcript #player-text {
  margin-top: 0.75rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.memo__transcript p {
  margin: 0 0 0.85rem;
}

.memo__disclosure {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 1.5rem 0 0;
  opacity: 0.75;
  line-height: 1.5;
}

/* ===== Coverage (France map) ===== */
.coverage {
  background: #fff;
  padding: 5.5rem 1.5rem 5rem;
  border-top: 1px solid var(--border);
}

.coverage__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.coverage__eyebrow {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.coverage .section__title {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1rem;
}

.coverage__body {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.coverage__map {
  margin: 0 auto 1.5rem;
  max-width: 760px;
}

.coverage__map img {
  width: 100%;
  height: auto;
  display: block;
}

.coverage__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
}

.legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend__dot--gold-hi { background: var(--gold); }
.legend__dot--gold-lo { background: var(--gold); opacity: 0.6; }
.legend__dot--green   { background: var(--green); opacity: 0.65; }

.coverage__sources {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  color: var(--ink-soft);
  opacity: 0.75;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== Why (differentiators) ===== */
.why {
  background: var(--green-dark);
  color: var(--cream);
  padding: 5.5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 168, 76, 0.12), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(68, 122, 85, 0.18), transparent 45%);
  pointer-events: none;
}

.why__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.why .section__title {
  color: var(--cream);
  margin-bottom: 3.5rem;
}

.why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.why__item {
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

.why__point {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--cream);
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.why__item p {
  font-size: 0.98rem;
  color: rgba(250, 247, 240, 0.78);
  line-height: 1.6;
  margin: 0;
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  padding: 5rem 1.5rem 5rem;
}

.faq__inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq__list {
  margin-top: 2rem;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__item summary {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  position: relative;
  line-height: 1.4;
}

.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { display: none; }

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.faq__item summary:hover {
  color: var(--green);
}

.faq__item p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  padding-right: 2rem;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 3rem;
    text-align: center;
  }
  .hero__text {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__phone { order: 2; min-height: 580px; }
  .hero__cta { justify-content: center; }
  .hero__tagline, .hero__meta { margin-left: auto; margin-right: auto; }

  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
  }
  .step__media { height: 510px; }
  .phone--sm { width: 220px; }
  .step__illustration { max-width: 200px; height: 400px; }
  .step__title { font-size: 1.15rem; }
  .step__body p { font-size: 0.9rem; }

  .memo__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .memo__visual { max-width: 560px; margin: 0 auto; }

  .why__list { grid-template-columns: 1fr; gap: 2rem; }
  .why { padding: 4rem 1.25rem 3.5rem; }
  .why .section__title { margin-bottom: 2.5rem; }
  .why__point { font-size: 1.15rem; }
  .faq { padding: 4rem 1.25rem 4rem; }
  .faq__item summary { font-size: 0.98rem; padding: 1rem 1.75rem 1rem 0; }
  .faq__item p { font-size: 0.93rem; }
}

@media (max-width: 680px) {
  .hero__inner { padding: 3rem 1.25rem 2.5rem; }
  .phone { width: 310px; }
  .hero__phone { min-height: 700px; }
  .phone__notif { left: -24px; right: -24px; }

  .experience { padding: 4rem 1.25rem 3rem; }
  .steps {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .step__media { min-height: 520px; }
  .phone--sm { width: 280px; }
  .step__illustration { max-width: 220px; height: 420px; }
  .step__body { max-width: 340px; }

  .memo { padding: 4rem 1.25rem 3.5rem; }
  .memo__context { font-size: 1rem; }
  .player__controls { gap: 0.75rem; }
  .player__play { width: 46px; height: 46px; }
  .player__selectors { gap: 0.75rem 1rem; }
  .pill { font-size: 0.78rem; padding: 0.3rem 0.7rem; }

  main { padding: 2.5rem 1.25rem; }
  main h2 { font-size: 1.25rem; }
  main table { font-size: 0.85rem; }
  main th, main td { padding: 0.4rem 0.5rem; }
}
