/* Søgbar — design system + site styles. Static, no build step. */

/* ---------- Fonts (self-hosted subset, Latin + Danish) ---------- */
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-italic-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/publicsans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/publicsans-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Public Sans";
  src: url("../fonts/publicsans-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plexmono-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plexmono-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plexmono-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #f3f4ef;
  --paper-raised: #eaebe2;
  --paper-line: #e2e3da;
  --ink: #16241d;
  --ink-soft: #45524a;
  --ink-faint: #5b6660;
  --green-900: #0d1f18;
  --green-800: #15332a;
  --green-700: #1e4736;
  --green-600: #2c5942;
  --green-accent: #6fbe93;
  --line: rgba(22, 36, 29, 0.14);
  --line-strong: rgba(22, 36, 29, 0.3);
  --warn: #8b4a3c;
  --warn-bg: #ece0da;
  --good: #1e4736;
  --good-bg: #e1e8e0;
  --shadow-sm: 0 1px 2px rgba(13, 31, 24, 0.07);
  --shadow-md: 0 10px 30px -14px rgba(13, 31, 24, 0.35);
  --radius-sm: 7px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --container: 1180px;
  --edge: clamp(1.25rem, 4vw, 3rem);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100svh;
}
img,
svg {
  display: block;
  max-width: 100%;
}
button,
input,
textarea {
  font: inherit;
  color: inherit;
}
a {
  color: inherit;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
table {
  border-collapse: collapse;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Base ---------- */
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.35rem, 1.7rem + 2.9vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 1.45rem + 1.4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.5vw, 1.4rem);
}

p {
  color: var(--ink-soft);
  max-width: 62ch;
}

.lede {
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  color: var(--ink-soft);
}

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

a {
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.15em;
}

code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* ---------- Focus (visible everywhere, no exceptions) ---------- */
:focus {
  outline: none;
}
:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible {
  outline-color: var(--green-accent);
}

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--green-900);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.15s ease;
}
.skip-link:focus-visible {
  top: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--edge);
}

.section {
  padding-block: clamp(3.5rem, 3rem + 3vw, 6.5rem);
}

.section--raised {
  background: var(--paper-raised);
  border-block: 1px solid var(--paper-line);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 1.6rem + 1.6vw, 3.25rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green-600);
}

.eyebrow--on-dark {
  color: var(--green-accent);
}

.eyebrow--on-dark::before {
  background: var(--green-accent);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--green-800);
  color: #fdfdf9;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--green-700);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--green-900);
}
.btn--ghost:hover {
  border-color: var(--green-600);
  background: rgba(44, 89, 66, 0.06);
}

.btn--on-dark {
  background: var(--green-accent);
  color: var(--green-900);
}
.btn--on-dark:hover {
  background: #85cca6;
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.88rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 244, 239, 0.86);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--paper-line);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green-900);
  text-decoration: none;
}

.logo .logo-mark {
  display: inline-flex;
  color: var(--green-600);
}

.logo .logo-mark svg {
  width: 0.92em;
  height: 0.92em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 1vw + 0.5rem, 1.8rem);
}

.main-nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 0.3rem 0.1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:not(.btn):hover {
  color: var(--green-800);
  border-color: var(--green-600);
}

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

.header-phone {
  display: none;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (min-width: 62rem) {
  .header-phone {
    display: inline-block;
  }
}

@media (max-width: 61.9375rem) {
  .nav-toggle {
    display: inline-flex;
  }
  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 68px;
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--paper-line);
    padding: 1.25rem var(--edge) 2rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
    gap: 0.25rem;
  }
  .main-nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    box-shadow: var(--shadow-md);
  }
  .main-nav a:not(.btn) {
    padding: 0.75rem 0.1rem;
    border-bottom: 1px solid var(--paper-line);
  }
  .main-nav .btn {
    margin-top: 0.75rem;
    justify-content: center;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(3rem, 2.4rem + 3.5vw, 6rem) clamp(2.5rem, 2rem + 2vw, 4rem);
}

.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
}

@media (min-width: 60rem) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--green-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.hero-note {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  color: var(--ink-faint);
}

.hero-claim {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  color: var(--green-700);
  max-width: 42ch;
}

/* ---------- Citations strip (signature component) ---------- */
.strip-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  box-shadow: var(--shadow-md);
}

.strip-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.strip-card-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-faint);
}

.citations-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.strip-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.strip-col-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.strip-score {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 600;
}

.strip-score--bad {
  color: var(--warn);
}

.strip-score--good {
  color: var(--good);
}

.dots {
  display: flex;
  gap: 0.4rem;
}

.dot {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.dot--empty {
  border: 1.5px dashed var(--line-strong);
  color: var(--ink-faint);
  background: transparent;
}

.dot--filled {
  background: var(--good-bg);
  border: 1.5px solid var(--good);
  color: var(--good);
}

.strip-foot {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px dashed var(--paper-line);
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ---------- Trust bar ---------- */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  margin-top: clamp(2.5rem, 2rem + 2vw, 3.5rem);
  padding-top: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  border-top: 1px solid var(--paper-line);
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--green-600);
  flex-shrink: 0;
}

/* ---------- Method steps ---------- */
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 52rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -0.1rem;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--green-600);
  background: var(--paper);
  padding-right: 0.6rem;
}

.section--raised .step::before {
  background: var(--paper-raised);
}

.step h3 {
  margin-bottom: 0.6rem;
}

.section-note {
  margin-top: clamp(2rem, 1.7rem + 1.2vw, 2.75rem);
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line-strong);
  max-width: 62ch;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 46rem) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.price-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}

