/* Social Games — Light Catering */
.social-top-notice {
  background: linear-gradient(90deg, #2d6b50, #e4c04a);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.social-top-notice a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.social-badge--accent {
  background: var(--leaf);
  border-color: var(--leaf);
  color: #fff;
}

.social-badge--warn {
  background: #fff4e5;
  border-color: #ffd39a;
  color: #9a5b00;
}

.social-notice {
  background: #fff8e6;
  border-bottom: 1px solid #f0d78c;
  padding: 16px 0;
}

.social-notice-inner {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.social-notice-inner strong { color: var(--ink); }

.social-charter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-charter li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 18px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.social-charter li:hover {
  border-color: rgba(63,143,107,0.35);
  box-shadow: var(--shadow);
}

.social-charter h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--ink);
}

.social-charter p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.social-home-band {
  background: linear-gradient(135deg, #eef7f2 0%, #fff6df 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.social-home-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.social-home-band > article p {
  color: var(--ink-soft);
  margin-bottom: 20px;
  max-width: 620px;
}

.social-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-home-rg {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-home-rg .btn {
  border-radius: 50px;
  font-weight: 700;
}

/* —— Game cards (hub) —— */
.social-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-games-grid > li {
  list-style: none;
  min-width: 0;
}

.social-game-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(30, 50, 40, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.social-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 44px rgba(63, 143, 107, 0.18);
}

.social-game-card .game-card-img {
  position: relative;
  aspect-ratio: 16 / 11;
  margin: 0;
  overflow: hidden;
  background: #1e3228;
}

.social-game-card .game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.social-game-card:hover .game-card-img img {
  transform: scale(1.05);
}

.social-game-card .game-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 50, 40, 0.55) 100%);
  pointer-events: none;
}

.game-tag-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(30, 50, 40, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}

.game-cost-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--leaf);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 50px;
}

.social-game-card .game-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.social-game-card .game-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.social-game-card .game-card-body > p:not(.game-tag):not(.social-game-meta) {
  flex: 1;
  margin-bottom: 16px;
}

.social-game-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--leaf-deep);
  font-weight: 600;
  background: var(--mist);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.social-game-card .btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
}

/* —— Play pages —— */
.social-game-layout {
  padding: 36px 0 64px;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(63, 143, 107, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(228, 192, 74, 0.08), transparent),
    var(--paper);
}

.social-game-layout .game-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.social-game-layout .game-header h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  margin-top: 4px;
}

.social-game-layout .game-lead {
  color: var(--ink-soft);
  max-width: 540px;
  margin-top: 8px;
  line-height: 1.55;
}

.credits-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff, #eef7f2);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.credits-chip::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8925c, #3f8f6b);
  box-shadow: 0 0 0 3px rgba(63, 143, 107, 0.15);
}

.credits-chip b {
  color: var(--leaf);
  font-variant-numeric: tabular-nums;
}

.social-play-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 40px rgba(30, 50, 40, 0.08);
  max-width: 720px;
  margin: 0 auto;
}

.social-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.social-toolbar .stat-pill {
  background: var(--mist);
  border-radius: 50px;
  padding: 9px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.social-toolbar .stat-pill b { color: var(--leaf); }

.social-toolbar .btn {
  border-radius: 12px;
}

.social-toolbar .social-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.social-canvas-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    radial-gradient(circle at 25% 15%, rgba(228, 192, 74, 0.28), transparent 48%),
    radial-gradient(circle at 85% 85%, rgba(126, 184, 201, 0.22), transparent 42%),
    linear-gradient(160deg, #2d5242 0%, #1e3228 55%, #173028 100%);
  border-radius: 18px;
  padding: clamp(12px, 3vw, 24px);
  min-height: min(58vw, 380px);
  border: 1px solid rgba(228, 192, 74, 0.18);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2);
}

