:root {
  --ink: #0E2A3D;
  --ink-2: #123049;
  --ink-soft: #4C6072;
  --paper: #FAF7F1;
  --paper-2: #F1EBDD;
  --card: #FFFFFF;
  --gold: #AD8A45;
  --gold-light: #D9C08B;
  --gold-dark: #8C6F33;
  --brick: #9C3A2C;
  --line: #E4DDCB;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
}

body {
  margin: 0;  
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Libre Baskerville', serif;
  margin: 0;
  font-weight: 500;
}

.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  min-width: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ===== Top utility bar ===== */
.topbar {
  background: #17435E;
  color: #CBD8DE;
  font-size: 13px;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 12px 16px;
  flex-wrap: wrap;
}

.topbar .left,
.topbar .right {
  display: flex;
  gap: 12px 22px;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
}

.topbar a {
  color: #CBD8DE;
  opacity: .9;
}

.topbar a:hover {
  color: var(--gold-light);
}

.topbar-short {
  display: none;
}

.topbar .divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .2);
  flex: none;
}

/* ===== Main nav ===== */
header.nav {
  background: var(--card);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 18px;
  min-width: 0;
  width: 100%;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: none;
  min-width: 0;
  max-width: 100%;
}

.brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  white-space: nowrap;
}

.brand-text .t1 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  white-space: nowrap;
}

.brand-text .t2 {
  font-size: 9.5px;
  letter-spacing: .06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  white-space: nowrap;
}

nav.links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

nav.links a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  position: relative;
  padding: 8px 0 10px;
  white-space: nowrap;
}

nav.links a:hover {
  color: var(--gold-dark);
}

nav.links a.active {
  color: var(--gold-dark);
}

nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .25s ease;
}

nav.links a:hover::after,
nav.links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.nav-menu-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}

.btn-outline {
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.btn-line {
  border-color: var(--ink);
  color: var(--ink);
}

.btn-line:hover {
  background: var(--ink);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  background: radial-gradient(1100px 520px at 82% 0%, #1d5474 0%, #17435E 48%, #123049 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0 150px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -.02em;
  max-width: 11ch;
}

.hero-tag {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--gold-light);
  margin: 14px 0 0;
}

.hero p.lede {
  font-size: 16.5px;
  line-height: 1.75;
  color: #C3D1D9;
  max-width: 520px;
  margin: 22px 0 32px;
}

.hero .cta-row {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 24px;
}

.stat {
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.stat .num {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: #fff;
}

.stat .lbl {
  font-size: 12px;
  color: #9FB2BD;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  justify-content: flex-end;
}

.hero-photo {
  margin: 0;
  width: 78%;
  max-width: 420px;
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(217, 192, 139, .45);
  background: #123049;
  box-shadow: 0 28px 50px -24px rgba(5, 20, 30, .55);
  position: relative;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 67, 94, .22), transparent 42%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.hero-seal {
  position: absolute;
  left: 0;
  bottom: 38px;
  width: 148px;
  height: 148px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 10px;
  border: 1px solid var(--gold-light);
  box-shadow: 0 18px 40px -16px rgba(5, 20, 30, .55);
  z-index: 2;
}

/* ===== Quick access cards (overlap navy / cream split) ===== */
.quick-access {
  margin-top: -110px;
  position: relative;
  z-index: 5;
}

.qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.qa-card {
  background: var(--card);
  padding: 30px 26px 26px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 20px 45px -20px rgba(14, 42, 61, .35);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qa-card .icon {
  width: 38px;
  height: 38px;
  color: var(--gold-dark);
}

.qa-card h3 {
  font-size: 18px;
  color: var(--ink);
}

.qa-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1;
}

.qa-card .go {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.qa-card:hover {
  box-shadow: 0 24px 50px -18px rgba(14, 42, 61, .45);
}

a.qa-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

section {
  padding: 112px 0;
}

section[id],
#dentists,
#contact {
  scroll-margin-top: 90px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head .eyebrow {
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 38px;
  color: var(--ink);
  line-height: 1.15;
}

.section-head.compact {
  margin-bottom: 28px;
}

.section-head-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-head-split .btn {
  flex: none;
  margin-bottom: 4px;
}

/* ===== About / Mission ===== */
.about {
  background: var(--card);
}

.about-split {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}

.about-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 36px 32px 40px;
  position: sticky;
  top: 110px;
}

.about-seal {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  margin: 0 auto 28px;
}

.about-aside blockquote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 20px;
}

.about-aside p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.about-main .eyebrow {
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.about-main h2 {
  font-size: 36px;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 28px;
}

.about-main p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 20px;
}

.about-lead::first-letter {
  font-family: 'Libre Baskerville', serif;
  font-size: 3.1em;
  float: left;
  line-height: .75;
  padding: 8px 10px 0 0;
  color: var(--gold-dark);
}

.about-main h3 {
  font-size: 26px;
  color: var(--ink);
  margin: 36px 0 16px;
}

.mission-track {
  list-style: none;
  margin: 28px 0 0;
  padding: 0 0 0 22px;
  border-left: 2px solid var(--gold-light);
}

.mission-track li {
  position: relative;
  padding: 0 0 26px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink);
}

