:root {
  --navy: #102b54;
  --navy-deep: #0d2140;
  --navy-mid: #15356a;
  --yellow: #ffcc00;
  --yellow-hover: #ffd633;
  --yellow-press: #e6b800;
  --black: #0a0a0a;
  --white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.82);
  --text-dark-muted: #5a6478;
  --surface: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --border-light: #e2e8f0;
  --radius: 6px;
  --radius-lg: 10px;
  --font: "Montserrat", system-ui, sans-serif;
  --max: 1200px;
  --google-blue: #4285f4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-mid);
  text-decoration: none;
}

a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 12px 16px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 33, 64, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.logo-mark img {
  height: 48px;
  width: auto;
}

.nav {
  display: none;
  gap: 24px;
}

.nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--yellow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--yellow-hover);
  color: var(--black);
  text-decoration: none;
}

.btn--primary:active {
  background: var(--yellow-press);
}

.btn--sm {
  padding: 10px 18px;
  font-size: 0.75rem;
  white-space: nowrap;
}

.btn--hero {
  padding: 16px 32px;
  font-size: 0.9rem;
}

.btn--full {
  width: 100%;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy-mid);
}

.btn--outline:hover {
  background: var(--navy-mid);
  color: var(--white);
  text-decoration: none;
}

.reviews-column-footer {
  padding: 0 24px 24px;
}

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 33, 64, 0.72) 0%, rgba(13, 33, 64, 0.88) 100%),
    url("hero-garage.png") center / cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.hero-sub {
  margin: 0 0 28px;
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.check-ic {
  color: var(--yellow);
  margin-right: 4px;
}

/* Hours */
.hours-section {
  background: var(--white);
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.hours-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.hours-inner p {
  margin: 4px 0;
  color: var(--text-dark-muted);
  font-size: 1.05rem;
}

/* Reviews section */
.reviews-section {
  padding: 48px 0 64px;
  background: #f4f6f9;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.reviews-column {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(16, 43, 84, 0.08);
  overflow: hidden;
}

.reviews-column--google {
  border-top: 4px solid var(--google-blue);
}

.reviews-column--site {
  border-top: 4px solid var(--yellow);
}

.column-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border-light);
}

.column-header-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
}

.badge--google {
  background: var(--google-blue);
  color: var(--white);
}

.badge--dmg {
  background: var(--yellow);
  color: var(--black);
}

.column-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

.column-sub {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}

.link-out {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--google-blue);
  text-decoration: none;
}

.link-out:hover {
  text-decoration: underline;
}

.reviews-list {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 720px;
  overflow-y: auto;
}

.review-card {
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fafbfc;
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  white-space: nowrap;
}

.stars {
  color: var(--yellow);
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1;
}

.stars--empty {
  color: #cbd5e1;
}

.review-text {
  margin: 0;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
}

.review-source {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--google-blue);
}

.review-source--site {
  color: var(--navy-mid);
}

.empty-state {
  padding: 32px 16px;
  text-align: center;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.empty-state a {
  color: var(--google-blue);
  font-weight: 600;
}

/* Form */
.review-form {
  padding: 20px 24px 24px;
  border-bottom: 1px solid var(--border-light);
}

.form-row {
  margin-bottom: 16px;
}

.form-row label,
.label-text {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(21, 53, 106, 0.12);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.star-input {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-input input {
  display: none;
}

.star-input label {
  font-size: 2rem;
  color: #cbd5e1;
  cursor: pointer;
  transition: color 0.1s;
  line-height: 1;
  margin: 0;
}

.star-input label:hover,
.star-input label:hover ~ label,
.star-input input:checked ~ label {
  color: var(--yellow);
}

.form-message {
  min-height: 1.4em;
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-message--success {
  color: #15803d;
}

.form-message--error {
  color: #b91c1c;
}

.site-reviews-heading {
  padding: 20px 24px 0;
}

.site-reviews-heading h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.loading::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-light);
  border-top-color: var(--navy-mid);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.footer-tagline {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact {
  margin: 0;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-contact a {
  color: var(--yellow);
}

.footer-contact a:hover {
  color: var(--yellow-hover);
}

.footer-copy {
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: 80px 0 88px;
  }
}

/* SEO content sections */
.seo-trust-bar {
  background: var(--navy-deep);
  color: var(--white);
  padding: 28px 0;
  text-align: center;
}

.seo-trust-bar p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.seo-trust-bar strong {
  color: var(--yellow);
}

.seo-content {
  padding: 56px 0;
  background: var(--white);
}

.seo-content--alt {
  background: #f4f6f9;
}

.seo-content h2 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}

.seo-content h3 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-mid);
}

.seo-content p,
.seo-content li {
  color: #334155;
  line-height: 1.7;
}

.seo-content ul {
  padding-left: 1.25rem;
}

.seo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.seo-stat {
  background: var(--navy-deep);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.seo-stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--yellow);
}