.social-canvas-wrap canvas {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.social-history {
  margin-top: 16px;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px 16px;
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid var(--line);
}

.social-history h3 {
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.social-history ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.social-history li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.social-history li:last-child { border-bottom: 0; }

.social-history .win { color: #b8860b; font-weight: 600; }

.social-game-note {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
  min-height: 1.4em;
  font-weight: 500;
}

.responsible-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.responsible-box h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.responsible-box p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.helpline-card {
  background: linear-gradient(160deg, #eef7f2, #fff6df);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--line);
}

.helpline-card .helpline-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--leaf);
  margin-bottom: 8px;
}

.helpline-card .helpline-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.helpline-card .helpline-num a {
  color: inherit;
}

.helpline-card p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0;
}

.social-disclaimer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 20px 0;
  font-size: 0.85rem;
  line-height: 1.55;
}

.social-disclaimer .wrap {
  max-width: var(--max);
}

.social-disclaimer strong { color: #fff; }

.social-disclaimer a {
  color: var(--sky);
}

.footer-rg-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  align-items: center;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(30, 50, 40, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-gate.show { display: flex; }

.age-gate-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}

.age-gate-box .age-pill {
  margin: 0 auto 16px;
  width: 56px;
  height: 56px;
  font-size: 1.1rem;
}

.age-gate-box h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.age-gate-box p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.age-locked { overflow: hidden; }

@media (max-width: 980px) {
  .social-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-games-grid > li:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .responsible-box,
  .social-charter {
    grid-template-columns: 1fr;
  }

  .social-home-band {
    padding: 28px 22px;
  }

  .social-toolbar .social-toolbar-actions {
    margin-left: 0;
    width: 100%;
  }

  .social-toolbar .social-toolbar-actions .btn {
    flex: 1;
    justify-content: center;
  }

  .credits-chip {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .social-games-grid,
  .social-games-grid > li:last-child {
    grid-template-columns: 1fr;
    max-width: none;
    grid-column: auto;
  }

  .social-play-panel {
    padding: 16px;
    border-radius: 16px;
  }

  .social-canvas-wrap {
    min-height: 280px;
    padding: 12px;
  }

  .page-hero {
    padding: 40px 0 32px;
  }

  .social-badge {
    font-size: 0.74rem;
    padding: 5px 10px;
  }

  .responsible-box {
    padding: 22px;
  }

  .helpline-card .helpline-num {
    font-size: 1.35rem;
  }
}

/* Light Catering social helpers */
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.88rem;
  border-radius: 999px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: transform .2s, border-color .2s, color .2s;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--leaf);
  color: var(--leaf-deep);
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  margin-bottom: 0.5rem;
}

.site-footer .footer-rg-badges a {
  display: inline;
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer .footer-rg-badges a:hover { color: var(--lemon); }

.age-pill {
  background: var(--leaf) !important;
}

.credits-chip b { color: var(--leaf-deep) !important; }

.game-cost-overlay { color: var(--leaf-deep) !important; }

.prose ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0.75rem 0 1.25rem;
}

.prose li {
  margin: 0.35rem 0;
  color: var(--ink-soft);
}

/* —— Homepage lounge strip (unique LC layout) —— */
.lounge-strip {
  position: relative;
  margin: 1rem 0 0;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(228, 192, 74, 0.18), transparent 55%),
    linear-gradient(165deg, #1e3228 0%, #2d6b50 52%, #1a3d30 100%);
  color: #fbf8f3;
  overflow: hidden;
}

.lounge-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ccircle cx='2' cy='2' r='1.2' fill='%23e4c04a' opacity='.18'/%3E%3C/svg%3E");
  opacity: .55;
  pointer-events: none;
}

.lounge-strip-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .lounge-strip-inner {
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
  }
}

.lounge-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lemon);
  margin-bottom: .85rem;
}

.lounge-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.6vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: .9rem;
  color: #fff;
}

.lounge-copy > p {
  color: rgba(251, 248, 243, 0.82);
  max-width: 34rem;
  margin-bottom: 1.35rem;
  font-size: 1.02rem;
}

