@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --ink: #14181f;
  --paper: #f7f5f0;
  --card: #ffffff;
  --accent: #1f6f63;
  --accent-2: #7b4b8a;
  --brass: #c9a227;
  --brass-dark: #a4831c;
  --teal: #1f6f63;
  --slate: #55606e;
  --line: #e4e0d6;
  --danger: #b3402f;
  --soft: #f4efe6;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.16), transparent 24%),
    linear-gradient(135deg, #fcf8ef 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Site header / footer ---------- */

.site-header {
  background: linear-gradient(135deg, #111827 0%, #243449 100%);
  color: var(--paper);
  border-bottom: 3px solid var(--brass);
  box-shadow: 0 10px 40px rgba(20, 24, 31, 0.12);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.site-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.brand-text strong {
  color: white;
  font-size: 1.05rem;
}

.brand span { color: var(--brass); }

.site-header nav a {
  text-decoration: none;
  color: var(--paper);
  opacity: 0.85;
  font-size: 0.92rem;
  margin-left: 20px;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 8px;
}

.site-header nav a:hover { opacity: 1; }

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 80px;
  padding: 28px 0;
  color: var(--slate);
  font-size: 0.85rem;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--line);
  overflow: clip;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 420px;
  height: 420px;
  right: -130px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 111, 99, 0.24), rgba(31, 111, 99, 0));
}

.hero::after {
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.24), rgba(201, 162, 39, 0));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass-dark);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.9rem;
  font-weight: 800;
  max-width: 12ch;
  line-height: 1.04;
  text-wrap: balance;
}

.hero p {
  max-width: 56ch;
  color: var(--slate);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 500;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brass-dark);
  font-size: 1.4rem;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy,
.hero-visual,
.banner-panel,
.feature-card,
.about-layout,
.why-card,
.agenda-row {
  animation: home-rise-in 650ms ease both;
}

.hero-visual {
  animation-delay: 80ms;
}

.banner-panel {
  animation-delay: 120ms;
}

.feature-card:nth-child(1) {
  animation-delay: 150ms;
}

.feature-card:nth-child(2) {
  animation-delay: 210ms;
}

.feature-card:nth-child(3) {
  animation-delay: 270ms;
}

.image-stack {
  position: absolute;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20, 24, 31, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-visual:hover .image-stack-main {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(20, 24, 31, 0.23);
}

.hero-visual:hover .image-stack-small.top {
  transform: translate(-2px, -5px);
}

.hero-visual:hover .image-stack-small.bottom {
  transform: translate(4px, 4px);
}

.image-stack img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack-main {
  width: 88%;
  height: 380px;
  right: 0;
  top: 18px;
}

.image-stack-small {
  width: 42%;
  height: 160px;
}

.image-stack-small.top {
  left: 0;
  top: 0;
}

.image-stack-small.bottom {
  left: 26px;
  bottom: 0;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 18px;
  background: rgba(20, 24, 31, 0.82);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 18px 30px rgba(20,24,31,0.18);
}

.hero-badge strong {
  font-size: 1.5rem;
  font-family: var(--font-display);
  line-height: 1;
}

.hero-badge span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 10px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(20, 24, 31, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card-image {
  overflow: hidden;
  padding: 0;
}

.feature-card-image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.feature-card-image h3,
.feature-card-image p {
  padding-left: 20px;
  padding-right: 20px;
}

.feature-card-image h3 {
  padding-top: 18px;
  margin-bottom: 8px;
}

.feature-card-image p {
  padding-bottom: 20px;
  margin: 0;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(31, 111, 99, 0.12);
  border-color: rgba(31, 111, 99, 0.28);
}

.feature-card-image:hover img {
  transform: scale(1.04);
  filter: saturate(1.06);
}

.about-section,
.why-section {
  margin-top: 50px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 12px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(20,24,31,0.04);
  backdrop-filter: blur(3px);
}

.about-copy h2,
.why-section h2 {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  margin-bottom: 14px;
}

.about-copy p {
  color: var(--slate);
  margin: 0 0 14px;
}

.about-points {
  display: grid;
  gap: 14px;
}

.about-point {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
}

.about-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.about-point span {
  color: var(--slate);
  font-size: 0.92rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.why-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(247,245,240,0.8));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px 18px 20px;
  box-shadow: 0 10px 26px rgba(20,24,31,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20,24,31,0.08);
}

.why-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(31,111,99,0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.why-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.94rem;
}

.banner-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 24px 0 24px;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(31, 111, 99, 0.95) 0%, rgba(123, 75, 138, 0.96) 100%);
  color: white;
  box-shadow: 0 16px 40px rgba(20, 24, 31, 0.12);
  position: relative;
  overflow: hidden;
}

.banner-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.28), rgba(255,255,255,0));
}

.banner-copy h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: white;
}

.banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 54ch;
}

.banner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.84rem;
  min-width: 220px;
  text-align: center;
}

.feature-card h3 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.feature-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ---------- Agenda board (signature listing) ---------- */

.board { margin: 48px 0; }

.board-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.board-heading h2 { font-size: 1.4rem; }

.board-count {
  font-family: var(--font-mono);
  color: var(--slate);
  font-size: 0.85rem;
}

.board-intro {
  max-width: 72ch;
  color: var(--slate);
  margin: 10px 0 22px;
}