.seo-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.seo-keyword {
  padding: 8px 14px;
  background: #eef2ff;
  color: var(--navy-mid);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.seo-faq details {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 12px;
  background: var(--white);
}

.seo-faq summary {
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}

.seo-faq p {
  margin: 12px 0 0;
}

.seo-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.seo-page-hero {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 56px 0 48px;
  text-align: center;
}

.seo-page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
}

.seo-page-hero p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.footer-links {
  margin: 12px 0 0;
  font-size: 0.88rem;
}

.footer-links a {
  color: var(--yellow);
  margin-right: 16px;
}

.legal-page {
  padding: 48px 0 64px;
  max-width: 820px;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--navy);
}

.legal-page h2 {
  margin: 36px 0 12px;
  font-size: 1.25rem;
  color: var(--navy);
}

.legal-page h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
  color: var(--navy-mid);
}

.legal-page p,
.legal-page li {
  color: #334155;
  line-height: 1.75;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.35rem;
  margin: 12px 0;
}

.legal-page a {
  color: var(--navy-mid);
  font-weight: 600;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}

.legal-notice {
  padding: 16px 18px;
  background: #f4f6f9;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
}

.legal-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-dark-muted);
  font-style: italic;
}

.hidden {
  display: none !important;
}

/* Auth */
.auth-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}

.auth-header-signed-in {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auth-header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.header-profile-btn {
  padding: 0;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  line-height: 0;
  transition: border-color 0.15s, transform 0.15s;
}

.header-profile-btn:hover {
  border-color: var(--yellow-hover);
  transform: scale(1.05);
}

.header-profile-btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

#header-avatar-slot {
  display: block;
}

.review-as-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.review-as-avatar {
  display: flex;
  flex-shrink: 0;
}

.review-as-profile-link {
  font-size: 0.8rem;
  color: var(--navy-mid);
  padding: 0;
}

.review-as-profile-link:hover {
  color: var(--navy);
}

.auth-user {
  color: var(--white);
  font-weight: 600;
}

.auth-verify-pill {
  display: inline-block;
  padding: 4px 10px;
  border: none;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.auth-verify-pill:hover {
  background: var(--yellow-hover);
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
  cursor: pointer;
  text-decoration: none;
}

.link-btn:hover {
  color: var(--yellow-hover);
  text-decoration: underline;
}

.review-form {
  position: relative;
  min-height: 320px;
}

.review-form--locked .review-form-fields {
  pointer-events: none;
  user-select: none;
  opacity: 0.55;
}

.review-guest-lock {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  border: 2px dashed var(--navy-mid);
}

.review-guest-lock.hidden {
  display: none;
}

.review-guest-lock-title {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--navy);
}

.review-guest-lock-sub {
  margin: 0;
  max-width: 320px;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.review-guest-lock-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
}

.review-as {
  margin: 0 0 16px;
  padding: 10px 14px;
  background: #eef2ff;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-mid);
}

.auth-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.auth-modal::backdrop {
  background: rgba(13, 33, 64, 0.7);
}

.auth-modal-inner {
  padding: 28px 24px 24px;
}

.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
}

.auth-modal-inner {
  position: relative;
}

.auth-modal h2 {
  margin: 0 0 8px;
  color: var(--navy);
}

.auth-modal-sub {
  margin: 0 0 20px;
  color: var(--text-dark-muted);
  font-size: 0.92rem;
}

.label-required {
  color: #b91c1c;
}

.label-optional {
  font-weight: 500;
  color: var(--text-dark-muted);
  font-size: 0.85em;
}

.profile-photo-picker {
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-photo-preview-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-photo-placeholder {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy-mid);
}