.lounge-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.lounge-facts > div {
  border-left: 2px solid rgba(228, 192, 74, 0.55);
  padding: .15rem 0 .15rem .85rem;
}

.lounge-facts dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.55);
  margin-bottom: .2rem;
}

.lounge-facts dd {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
}

.lounge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
  margin-bottom: 1rem;
}

.lounge-link {
  color: rgba(251, 248, 243, 0.9);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lounge-link:hover { color: var(--lemon); }

.lounge-help {
  font-size: .86rem;
  color: rgba(251, 248, 243, 0.6);
  margin: 0;
}

.lounge-help a {
  color: var(--lemon);
  font-weight: 700;
  text-decoration: none;
}

.lounge-help a:hover { color: #fff; }

.lounge-stack {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
}

.lounge-tile {
  position: absolute;
  margin: 0;
  width: min(72%, 260px);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #1a3d30;
  color: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}

.lounge-tile img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.lounge-tile figcaption {
  display: block;
  padding: .65rem .9rem .8rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.35));
}

.lounge-tile--a {
  transform: rotate(-8deg) translate(-18%, -8%);
  z-index: 1;
}

.lounge-tile--b {
  transform: rotate(3deg) translate(8%, 4%);
  z-index: 2;
  width: min(78%, 280px);
}

.lounge-tile--c {
  transform: rotate(10deg) translate(22%, 22%);
  z-index: 3;
}

.lounge-strip:hover .lounge-tile--b {
  transform: rotate(1deg) translate(8%, 2%) scale(1.03);
}

@media (max-width: 899px) {
  .lounge-stack {
    min-height: 240px;
    margin-top: .5rem;
  }
  .lounge-facts {
    grid-template-columns: 1fr;
    gap: .55rem;
  }
  .lounge-tile--a { transform: rotate(-6deg) translate(-12%, -6%); }
  .lounge-tile--c { transform: rotate(8deg) translate(16%, 18%); }
}

/* —— Social hub page (unique LC layout) —— */
.hub-hero {
  padding: 3.25rem 0 2.75rem;
  background:
    linear-gradient(120deg, rgba(63, 143, 107, 0.12), transparent 45%),
    linear-gradient(180deg, #eef7f2 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}

.hub-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 860px) {
  .hub-hero-grid {
    grid-template-columns: 1.35fr .75fr;
    gap: 2.5rem;
  }
}

.hub-hero-mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--leaf-deep);
  margin-bottom: .65rem;
}

.hub-hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: .85rem;
}

.hub-hero-copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 36rem;
  margin-bottom: 1.4rem;
}

.hub-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.hub-text-link {
  font-weight: 600;
  color: var(--leaf-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hub-text-link:hover { color: var(--apricot); }

.hub-aside {
  background: var(--ink);
  color: rgba(251, 248, 243, 0.88);
  padding: 1.5rem 1.4rem 1.35rem;
  border-radius: 0 1.5rem 0 1.5rem;
  box-shadow: var(--shadow);
}

.hub-aside-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--lemon);
  margin-bottom: .85rem;
}

.hub-aside-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  display: grid;
  gap: .65rem;
}

.hub-aside-list li {
  font-size: .9rem;
  line-height: 1.45;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-aside-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hub-aside-list strong {
  color: #fff;
  font-weight: 700;
}

.hub-aside-help {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  margin: 0;
  padding-top: .25rem;
}

.hub-aside-help a {
  color: var(--lemon);
  font-weight: 700;
  font-size: .88rem;
}

.hub-aside-help a:hover { color: #fff; }

/* Course board — catering place-setting layout */
.course-board {
  position: relative;
  padding: 3.5rem 0 3.75rem;
  background:
    radial-gradient(ellipse 50% 40% at 0% 10%, rgba(228, 192, 74, 0.16), transparent 60%),
    radial-gradient(ellipse 45% 35% at 100% 80%, rgba(63, 143, 107, 0.12), transparent 55%),
    var(--paper);
}

.course-board-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid rgba(30, 50, 40, 0.1);
}

.course-board-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  margin: .35rem 0 .45rem;
  letter-spacing: -0.02em;
}