.agenda-row {
  display: grid;
  grid-template-columns: 108px 1px 1fr;
  gap: 28px;
  padding: 24px 20px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(20, 24, 31, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.agenda-row::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.42) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.editorial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,244,235,0.87));
  border: 1px solid rgba(201,162,39,0.23);
  box-shadow: 0 16px 32px rgba(20, 24, 31, 0.05);
}

.agenda-card {
  display: grid;
  grid-template-columns: minmax(200px, 0.95fr) minmax(0, 1.55fr);
  gap: 18px;
  align-items: center;
}

.agenda-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(20, 24, 31, 0.08);
}

.agenda-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-badge {
  align-self: flex-start;
  display: inline-block;
  padding: 6px 10px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.3);
  color: var(--brass-dark);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.current-image-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.image-preview {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.agenda-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(20, 24, 31, 0.1);
}

.agenda-row:hover::after {
  transform: translateX(130%);
}

.agenda-row:hover .agenda-title { color: var(--accent); }

.date-stamp {
  font-family: var(--font-mono);
  text-align: left;
  background: var(--soft);
  border-radius: 14px;
  padding: 12px;
  height: fit-content;
}

.date-stamp .day {
  font-size: 2.1rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.date-stamp .month {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate);
  font-size: 0.78rem;
}

.date-stamp .year {
  color: var(--slate);
  font-size: 0.78rem;
}

.rule { background: var(--line); }

.agenda-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.1;
  transition: color 0.15s ease;
}

.agenda-meta {
  color: var(--slate);
  font-size: 0.92rem;
  margin-bottom: 10px;
}

.topic-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }

.tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--slate);
}

.agenda-footer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
}

.fee {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--ink);
}

.status-open {
  color: var(--teal);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-closed {
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.empty-state {
  padding: 60px 0;
  text-align: center;
  color: var(--slate);
}

@keyframes home-rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-visual,
  .banner-panel,
  .feature-card,
  .about-layout,
  .why-card,
  .agenda-row {
    animation: none;
  }

  .image-stack,
  .feature-card-image img,
  .agenda-row,
  .why-card {
    transition: none;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--brass-dark); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity: 0.9; }

.btn-block { display: block; width: 100%; }

/* ---------- Conference detail ---------- */

.detail-header { padding: 56px 0 24px; }

.detail-header .eyebrow {
  font-family: var(--font-mono);
  color: var(--brass-dark);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-header h1 { font-size: 2.1rem; margin-top: 8px; }

.conference-image {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 24, 31, 0.12);
  margin-top: 20px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .site-header .container,
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
    gap: 8px 14px;
  }

  .site-header nav a {
    margin-left: 0;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .banner-panel { flex-direction: column; align-items: flex-start; }

  .agenda-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 48px 0 32px;
  }

  .banner-panel {
    padding: 20px;
  }

  .detail-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .detail-header h1 { font-size: 1.8rem; }

  .agenda-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .rule {
    display: none;
  }

  .date-stamp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    width: fit-content;
  }

  .date-stamp .day {
    font-size: 1.5rem;
  }

  .agenda-thumbnail {
    height: 180px;
  }

  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }

  .info-card {
    padding: 18px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .admin-topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .page-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .row-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.info-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.info-row:last-child { border-bottom: none; }
.info-row .label { color: var(--slate); font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }

.price-line {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  margin: 6px 0 18px;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  max-width: 460px;
}

label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 6px;
}

input, textarea, select {
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 18px;
  background: var(--paper);
  color: var(--ink);
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}

textarea { min-height: 100px; resize: vertical; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkbox-row { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.checkbox-row input { width: auto; margin: 0; }
.checkbox-row label { margin: 0; text-transform: none; font-family: var(--font-body); font-size: 0.92rem; color: var(--ink); }

.alert {
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.alert-error { background: #fbeae6; color: var(--danger); border: 1px solid #f0c8bd; }
.alert-success { background: #eaf3f0; color: var(--teal); border: 1px solid #c8e0d9; }

/* ---------- Admin ---------- */

.admin-topbar {
  background: var(--ink);
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 3px solid var(--brass);
}
.admin-topbar .container { display: flex; justify-content: space-between; align-items: center; }
.admin-topbar a { color: var(--paper); text-decoration: none; }

.admin-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.admin-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--slate);
  padding: 10px 12px;
  border-bottom: 2px solid var(--ink);
}
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  vertical-align: top;
}
.admin-table tr:hover { background: rgba(201, 162, 39, 0.06); }

.row-actions { display: flex; gap: 10px; }
.row-actions form { display: inline; }
.link-btn {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--slate);
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.link-btn.danger { color: var(--danger); }
.hidden { display: none; }

.login-shell {
  max-width: 380px;
  margin: 100px auto;
  padding: 0 24px;
}

.page-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
}

.stripe-banner {
  background: #fbeae6;
  border: 1px solid #f0c8bd;
  color: var(--danger);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.88rem;
  margin-top: 24px;
}

/* ---------- FAQ page ---------- */

.faq-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}

.faq-intro {
  max-width: 70ch;
  color: var(--slate);
  margin-top: 8px;
}

.faq-layout {
  display: grid;
  gap: 18px;
}

.faq-section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 14px 28px rgba(20, 24, 31, 0.06);
}

.faq-section h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  list-style: none;
  padding-right: 18px;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--brass-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 10px 0 2px;
  color: var(--slate);
}

@media (max-width: 720px) {
  .faq-section {
    padding: 16px;
  }

  .faq-item summary {
    font-size: 0.97rem;
  }
}