.mission-track li:last-child {
  padding-bottom: 0;
}

.mission-track li::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border: 2px solid var(--card);
  box-sizing: border-box;
  border-radius: 50%;
}

/* ===== Membership ===== */
.membership {
  background: var(--paper);
}

.membership .section-head {
  margin-bottom: 20px;
}

.membership-intro {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 40px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.plan-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 28px 24px 26px;
}

.plan-card-featured {
  background: #17435E;
  border-color: #17435E;
  border-top-color: var(--gold-light);
  color: #fff;
}

.plan-term {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.plan-card-featured .plan-term {
  color: var(--gold-light);
}

.plan-card h3 {
  font-size: 26px;
  margin: 10px 0 6px;
  color: var(--ink);
}

.plan-card-featured h3 {
  color: #fff;
}

.plan-card .plan-fee {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}

.plan-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.plan-card-featured p {
  color: #C3D1D9;
}

.plan-card-featured .plan-fee {
  color: var(--gold-light);
}

.membership-note {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 28px 0 28px;
}

.membership .btn {
  width: fit-content;
}

/* ===== Leadership ===== */
.leadership {
  background: var(--card);
  border-top: 1px solid var(--line);
}

.lead-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.lead-board article {
  padding: 36px 48px 8px 0;
  border-right: 1px solid var(--line);
}

.lead-board article:last-child {
  border-right: none;
  padding: 36px 0 8px 48px;
}

.lead-role {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.lead-board h3 {
  font-size: 28px;
  color: var(--ink);
  margin: 0 0 16px;
}

.lead-board .clinic {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.65;
}

.lead-contact {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-contact a {
  color: var(--ink);
  font-weight: 500;
}

.lead-contact a:hover {
  color: var(--gold-dark);
}

/* ===== Events ===== */
.events {
  background: var(--paper);
}

.event-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.event-feature,
.event-past {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
}

.event-feature {
  background: #17435E;
  color: #fff;
}

.event-when {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 36px 20px;
  background: rgba(0, 0, 0, .18);
  border-right: 1px solid rgba(217, 192, 139, .35);
  text-align: center;
}

.event-month {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.event-day {
  font-family: 'Libre Baskerville', serif;
  font-size: 52px;
  line-height: 1;
  color: #fff;
}

.event-day-tba {
  font-size: 40px;
  letter-spacing: .04em;
}

.event-year {
  font-size: 13px;
  color: #9FB2BD;
  letter-spacing: .08em;
}

.event-body {
  padding: 40px 40px 36px;
}

.event-kicker {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0 10px;
}

.event-body h3 {
  font-size: 26px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.25;
}

.event-body p {
  margin: 0 0 6px;
  font-size: 15px;
  color: #C3D1D9;
  line-height: 1.6;
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.event-past-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0 0 10px;
}

.event-past {
  background: var(--card);
  border: 1px solid var(--line);
}

.event-past .event-when {
  background: var(--paper-2);
  border-right-color: var(--line);
}

.event-past .event-month {
  color: var(--gold-dark);
}

.event-past .event-day {
  font-size: 40px;
  color: var(--ink);
}

.event-past .event-year {
  color: var(--ink-soft);
}

.event-past .event-kicker {
  color: var(--gold-dark);
}

.event-past .event-body {
  padding: 28px 32px 26px;
}

.event-past .event-body h3 {
  font-size: 20px;
  color: var(--ink);
}

.event-past .event-body p {
  color: var(--ink-soft);
  font-size: 14px;
}

.events-page {
  padding-bottom: 80px;
  scroll-margin-top: 148px;
}

.events-archive {
  background: var(--card);
  border-top: 1px solid var(--line);
  scroll-margin-top: 148px;
}

.event-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  margin: 4px 0 8px;
}

.event-facts div {
  min-width: 180px;
}

.event-facts dt {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 4px;
}

.event-facts dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.event-gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.event-gallery figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.event-gallery img {
  width: 100%;
  height: auto;
  display: block;
  background: var(--paper-2);
}

.event-caption {
  display: block;
  padding: 12px 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

/* ===== Branches ===== */
.branches {
  background: var(--card);
  border-top: 1px solid var(--line);
}

.branches-intro {
  max-width: 640px;
  margin: -8px 0 36px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

.branch-list {
  column-count: 3;
  column-gap: 48px;
  column-rule: 1px solid var(--line);
}

.branch-list li {
  break-inside: avoid;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Libre Baskerville', serif;
  font-size: 17px;
  color: var(--ink);
}

.branch-list a {
  color: inherit;
}

.branch-list a:hover,
.branch-list a:focus-visible {
  color: var(--gold-dark);
}

/* ===== Inner page hero ===== */
.page-hero {
  background: radial-gradient(1100px 520px at 82% 0%, #1d5474 0%, #17435E 48%, #123049 100%);
  color: #fff;
  padding: 56px 0 72px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #9FB2BD;
  margin-bottom: 28px;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.page-hero .eyebrow {
  color: var(--gold-light);
  margin-bottom: 16px;
}

.page-hero h1 {
  font-size: 44px;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -.02em;
  max-width: 18ch;
}

.page-hero .lede {
  font-size: 16.5px;
  line-height: 1.75;
  color: #C3D1D9;
  max-width: 640px;
  margin: 18px 0 28px;
}

.page-hero .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Membership inner page ===== */
.membership-page {
  padding-bottom: 80px;
}

.membership-fees {
  background: var(--card);
  padding-top: 80px;
}

.membership-students {
  background: var(--paper);
}

.fee-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 28px;
}

.fee-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
}

.fee-legend span {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-dark);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 3px 8px;
  min-width: 2.4em;
  text-align: center;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--card);
  -webkit-overflow-scrolling: touch;
}

.table-scroll:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.fee-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.fee-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fee-table th,
.fee-table td {
  padding: 13px 14px;
  text-align: left;
  font-size: 13.5px;
  line-height: 1.45;
  vertical-align: top;
  white-space: nowrap;
}

.fee-table thead th {
  background: #17435E;
  color: #fff;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: normal;
  min-width: 88px;
}

.fee-table thead th:nth-child(2) {
  min-width: 168px;
}

.fee-table thead th:nth-child(n+3),
.fee-table tbody td:nth-child(n+3) {
  text-align: right;
}

.fee-table tbody th {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: normal;
  min-width: 168px;
}

.fee-table tbody th span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.fee-table tbody tr:nth-child(even) {
  background: var(--paper);
}

.fee-table tbody tr:hover {
  background: var(--paper-2);
}

.fee-table td {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.fee-table tbody th {
  border-bottom: 1px solid var(--line);
}

.fee-table thead th.col-highlight {
  background: var(--gold-dark);
  color: #fff;
}

.fee-table td.col-highlight {
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(173, 138, 69, .12);
}

.fee-table tbody tr:nth-child(even) td.col-highlight {
  background: rgba(173, 138, 69, .18);
}

.table-hint {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 18px 0 0;
}

.student-plan-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.student-plan-grid .plan-card .plan-fee {
  margin-bottom: 0;
}

.membership-students .membership-intro {
  margin-bottom: 32px;
}

.membership-join,
.publications-submit {
  background: var(--card);
  border-top: 1px solid var(--line);
}

.membership-join .section-head,
.publications-submit .section-head {
  margin-bottom: 20px;
}

.membership-join .membership-intro,
.publications-submit .membership-intro {
  margin-bottom: 36px;
}

/* ===== Publications inner page ===== */
.publications {
  background: var(--paper);
  padding-bottom: 80px;
}

.year-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.year-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  box-shadow: 0 10px 24px -20px rgba(14, 42, 61, .4);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.year-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 16px 32px -18px rgba(14, 42, 61, .45);
}

.year-card-latest {
  background: #17435E;
  border-color: #17435E;
  border-top-color: var(--gold-light);
  color: #fff;
}

.year-card-latest:hover {
  border-color: var(--gold-light);
}

.year-card header {
  padding: 18px 16px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.year-card-latest header {
  background: rgba(0, 0, 0, .18);
  border-bottom-color: rgba(217, 192, 139, .35);
}

.year-card h3 {
  font-size: 30px;
  margin: 8px 0 12px;
  color: var(--ink);
  letter-spacing: -.02em;
}

.year-card-latest h3 {
  color: #fff;
}

.year-card .year-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--card);
  border: 1px solid var(--gold-light);
  padding: 4px 8px;
}

.year-card-latest .year-meta {
  color: var(--gold-light);
  background: rgba(0, 0, 0, .22);
  border-color: rgba(217, 192, 139, .45);
}

.year-card .plan-term {
  color: var(--gold-dark);
  font-size: 12px;
  letter-spacing: .12em;
}

.year-card-latest .plan-term {
  color: var(--gold-light);
}

.issue-list {
  margin: 0;
  padding: 6px 0 10px;
  flex: 1;
}

.issue-list li {
  border-bottom: 1px solid var(--line);
}

.issue-list li:last-child {
  border-bottom: none;
}

.year-card-latest .issue-list li {
  border-bottom-color: rgba(255, 255, 255, .1);
}

.issue-list a,
.issue-missing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
}

.issue-list a {
  color: var(--ink);
}

.issue-list a:hover {
  color: var(--gold-dark);
  background: var(--paper-2);
}

.issue-list a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.year-card-latest .issue-list a {
  color: #fff;
}

.year-card-latest .issue-list a:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, .06);
}

