/* Restore Britain — Blackpool Branch
   Modernised styling — same brand, refreshed feel
   Primary navy: #051E40 · Accent red: #B53B50 */

:root {
  --navy: #051E40;
  --navy-2: #0a2a55;
  --navy-soft: #1a3a6b;
  --red: #B53B50;
  --red-2: #8c2e3d;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-tint: #eef2f8;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(5, 30, 64, 0.06);
  --shadow: 0 10px 30px rgba(5, 30, 64, 0.08);
  --shadow-lg: 0 24px 60px rgba(5, 30, 64, 0.14);
  --font-sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', 'Source Serif Pro', Georgia, 'Times New Roman', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700;9..144,800&display=swap');

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.18s ease, border-color 0.18s ease;
}

a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  margin-bottom: 0.8em;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--navy);
}

.logo-bar {
  padding: 22px 24px 14px;
  display: flex;
  justify-content: center;
  background: var(--navy);
}

.logo-bar a {
  display: block;
  border: 0;
}

.logo-bar img {
  width: 110px;
  height: 110px;
  transition: transform 0.25s ease;
  border-radius: 12px;
}

.logo-bar a:hover img { transform: scale(1.04); }

.nav-wrap {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 18px rgba(5, 30, 64, 0.18);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.main-nav li { position: relative; }

.main-nav a {
  display: block;
  padding: 18px 18px;
  color: #ffffff;
  border: 0;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.18s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  bottom: 12px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active,
.main-nav li:hover > a {
  color: #ffffff;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav li:hover > a::after {
  transform: scaleX(1);
}

.main-nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-2);
  min-width: 240px;
  flex-direction: column;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 10;
  overflow: hidden;
}

.main-nav li:hover > ul,
.main-nav li:focus-within > ul { display: flex; }

.main-nav li ul a {
  padding: 12px 18px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav li ul a::after { display: none; }
.main-nav li ul a:hover { background: rgba(255,255,255,0.06); }

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  padding: 14px 20px;
  cursor: pointer;
}

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

.hero {
  position: relative;
  background: var(--navy) url('assets/tower-hero.jpg') 30% center / cover no-repeat;
  color: #ffffff;
  text-align: left;
  padding: 130px 24px 150px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.20) 35%,
      rgba(0,0,0,0.30) 65%,
      rgba(5,30,64,0.75) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  color: #ffd9a8;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  margin-bottom: 0.35em;
  line-height: 1.02;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}

.hero .lede {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 2em;
  color: #ecf2fb;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff !important;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  border: 1px solid var(--navy);
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 16px rgba(5, 30, 64, 0.18);
}

.btn:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(5, 30, 64, 0.25); color: #fff !important; }
.btn:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.7);
  box-shadow: none;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #fff !important;
  box-shadow: none;
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 6px 16px rgba(181, 59, 80, 0.24);
}

.btn-red:hover { background: var(--red-2); border-color: var(--red-2); box-shadow: 0 10px 24px rgba(181, 59, 80, 0.30); }

.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--line);
  box-shadow: none;
}

.btn-ghost:hover { background: var(--bg-soft); color: var(--navy) !important; border-color: var(--navy); }

/* ---------- Sections ---------- */

section { padding: 88px 24px; }

.section-inner { max-width: 1140px; margin: 0 auto; }

.section-narrow { max-width: 780px; margin: 0 auto; }