.profile-photo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-photo-controls input[type="file"] {
  font-size: 0.85rem;
  max-width: 100%;
}

.profile-photo-picker--centered {
  flex-direction: column;
  align-items: center;
}

.profile-photo-preview-wrap--lg {
  width: 88px;
  height: 88px;
}

.profile-settings-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.profile-change-label {
  cursor: pointer;
}

.profile-details {
  margin: 0 0 16px;
  display: grid;
  gap: 12px;
}

.profile-details dt {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark-muted);
  margin: 0 0 2px;
}

.profile-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}

.profile-name-input {
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--border, #cbd5e1);
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  color: var(--navy);
  box-sizing: border-box;
}

.profile-modal-inner .btn + .btn {
  margin-top: 10px;
}

.profile-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 420px;
  width: calc(100% - 32px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.profile-modal::backdrop {
  background: rgba(16, 43, 84, 0.55);
}

.profile-modal-inner {
  padding: 28px 24px 24px;
  position: relative;
}

.profile-modal-inner h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  color: var(--navy);
}

.profile-modal-sub {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.review-avatar--lg,
.review-avatar--lg.review-avatar--initial {
  width: 88px;
  height: 88px;
  font-size: 2rem;
}

.review-avatar--sm,
.review-avatar--sm.review-avatar--initial {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
}

.review-avatar {
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e2e8f0;
}

.review-avatar--md {
  width: 40px;
  height: 40px;
}

.review-avatar--sm {
  width: 28px;
  height: 28px;
}

.review-avatar--sm.review-avatar--initial {
  font-size: 0.75rem;
}

.review-avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 800;
}

.auth-user-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-btn--accent {
  color: var(--yellow);
  font-weight: 700;
}

.site-header .link-btn--accent:hover {
  color: var(--yellow-hover);
}

.form-message--warning {
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.auth-toggle {
  margin: 16px 0 0;
  text-align: center;
}

.auth-forgot {
  margin: 10px 0 0;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.recaptcha-wrap {
  min-height: 78px;
}

.verify-notice {
  display: none;
}

/* Sticky verify banner (below header) */
.verify-banner {
  position: sticky;
  top: 0;
  z-index: 45;
  background: linear-gradient(90deg, #ffcc00 0%, #ffe066 100%);
  border-bottom: 2px solid #e6b800;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.verify-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.verify-banner-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.verify-banner-text strong {
  font-weight: 800;
}

.verify-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.verify-banner-resend {
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  border-color: var(--navy);
}

/* Verify email modal */
.verify-email-modal {
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 480px;
  width: calc(100% - 24px);
  box-shadow: 0 24px 80px rgba(16, 43, 84, 0.35);
}

.verify-email-modal::backdrop {
  background: rgba(16, 43, 84, 0.65);
}

.verify-email-modal-inner {
  padding: 32px 28px 24px;
  position: relative;
  text-align: center;
}

.verify-email-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #fff8e1;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.verify-email-modal-inner h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  color: var(--navy);
}

.verify-email-modal-lead {
  margin: 0 0 20px;
  font-size: 1rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.verify-email-hint {
  margin: 0 0 14px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-dark-muted);
  text-align: left;
}

.verify-email-steps {
  margin: 0 0 20px;
  padding: 0 0 0 1.25rem;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--navy);
}

.verify-email-steps li {
  margin-bottom: 10px;
}

.verify-email-steps li:last-child {
  margin-bottom: 0;
}

.verify-email-modal-inner .btn {
  margin-bottom: 10px;
}

.verify-email-dismiss {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
}

.verify-email-dismiss:hover {
  color: var(--navy);
}

/* Email confirmation landing page (from email link) */
.verify-landing-page {
  background: linear-gradient(160deg, #102b54 0%, #15356a 45%, #f4f6f9 45%);
}

.verify-landing-card {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: 0 24px 64px rgba(16, 43, 84, 0.2);
  text-align: center;
}

.verify-landing-logo {
  display: block;
  margin: 0 auto 24px;
}

.verify-landing-logo img {
  height: 56px;
  width: auto;
}

.verify-landing-step h1 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  color: var(--navy);
}

.verify-landing-lead {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-dark-muted);
}

.verify-landing-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: #fff8e1;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}

.verify-landing-icon--success {
  background: #ecfdf5;
  border-color: #22c55e;
  color: #15803d;
  font-weight: 800;
}