.issue-file {
  font-family: 'Inter Tight', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-dark);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 2px 6px;
  flex: none;
}

.year-card-latest .issue-file {
  color: var(--gold-light);
  background: rgba(0, 0, 0, .18);
  border-color: rgba(217, 192, 139, .35);
}

.issue-missing {
  color: var(--ink-soft);
}

.year-card-latest .issue-missing {
  color: #9FB2BD;
}

.join-band {
  display: grid;
  grid-template-columns: 180px 1fr;
  overflow: hidden;
  background: #17435E;
  color: #fff;
}

.join-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 36px 20px;
  background: rgba(0, 0, 0, .18);
  border-right: 1px solid rgba(217, 192, 139, .35);
  text-align: center;
}

.join-seal {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  border: 1px solid var(--gold-light);
}

.join-aside-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.join-aside a {
  font-size: 13px;
  color: #C3D1D9;
  word-break: break-all;
}

.join-aside a:hover {
  color: var(--gold-light);
}

.join-body {
  padding: 40px 40px 36px;
}

.join-kicker {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin: 0 0 10px;
}

.join-body h3 {
  font-size: 26px;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.25;
}

.join-body p {
  margin: 0;
  font-size: 15px;
  color: #C3D1D9;
  line-height: 1.6;
  max-width: 640px;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ===== Office bearers inner page ===== */
.ob-subnav {
  position: sticky;
  top: 87px;
  z-index: 40;
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

.ob-subnav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 28px;
  min-height: 52px;
  align-items: center;
}

.ob-subnav a {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 14px 0 12px;
  border-bottom: 2px solid transparent;
}

.ob-subnav a:hover,
.ob-subnav a:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--gold);
  outline: none;
}