.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--paper-raised);
  color: var(--green-700);
}

.price-card .badge {
  margin-bottom: 0.9rem;
}

.price-card h3 {
  margin-bottom: 0.6rem;
}

.price-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.price-tiers li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--paper-line);
}

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

.price-tier-amount {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-800);
  white-space: nowrap;
}

.price-tier-desc {
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: right;
}

.price-card p {
  font-size: 0.96rem;
}

/* ---------- Example report ---------- */
.report-panel {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.report-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.3rem clamp(1.25rem, 1rem + 1vw, 2rem);
  background: var(--green-900);
  color: #fdfdf9;
}

.report-panel-head .tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.report-table-wrap {
  overflow-x: auto;
  position: relative;
}

.report-scroll-hint {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  padding: 0.6rem clamp(1.25rem, 1rem + 1vw, 2rem) 0;
  background: #fff;
}

@media (max-width: 47.9375rem) {
  .report-scroll-hint {
    display: flex;
  }
}

.report-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.report-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  font-weight: 500;
  padding: 0.9rem clamp(1.25rem, 1rem + 1vw, 2rem) 0.7rem;
  border-bottom: 1px solid var(--paper-line);
}

.report-table td {
  padding: 1rem clamp(1.25rem, 1rem + 1vw, 2rem);
  border-bottom: 1px solid var(--paper-line);
  vertical-align: top;
  color: var(--ink-soft);
}

.report-table tr:last-child td {
  border-bottom: none;
}

.report-table td:first-child {
  color: var(--ink);
  font-weight: 600;
  max-width: 20ch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pill--no {
  background: var(--warn-bg);
  color: var(--warn);
}

.pill--yes {
  background: var(--good-bg);
  color: var(--good);
}

.report-method {
  padding: clamp(1.25rem, 1rem + 1vw, 2rem);
  border-top: 1px dashed var(--paper-line);
  background: var(--paper-raised);
}

.report-method p {
  max-width: none;
  font-size: 0.94rem;
}

/* ---------- Cards / grid (about, results) ---------- */
.people-grid {
  display: grid;
  gap: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
}

@media (min-width: 46rem) {
  .people-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.person-card {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1.3rem + 1vw, 2.1rem);
  box-shadow: var(--shadow-sm);
}

.person-avatar {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: var(--green-800);
  color: #fdfdf9;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.person-card h3 {
  margin-bottom: 0.15rem;
}

.person-role {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--green-700);
  margin-bottom: 0.9rem;
  display: block;
}

.person-card p {
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-700);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s ease;
}

.linkedin-link:hover {
  border-color: var(--green-700);
}

.linkedin-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* ---------- Results (empty, designed) ---------- */
#resultater .badge {
  margin-bottom: 1.5rem;
}

.results-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 46rem) {
  .results-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-tile {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
}

.stat-tile .stat-value {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  color: var(--ink-faint);
  font-weight: 600;
}

.stat-tile .stat-label {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-top: 0.35rem;
}

.results-callout {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--green-900);
  color: rgba(253, 253, 249, 0.92);
}

.results-callout p {
  color: rgba(253, 253, 249, 0.8);
  margin: 0;
  max-width: 46ch;
}

.results-callout-title {
  color: inherit;
  margin-bottom: 0.35rem;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 52rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  padding: 0.2rem clamp(1.1rem, 1vw + 0.8rem, 1.6rem);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green-900);
}

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

.faq-item .faq-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-family: var(--font-mono);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}

.faq-item p {
  padding-bottom: 1.25rem;
  max-width: 60ch;
}

/* ---------- Contact ---------- */
.contact-panel {
  display: grid;
  gap: 1.5rem;
  background: var(--green-900);
  color: #fdfdf9;
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.4rem + 1.6vw, 3rem);
}

@media (min-width: 55rem) {
  .contact-panel {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-panel h2 {
  color: #fdfdf9;
}

.contact-panel p {
  color: rgba(253, 253, 249, 0.75);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(253, 253, 249, 0.18);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: #fdfdf9;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.contact-method:hover {
  background: rgba(253, 253, 249, 0.06);
  border-color: rgba(253, 253, 249, 0.4);
}

.contact-method .icon-wrap {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(253, 253, 249, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method .icon-wrap svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--green-accent);
}

.contact-method .label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(253, 253, 249, 0.6);
  display: block;
}

.contact-method .value {
  font-weight: 600;
  font-size: 1.02rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(253, 253, 249, 0.72);
  padding-block: clamp(2.5rem, 2rem + 2vw, 3.5rem) 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(253, 253, 249, 0.14);
}

@media (min-width: 55rem) {
  .footer-grid {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
  }
}

.footer-brand .logo {
  color: #fdfdf9;
}

.footer-brand .logo .logo-mark {
  color: var(--green-accent);
}

.footer-brand p {
  color: rgba(253, 253, 249, 0.62);
  margin-top: 0.9rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(253, 253, 249, 0.5);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: rgba(253, 253, 249, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #fdfdf9;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(253, 253, 249, 0.5);
}

.footer-bottom a {
  color: rgba(253, 253, 249, 0.5);
}

/* ---------- Legal page ---------- */
.legal {
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem);
  max-width: 42rem;
}

.legal h1 {
  margin-bottom: 1.2rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
}

.legal p,
.legal li {
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
}

.legal ul {
  list-style: disc;
  padding-left: 1.3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--green-700);
  text-decoration: none;
}

/* ---------- Utilities ---------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: var(--green-accent);
  color: var(--green-900);
}