.verify-landing-icon--error {
  background: #fef2f2;
  border-color: #f87171;
  color: #b91c1c;
  font-weight: 800;
}

.verify-confirm-btn {
  font-size: 1.05rem;
  padding: 16px 24px;
}

.verify-landing-note {
  margin: 16px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #94a3b8;
}

.verify-inline-status {
  margin: 12px 0 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.verify-landing-email {
  margin: 0 0 16px;
  font-weight: 700;
  color: var(--navy-mid);
}

.verify-landing-foot {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--text-dark-muted);
}

.verify-landing-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  border: 4px solid #e2e8f0;
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: verify-spin 0.8s linear infinite;
}

@keyframes verify-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Admin */
.admin-badge {
  padding: 6px 12px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: var(--radius);
  text-transform: uppercase;
}

.admin-main {
  padding: 40px 0 64px;
}

.admin-panel h1 {
  margin: 0 0 8px;
  color: var(--navy);
}

.admin-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.admin-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.admin-review-card {
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fafbfc;
}

.admin-review-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.admin-review-stars {
  color: var(--yellow);
  margin: 0 0 8px;
}

.btn--danger {
  background: #b91c1c;
  color: var(--white);
  margin-top: 12px;
}

.btn--danger:hover {
  background: #991b1b;
  color: var(--white);
}

.admin-body {
  background: #f4f6f9;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 20px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--border-light);
}

.admin-tab {
  padding: 10px 18px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
}

.admin-tab:hover {
  color: var(--navy);
}

.admin-tab--active {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 -2px 0 var(--yellow) inset;
}

.admin-tab-panel {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.admin-section-header {
  margin-bottom: 20px;
}

.admin-section-header h2 {
  margin: 0 0 8px;
  color: var(--navy);
}

.admin-section-header p {
  margin: 0 0 12px;
  color: var(--text-dark-muted);
  font-size: 0.95rem;
}

.admin-subheading {
  margin: 32px 0 12px;
  font-size: 1rem;
  color: var(--navy);
}

.admin-users-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-user-card {
  padding: 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fafbfc;
}

.admin-review-meta {
  margin: 0 0 8px;
  font-size: 0.85rem;
  color: var(--text-dark-muted);
}

.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.admin-pill {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  background: #e2e8f0;
  color: #475569;
  vertical-align: middle;
}

.admin-pill--danger {
  background: #fee2e2;
  color: #b91c1c;
}

.admin-pill--warn {
  background: #fef3c7;
  color: #b45309;
}

.admin-pill--ok {
  background: #dcfce7;
  color: #15803d;
}

.admin-note {
  margin: 0 0 8px;
  font-size: 0.85rem;
  font-style: italic;
  color: #64748b;
}

.admin-note--error {
  color: #b91c1c;
  font-style: normal;
  word-break: break-word;
}

.admin-email-form textarea {
  width: 100%;
  min-height: 180px;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: ui-monospace, monospace;
  font-size: 0.9rem;
}

.form-hint {
  margin: 0 0 6px;
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

.admin-email-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.admin-email-logs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-email-log {
  padding: 12px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fafbfc;
}

.auth-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .auth-header {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 4px 0 2px;
  }

  .header-inner > .btn--sm {
    margin-left: auto;
  }
}

.review-as-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.review-as-inner .review-as-text {
  flex: 1;
  min-width: 140px;
}

.review-as-admin-link {
  font-weight: 700;
}

.review-as .btn--outline {
  background: transparent;
  color: var(--navy-mid);
  border: 1px solid var(--navy-mid);
  padding: 6px 14px;
  font-size: 0.8rem;
}

.review-as .btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* Email verify / password reset landing pages */
.auth-action-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: var(--bg-light, #f4f6f9);
}

.auth-action-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 12px 40px rgba(16, 43, 84, 0.12);
  text-align: center;
}

.auth-action-card img {
  margin: 0 auto 20px;
  height: 52px;
  width: auto;
}

.auth-action-card h1 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--navy);
}

.auth-action-message {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dark-muted, #475569);
}

.auth-action-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-action-form {
  text-align: left;
}

.auth-action-foot {
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.auth-action-foot a {
  color: var(--navy-mid);
  font-weight: 700;
}