.section-alt { background: var(--navy); color: #ffffff; }
.section-alt h1, .section-alt h2, .section-alt h3 { color: #ffffff; }
.section-alt a { color: #ffd97a; }

.section-light {
  background: var(--bg-soft);
}

.section-title {
  text-align: center;
  margin-bottom: 0.4em;
}

.section-sub {
  text-align: center;
  font-size: 1.08rem;
  margin-bottom: 2.6em;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-alt .section-sub { color: rgba(255,255,255,0.78); }

/* ---------- Join form / card ---------- */

.join-card {
  background: #ffffff;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  position: relative;
}

.join-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy) 60%, var(--red) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.join-card h2 { text-align: center; margin-bottom: 0.2em; }
.join-card .sub { text-align: center; color: var(--muted); margin-bottom: 1.8em; }

.form-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }

.form-row input,
.form-row select,
.form-row textarea,
.form-stack input,
.form-stack select,
.form-stack textarea {
  width: 100%;
  padding: 13px 20px;
  border: 3px solid var(--navy);
  border-radius: 20px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  color: var(--ink);
  font-weight: 500;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.form-stack input::placeholder,
.form-stack textarea::placeholder {
  color: #93a3bd;
  font-weight: 400;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 5px rgba(181, 59, 80, 0.14);
}

.form-stack { display: flex; flex-direction: column; gap: 14px; margin-bottom: 14px; }

.form-label {
  font-weight: 700;
  color: var(--navy);
  margin: 14px 0 8px;
  display: block;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.choice-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.choice-list li {
  border: 3px solid var(--navy);
  border-radius: 20px;
  padding: 14px 18px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.12s ease, box-shadow 0.18s ease;
}

.choice-list li:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(5, 30, 64, 0.1);
}

.choice-list li:has(input:checked) {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

.choice-list li:has(input:checked) strong { color: #ffffff; }

.choice-list label { cursor: pointer; display: inline-flex; align-items: center; gap: 10px; width: 100%; font-weight: 500; }

.choice-list input { accent-color: var(--red); transform: scale(1.1); }

.submit-row { text-align: center; margin-top: 22px; }

.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 12px; line-height: 1.55; }

/* ---------- Why / content section ---------- */

.why-section {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(181,59,80,0.14), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #ffffff;
  position: relative;
}

.why-section h1, .why-section h2 { color: #ffffff; }
.why-section a { color: #ffd97a; }

.why-section .section-inner { max-width: 880px; }

.why-section ul { padding-left: 0; list-style: none; }

.why-section ul li {
  margin-bottom: 14px;
  padding-left: 30px;
  position: relative;
}

.why-section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 14px; height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.pull-quote {
  border-left: 3px solid var(--red);
  padding: 8px 28px;
  margin: 36px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #ecf2fb;
}

.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd9a8;
}

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.card h3 { margin-top: 0; margin-bottom: 0.4em; }
.card p { color: var(--muted); margin: 0; }

.card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  font-family: var(--font-serif);
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(5, 30, 64, 0.18);
}

/* ---------- Gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover { transform: translateY(-3px) scale(1.01); box-shadow: var(--shadow); }

/* ---------- Candidate grid ---------- */

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.candidate {
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.candidate:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.candidate .avatar {
  width: 96px; height: 96px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #ffffff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--font-serif);
  box-shadow: 0 0 0 4px #ffffff, 0 0 0 6px var(--red);
}

.candidate h3 { margin-bottom: 4px; }
.candidate .ward {
  color: var(--red);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.candidate p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- CTA strip ---------- */

.cta-strip {
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: #ffffff;
  text-align: center;
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 0% 0%, rgba(255,255,255,0.12), transparent 60%);
  pointer-events: none;
}

.cta-strip h2 { color: #ffffff; margin-bottom: 0.3em; position: relative; }
.cta-strip p { font-size: 1.15rem; margin-bottom: 1.6em; opacity: 0.96; position: relative; }

.cta-strip .btn {
  background: #ffffff;
  color: var(--red) !important;
  border-color: #ffffff;
  position: relative;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.cta-strip .btn:hover {
  background: var(--navy);
  color: #ffffff !important;
  border-color: var(--navy);
}

/* ---------- Page header (inner pages) ---------- */

.page-header {
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(181,59,80,0.18), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #ffffff;
  padding: 80px 24px 70px;
  text-align: center;
  position: relative;
}

.page-header h1 { color: #ffffff; margin: 0 0 12px; }
.page-header p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: #cdd6e6;
  padding: 64px 24px 28px;
  text-align: center;
}

.site-footer .footer-logo {
  width: 90px;
  margin: 0 auto 18px;
  opacity: 0.95;
}

.site-footer a {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.25);
}
.site-footer a:hover { color: #ffd97a; border-bottom-color: #ffd97a; }

.footer-social { display: flex; gap: 14px; justify-content: center; margin: 14px 0 24px; }

.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.footer-social a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

.footer-social svg { width: 16px; height: 16px; fill: #ffffff; }

.footer-promoter {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  max-width: 760px;
  margin: 22px auto 6px;
  line-height: 1.55;
}

.footer-copy { font-size: 0.85rem; margin-top: 8px; color: rgba(255,255,255,0.75); }

/* ---------- Landing page (branch chooser) ---------- */

.landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--navy) url('assets/tower-hero.jpg') 30% center / cover no-repeat;
  background-attachment: fixed;
  color: #ffffff;
  padding: 40px 24px 32px;
  overflow: hidden;
}

.landing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, rgba(181,59,80,0.14), transparent 60%),
    radial-gradient(900px 500px at 10% 90%, rgba(255,217,122,0.06), transparent 60%),
    linear-gradient(180deg,
      rgba(5,30,64,0.80) 0%,
      rgba(5,30,64,0.62) 40%,
      rgba(5,30,64,0.72) 70%,
      rgba(5,30,64,0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

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

.landing-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.landing-logo {
  width: 120px; height: 120px;
  margin: 0 auto 24px;
}

.landing-head h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.3em;
}

.landing-head p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin: 0;
}

.branch-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  align-items: stretch;
}

.branch-card {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #ffffff;
  border-bottom: 2px solid rgba(255,255,255,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  backdrop-filter: blur(6px);
}

.branch-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  color: #ffffff;
}

.branch-card .badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.branch-card h2 {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
  line-height: 1.15;
}

.branch-card .area {
  color: rgba(255,255,255,0.78);
  font-size: 0.98rem;
  margin-bottom: 24px;
  flex: 1;
}

.branch-card .area strong { color: #ffd9a8; font-weight: 600; }

.branch-card .enter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #ffffff;
  border: 0;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--red);
  align-self: flex-start;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.branch-card:hover .enter {
  background: #ffffff;
  color: var(--red);
}

.branch-card .enter::after {
  content: '→';
  transition: transform 0.2s ease;
}

.branch-card:hover .enter::after { transform: translateX(4px); }

.landing-foot {
  text-align: center;
  margin: 40px auto 0;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  max-width: 760px;
}

.landing-foot a { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.3); }
.landing-foot a:hover { color: #ffd97a; }

/* MVP-scoped hide: remove class="mvp-hidden" from nav <li> elements to re-enable */
.mvp-hidden { display: none !important; }

/* Branch chooser link in main nav */
.choose-branch {
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.choose-branch a {
  padding: 8px 16px !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  line-height: 1;
}

.choose-branch a:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.32);
}

.choose-branch a::after { display: none !important; }

@media (max-width: 860px) {
  .choose-branch {
    display: block;
    margin: 8px 18px 14px;
  }
  .choose-branch a {
    display: inline-block;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-inner { justify-content: space-between; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 800px; }
  .main-nav ul { flex-direction: column; }
  .main-nav a::after { display: none; }
  .main-nav li ul {
    position: static;
    display: block;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    min-width: 0;
    border-radius: 0;
  }
  .main-nav li ul a { padding-left: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 90px 20px 110px; }
  section { padding: 64px 20px; }
  .join-card { padding: 30px 22px; }
}