.branch-subnav nav {
  gap: 2px 22px;
}

.branch-subnav a {
  font-size: 11px;
  padding: 12px 0 10px;
}

.ob-state,
.ob-branches,
.ob-cc,
.ob-wdc {
  background: var(--paper);
}

.ob-council,
.ob-committee {
  background: var(--card);
}

.ob-state,
.ob-council,
.ob-branches,
.ob-committee,
.ob-cc,
.ob-wdc {
  scroll-margin-top: 150px;
  padding-bottom: 88px;
}

.ob-state .section-head,
.ob-council .section-head,
.ob-branches .section-head,
.ob-committee .section-head,
.ob-cc .section-head,
.ob-wdc .section-head {
  margin-bottom: 20px;
}

.ob-featured {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 8px 40px 28px;
  margin: 0 0 28px;
}

.ob-featured .lead-board {
  border-top: none;
}

.officer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.officer-card,
.branch-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  min-width: 0;
  box-shadow: 0 10px 24px -20px rgba(14, 42, 61, .4);
}

.officer-card {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 18px;
}

.officer-card h3,
.branch-person h3,
.ec-card h3 {
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 12px;
}

.officer-card h3:last-child {
  margin-bottom: 0;
}

.officer-card .clinic,
.branch-person .clinic,
.ec-card .clinic {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 14px;
  line-height: 1.6;
}

