.guide-backbar {
  display: flex;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 50px) 0;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.guide-backbar a,
.guide-backbar button {
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  padding: 10px 12px;
  background: rgba(255,255,255,.045);
  color: rgba(232,237,244,.82);
  font: inherit;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.guide-backbar a:hover,
.guide-backbar button:hover {
  border-color: var(--line-strong);
  color: var(--paper-2);
}

.guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.guide-panel,
.guide-card,
.guide-note {
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}

.guide-panel {
  padding: clamp(20px, 3vw, 34px);
}

.guide-panel h2,
.guide-card h2,
.guide-note h2 {
  margin: 0 0 10px;
  color: var(--paper-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: .92;
  letter-spacing: -.055em;
}

.guide-panel p,
.guide-card p,
.guide-note p,
.guide-list li {
  color: rgba(232,237,244,.68);
  line-height: 1.65;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.guide-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .16), transparent);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 180ms ease,
    transform 420ms ease;
}

.guide-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--metal);
  opacity: .62;
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform 180ms ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.032));
  box-shadow: var(--shadow);
}

.guide-card:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.guide-card:hover::after {
  transform: scaleX(1);
}

.guide-card:focus-visible {
  outline: 2px solid rgba(247, 249, 252, .72);
  outline-offset: 3px;
}

.guide-card > * {
  position: relative;
  z-index: 1;
}

.guide-card h3,
.guide-note h3 {
  margin: 0 0 8px;
  color: var(--paper-2);
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.guide-kicker {
  color: var(--champagne);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.guide-card-link {
  margin-top: 16px;
  color: var(--champagne);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.guide-card:hover .guide-card-link {
  color: var(--paper-2);
  transform: translateX(3px);
}

.guide-note {
  padding: 18px;
}

.guide-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.guide-list li {
  border: 1px solid var(--line);
  border-radius: var(--sharp);
  padding: 14px;
  background: rgba(255,255,255,.045);
}

.guide-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--paper-2);
}

.guide-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.guide-check {
  border: 1px solid var(--line);
  border-left: 3px solid var(--champagne);
  border-radius: var(--sharp);
  padding: 14px;
  background: rgba(255,255,255,.045);
}

.guide-check b {
  display: block;
  margin-bottom: 4px;
  color: var(--paper-2);
}

.guide-check span {
  color: rgba(232,237,244,.66);
  line-height: 1.55;
}

.guide-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.guide-table th,
.guide-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px;
  color: rgba(232,237,244,.68);
  text-align: left;
  vertical-align: top;
}

.guide-table th {
  color: var(--paper-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.guide-table tr:last-child td {
  border-bottom: 0;
}

.guide-disclaimer {
  margin-top: 18px;
  border-left: 3px solid var(--champagne);
  padding: 12px 14px;
  color: rgba(232,237,244,.64);
  background: rgba(255,255,255,.035);
  line-height: 1.55;
}

.guide-cta-band {
  border: 1px solid var(--line-strong);
  border-radius: var(--sharp);
  padding: clamp(20px, 3vw, 30px);
  background: rgba(255,255,255,.05);
}

@media (max-width: 980px) {
  .guide-backbar {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-backbar a,
  .guide-backbar button {
    width: 100%;
    text-align: center;
  }

  .guide-hero,
  .guide-grid,
  .guide-grid.two,
  .guide-checklist {
    grid-template-columns: 1fr;
  }
}