.course-board-head p {
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0;
}

.course-board-note {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--leaf-deep);
  padding: .55rem 1rem;
  border: 1.5px dashed rgba(63, 143, 107, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.35rem;
}

.course-row {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.1rem 1.1rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(251,248,243,0.96));
  border-left: 6px solid var(--leaf);
  box-shadow: none;
  border-radius: 0 1.5rem 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.course-row::after {
  content: '';
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(30, 50, 40, 0.08);
  box-shadow: 0 28px 0 rgba(30, 50, 40, 0.08), 0 56px 0 rgba(30, 50, 40, 0.08);
}

.course-row--lemon { border-left-color: var(--lemon); }
.course-row--leaf { border-left-color: var(--leaf); }
.course-row--apricot { border-left-color: var(--apricot); }

@media (min-width: 780px) {
  .course-row {
    grid-template-columns: 220px 1fr;
    gap: 1.75rem;
    padding: 1.25rem 2rem 1.25rem 1.25rem;
  }
}

.course-plate {
  position: relative;
  width: min(100%, 220px);
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid #fff;
  outline: 2px solid rgba(228, 192, 74, 0.55);
  outline-offset: 3px;
  background: var(--mist);
  box-shadow:
    inset 0 0 0 1px rgba(30, 50, 40, 0.06),
    0 14px 28px rgba(30, 50, 40, 0.12);
}

.course-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform .4s ease;
}

.course-row:hover .course-plate img {
  transform: scale(1.14);
}

.course-body {
  min-width: 0;
  padding-right: 1rem;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .85rem;
  align-items: center;
  margin-bottom: .55rem;
}

.course-seat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.course-cost {
  font-size: .78rem;
  font-weight: 700;
  color: var(--leaf-deep);
  background: var(--mist);
  padding: .28rem .7rem;
  border-radius: 999px;
}

.course-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin-bottom: .4rem;
  letter-spacing: -0.02em;
}

.course-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  max-width: 34rem;
  font-size: .98rem;
}

.course-body .btn {
  border-radius: 999px;
}

@media (max-width: 779px) {
  .course-row {
    border-radius: 1.25rem;
    border-left-width: 5px;
    text-align: center;
  }
  .course-body { padding-right: 0; }
  .course-meta { justify-content: center; }
  .course-row::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .course-plate img { transition: none; }
}

.hub-rules {
  padding: 2.75rem 0 3.5rem;
  background: #fff;
  border-top: 1px solid var(--line);
}

.hub-rules-bar {
  display: grid;
  gap: .5rem;
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.hub-rules-bar h2 {
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.hub-rules-bar p {
  color: var(--ink-soft);
}

.hub-rules-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .hub-rules-row { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.hub-rules-row li {
  padding: 0;
  background: none;
  border: none;
  border-top: 3px solid var(--lemon);
  padding-top: .9rem;
}

.hub-rules-row li span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--leaf-deep);
  margin-bottom: .35rem;
}

.hub-rules-row li strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: .35rem;
}

.hub-rules-row li p {
  margin: 0;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.hub-care {
  padding: 0 0 3.5rem;
}

.hub-care-inner {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 800px) {
  .hub-care-inner {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 2rem;
  }
}

.hub-care h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: .5rem;
}

.hub-care p {
  color: var(--ink-soft);
  margin: 0;
}

.hub-care-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.hub-phone {
  font-weight: 700;
  font-size: .9rem;
  color: var(--leaf-deep);
  width: 100%;
  margin-top: .25rem;
}

.hub-phone:hover { color: var(--apricot); }

@media (prefers-reduced-motion: reduce) {
  .lounge-tile { transition: none; }
}