.officer-card .lead-contact,
.branch-person .lead-contact,
.ec-card .lead-contact {
  margin-top: auto;
  font-size: 13.5px;
}

.officer-card .lead-contact span,
.branch-person .lead-contact span,
.ec-card .lead-contact span {
  color: var(--ink);
}

.officer-card .lead-contact a,
.branch-person .lead-contact a,
.ec-card .lead-contact a {
  overflow-wrap: anywhere;
}

.ob-featured .lead-board article {
  padding: 28px 32px 8px 0;
}

.ob-featured .lead-board article:last-child {
  padding: 28px 0 8px 32px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.branch-card {
  display: flex;
  flex-direction: column;
  scroll-margin-top: 160px;
}

.branch-card header {
  padding: 16px 18px 14px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.branch-card header .plan-term {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: .12em;
}

.branch-card header h3 {
  font-size: 24px;
  margin: 8px 0 0;
  color: var(--ink);
}

.branch-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}

.branch-person {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.branch-person + .branch-person {
  border-left: 1px solid var(--line);
}

.branch-vacant {
  padding: 22px 18px;
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
}

.ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  background: var(--card);
}

.ec-card {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  min-width: 0;
}

.ec-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.ec-card:nth-child(4n + 3),
.ec-card:nth-child(4n + 4) {
  background: var(--paper);
}

.ec-card:nth-last-child(-n + 2) {
  border-bottom: none;
}

.ec-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-dark);
  padding-top: 4px;
}

.ec-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.ec-card .clinic {
  margin-bottom: 10px;
}

.ob-contact {
  background: var(--card);
  border-top: 1px solid var(--line);
}

.ob-contact .section-head {
  margin-bottom: 20px;
}

.ob-contact .membership-intro {
  margin-bottom: 36px;
}

/* ===== Coming soon ===== */
.coming-soon {
  background: var(--paper);
  min-height: 52vh;
  display: flex;
  align-items: center;
}

.coming-soon .wrap {
  max-width: 720px;
  text-align: center;
}

.coming-soon h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
  margin: 8px 0 18px;
}

.coming-soon p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

/* ===== Certified dentists ===== */
.cd-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.cd-card {
  display: flex;
  flex-direction: column;
}

.cd-card p {
  margin-bottom: 22px;
}

.cd-card .btn {
  width: fit-content;
  margin-top: auto;
}

/* ===== Footer ===== */
footer {
  background: #17435E;
  color: #B9C8D1;
  padding-top: 72px;
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-seal {
  width: 72px;
  height: 72px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  margin-bottom: 18px;
  border: 1px solid var(--gold-light);
}

.footer-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.footer-branch {
  font-family: 'Inter Tight', sans-serif;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
}

.footer-brand p:last-of-type {
  font-size: 14px;
  line-height: 1.7;
  color: #9FB2BD;
  max-width: 360px;
  margin: 0 0 16px;
}

.footer-mail {
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 500;
}

.footer-mail:hover {
  color: #fff;
}

.footer-col h5 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: none;
  letter-spacing: 0;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(217, 192, 139, .35);
}

.footer-person {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #9FB2BD;
  margin: 0 0 14px;
}

.footer-col a {
  color: #D5E0E6;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 12.5px;
  color: #9FB2BD;
  flex-wrap: wrap;
}

.footer-bottom span {
  display: block;
  line-height: 1.55;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.footer-bottom ul {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 100%;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(14, 42, 61, .28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, color .2s ease, visibility .25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--gold);
  color: var(--ink);
  outline: none;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* ===== Mobile ===== */
.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex: none;
}

.burger-lines,
.burger-lines::before,
.burger-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: relative;
  transition: transform .2s ease, top .2s ease, background .2s ease;
}

.burger-lines::before,
.burger-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger-lines::before {
  top: -6px;
}

.burger-lines::after {
  top: 6px;
}

header.nav.is-open .burger-lines {
  background: transparent;
}

header.nav.is-open .burger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

header.nav.is-open .burger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1240px) {
  .nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand burger"
      "links links";
    height: auto;
    min-height: 88px;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    grid-area: brand;
  }

  .burger {
    display: flex;
    grid-area: burger;
    z-index: 1;
  }

  .nav-cta {
    display: none;
  }

  nav.links {
    display: none;
    grid-area: links;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0 18px;
    border-top: 1px solid var(--line);
    margin-top: 8px;
  }

  header.nav.is-open nav.links {
    display: flex;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
  }

  nav.links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  nav.links a::after {
    display: none;
  }

  nav.links .nav-menu-cta {
    display: inline-flex;
    margin-top: 16px;
    justify-content: center;
    border-bottom: none;
    width: fit-content;
    padding: 11px 18px;
  }
}

@media(max-width:1080px) {
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .student-plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .year-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .officer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-split,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .topbar .left span:first-child,
  .topbar .left .divider {
    display: none;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 72px;
  }

  .footer-bottom ul {
    width: 100%;
    gap: 8px 18px;
  }

  .about-aside {
    position: static;
  }

  .lead-board {
    grid-template-columns: 1fr;
  }

  .lead-board article,
  .lead-board article:last-child {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .lead-board article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .ob-featured {
    padding: 4px 24px 20px;
  }

  .ob-featured .lead-board article,
  .ob-featured .lead-board article:last-child {
    padding: 28px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 0;
    justify-content: flex-start;
  }

  .hero-photo {
    width: min(100%, 380px);
    max-width: 380px;
    height: 420px;
    margin-left: 48px;
  }

  .hero-seal {
    width: 132px;
    height: 132px;
    bottom: 18px;
  }
}

@media(max-width:760px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .topbar {
    font-size: 12px;
  }

  .topbar .wrap {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    min-height: 36px;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .topbar .left,
  .topbar .right {
    width: auto;
    max-width: none;
    flex-wrap: nowrap;
    gap: 8px 10px;
  }

  .topbar .right {
    justify-content: flex-end;
    min-width: 0;
  }

  .topbar .right .divider {
    display: block;
  }

  .topbar-full {
    display: none;
  }

  .topbar-short {
    display: inline;
  }

  .topbar a {
    white-space: nowrap;
  }

  .hero .cta-row,
  .page-hero .cta-row,
  .join-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero .cta-row .btn,
  .page-hero .cta-row .btn,
  .join-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-tag {
    font-size: 20px;
  }

  .about-main h2 {
    font-size: 30px;
  }

  .hero-visual {
    min-height: 0;
    justify-content: flex-start;
  }

  .hero-photo {
    width: min(100%, 300px);
    max-width: 300px;
    height: 360px;
    margin-left: 40px;
  }

  .hero-seal {
    width: 104px;
    height: 104px;
    padding: 6px;
  }

  .stat {
    padding-right: 18px;
    margin-right: 18px;
  }

  .qa-grid {
    grid-template-columns: 1fr;
  }

  .quick-access {
    margin-top: -60px;
  }

  .plan-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding-bottom: 80px;
  }

  .footer-bottom ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 24px;
  }

  .footer-bottom a {
    display: block;
    padding: 7px 0;
    color: #D5E0E6;
  }

  .event-feature,
  .event-past {
    grid-template-columns: 1fr;
  }

  .event-when {
    flex-direction: row;
    gap: 12px;
    border-right: none;
    border-bottom: 1px solid rgba(217, 192, 139, .35);
    padding: 20px 24px;
  }

  .event-past .event-when {
    border-bottom-color: var(--line);
  }

  .event-day {
    font-size: 36px;
  }

  .event-day-tba {
    font-size: 28px;
  }

  .event-body,
  .event-past .event-body {
    padding: 28px 24px;
  }

  .event-gallery {
    gap: 20px;
  }

  .branch-list {
    column-count: 2;
    column-gap: 32px;
  }

  section {
    padding: 72px 0;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .section-head-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .coming-soon h1 {
    font-size: 30px;
  }

  .page-hero h1 {
    font-size: 32px;
    max-width: none;
  }

  .page-hero {
    padding: 40px 0 52px;
  }

  .student-plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .officer-grid,
  .branch-grid,
  .ec-grid,
  .branch-pair,
  .cd-grid {
    grid-template-columns: 1fr;
  }

  .branch-person + .branch-person {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .ec-card:nth-child(odd) {
    border-right: none;
  }

  .ec-card:nth-child(4n + 3),
  .ec-card:nth-child(4n + 4) {
    background: transparent;
  }

  .ec-card:nth-child(even) {
    background: var(--paper);
  }

  .ec-card:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .ec-card:last-child {
    border-bottom: none;
  }

  .ob-subnav {
    top: 73px;
  }

  .branch-subnav nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0 18px;
    scrollbar-width: thin;
  }

  .branch-subnav a {
    flex: none;
    white-space: nowrap;
  }

  .branch-card {
    scroll-margin-top: 140px;
  }

  .ob-featured {
    padding: 0 16px 8px;
  }

  .join-band {
    grid-template-columns: 1fr;
  }

  .join-aside {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(217, 192, 139, .35);
    padding: 20px 24px;
  }

  .join-seal {
    width: 56px;
    height: 56px;
  }

  .join-body {
    padding: 28px 24px;
  }

  .join-body h3 {
    font-size: 22px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }

  .brand-text .t1 {
    font-size: 12px;
  }

  .brand img {
    height: 36px;
  }
}

@media (max-width: 420px) {
  .topbar {
    font-size: 11.5px;
  }

  .topbar .wrap {
    gap: 8px;
  }

  .topbar .left,
  .topbar .right {
    gap: 6px 8px;
  }
}

@media (max-width: 340px) {
  .topbar .wrap {
    flex-wrap: wrap;
    row-gap: 3px;
  }

  .topbar .left,
  .topbar .right {
    flex: 1 1 100%;
  }

  .topbar .right {
    justify-content: space-between;
  }
}
